Chilkat Online Tools

BatchGetBuildBatches C Example

AWS CodeBuild

#include <C_CkRest.h>
#include <C_CkAuthAws.h>
#include <C_CkJsonObject.h>
#include <C_CkStringBuilder.h>

void ChilkatSample(void)
    {
    HCkRest rest;
    BOOL success;
    HCkAuthAws authAws;
    HCkJsonObject json;
    HCkStringBuilder sbRequestBody;
    HCkStringBuilder sbResponseBody;
    int respStatusCode;
    HCkJsonObject jResp;
    const char *arn;
    const char *ArtifactIdentifier;
    const char *BucketOwnerAccess;
    int EncryptionDisabled;
    const char *Location;
    const char *Md5sum;
    int OverrideArtifactName;
    const char *Sha256sum;
    const char *BatchReportMode;
    int CombineArtifacts;
    int MaximumBuildsAllowed;
    const char *ServiceRole;
    int TimeoutInMins;
    int buildBatchNumber;
    const char *buildBatchStatus;
    int buildTimeoutInMinutes;
    const char *cacheLocation;
    const char *v_Type;
    int complete;
    const char *currentPhase;
    int debugSessionEnabled;
    const char *encryptionKey;
    int endTime;
    const char *Certificate;
    const char *ComputeType;
    const char *Image;
    const char *ImagePullCredentialsType;
    int PrivilegedMode;
    const char *Credential;
    const char *CredentialProvider;
    const char *environmentType;
    const char *id;
    const char *initiator;
    const char *GroupName;
    const char *Status;
    const char *StreamName;
    const char *S3LogsBucketOwnerAccess;
    int S3LogsEncryptionDisabled;
    const char *S3LogsLocation;
    const char *S3LogsStatus;
    const char *projectName;
    int queuedTimeoutInMinutes;
    const char *resolvedSourceVersion;
    const char *serviceRole;
    const char *Resource;
    const char *AuthType;
    const char *Buildspec;
    const char *Context;
    const char *TargetUrl;
    int GitCloneDepth;
    int FetchSubmodules;
    int InsecureSsl;
    const char *sourceLocation;
    int ReportBuildStatus;
    const char *SourceIdentifier;
    const char *sourceType;
    const char *sourceVersion;
    int startTime;
    const char *VpcId;
    int j;
    int count_j;
    const char *strVal;
    const char *Arn;
    const char *BuildStatus;
    const char *Identifier;
    const char *PrimaryArtifactLocation;
    const char *PrimaryArtifactType;
    int RequestedOn;
    const char *identifier;
    int ignoreFailure;
    int k;
    int count_k;
    const char *location;
    const char *v_type;
    const char *buildStatus;
    const char *primaryArtifactIdentifier;
    const char *primaryArtifactLocation;
    const char *primaryArtifactType;
    int requestedOn;
    HCkJsonObject json1;
    int i1;
    int count_i1;
    const char *name;
    const char *value;
    const char *mountOptions;
    const char *mountPoint;
    int durationInSeconds;
    const char *phaseStatus;
    const char *phaseType;
    const char *message;
    const char *statusCode;
    const char *artifactIdentifier;
    const char *bucketOwnerAccess;
    int encryptionDisabled;
    const char *md5sum;
    int overrideArtifactName;
    const char *sha256sum;
    const char *authResource;
    const char *authType;
    const char *buildspec;
    const char *buildStatusConfigContext;
    const char *buildStatusConfigTargetUrl;
    int gitCloneDepth;
    int gitSubmodulesConfigFetchSubmodules;
    int insecureSsl;
    int reportBuildStatus;
    const char *sourceIdentifier;
    int i;
    int count_i;

    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    rest = CkRest_Create();

    authAws = CkAuthAws_Create();
    CkAuthAws_putAccessKey(authAws,"AWS_ACCESS_KEY");
    CkAuthAws_putSecretKey(authAws,"AWS_SECRET_KEY");

    // Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
    CkAuthAws_putRegion(authAws,"us-west-2");
    CkAuthAws_putServiceName(authAws,"codebuild");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    CkRest_SetAuthAws(rest,authAws);

    // URL: https://codebuild.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = CkRest_Connect(rest,"codebuild.us-west-2.amazonaws.com",443,TRUE,TRUE);
    if (success != TRUE) {
        printf("ConnectFailReason: %d\n",CkRest_getConnectFailReason(rest));
        printf("%s\n",CkRest_lastErrorText(rest));
        CkRest_Dispose(rest);
        CkAuthAws_Dispose(authAws);
        return;
    }

    // The following code creates the JSON request body.
    // The JSON created by this code is shown below.

    // Use this online tool to generate code from sample JSON:
    // Generate Code to Create JSON

    json = CkJsonObject_Create();
    CkJsonObject_UpdateString(json,"ids[0]","string");

    // The JSON request body created by the above code:

    // {
    //   "ids": [
    //     "string"
    //   ]
    // }

    CkRest_AddHeader(rest,"Content-Type","application/x-amz-json-1.1");
    CkRest_AddHeader(rest,"X-Amz-Target","CodeBuild_20161006.BatchGetBuildBatches");

    sbRequestBody = CkStringBuilder_Create();
    CkJsonObject_EmitSb(json,sbRequestBody);
    sbResponseBody = CkStringBuilder_Create();
    success = CkRest_FullRequestSb(rest,"POST","/",sbRequestBody,sbResponseBody);
    if (success != TRUE) {
        printf("%s\n",CkRest_lastErrorText(rest));
        CkRest_Dispose(rest);
        CkAuthAws_Dispose(authAws);
        CkJsonObject_Dispose(json);
        CkStringBuilder_Dispose(sbRequestBody);
        CkStringBuilder_Dispose(sbResponseBody);
        return;
    }

    respStatusCode = CkRest_getResponseStatusCode(rest);
    printf("response status code = %d\n",respStatusCode);
    if (respStatusCode != 200) {
        printf("Response Header:\n");
        printf("%s\n",CkRest_responseHeader(rest));
        printf("Response Body:\n");
        printf("%s\n",CkStringBuilder_getAsString(sbResponseBody));
        CkRest_Dispose(rest);
        CkAuthAws_Dispose(authAws);
        CkJsonObject_Dispose(json);
        CkStringBuilder_Dispose(sbRequestBody);
        CkStringBuilder_Dispose(sbResponseBody);
        return;
    }

    jResp = CkJsonObject_Create();
    CkJsonObject_LoadSb(jResp,sbResponseBody);

    // The following code parses the JSON response.
    // A sample JSON response is shown below the sample code.

    // Use this online tool to generate parsing code from sample JSON:
    // Generate Parsing Code from JSON

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
    // See this example explaining how this memory should be used: const char * functions.

    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"buildBatches");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        arn = CkJsonObject_stringOf(jResp,"buildBatches[i].arn");
        ArtifactIdentifier = CkJsonObject_stringOf(jResp,"buildBatches[i].artifacts.artifactIdentifier");
        BucketOwnerAccess = CkJsonObject_stringOf(jResp,"buildBatches[i].artifacts.bucketOwnerAccess");
        EncryptionDisabled = CkJsonObject_IntOf(jResp,"buildBatches[i].artifacts.encryptionDisabled");
        Location = CkJsonObject_stringOf(jResp,"buildBatches[i].artifacts.location");
        Md5sum = CkJsonObject_stringOf(jResp,"buildBatches[i].artifacts.md5sum");
        OverrideArtifactName = CkJsonObject_IntOf(jResp,"buildBatches[i].artifacts.overrideArtifactName");
        Sha256sum = CkJsonObject_stringOf(jResp,"buildBatches[i].artifacts.sha256sum");
        BatchReportMode = CkJsonObject_stringOf(jResp,"buildBatches[i].buildBatchConfig.batchReportMode");
        CombineArtifacts = CkJsonObject_IntOf(jResp,"buildBatches[i].buildBatchConfig.combineArtifacts");
        MaximumBuildsAllowed = CkJsonObject_IntOf(jResp,"buildBatches[i].buildBatchConfig.restrictions.maximumBuildsAllowed");
        ServiceRole = CkJsonObject_stringOf(jResp,"buildBatches[i].buildBatchConfig.serviceRole");
        TimeoutInMins = CkJsonObject_IntOf(jResp,"buildBatches[i].buildBatchConfig.timeoutInMins");
        buildBatchNumber = CkJsonObject_IntOf(jResp,"buildBatches[i].buildBatchNumber");
        buildBatchStatus = CkJsonObject_stringOf(jResp,"buildBatches[i].buildBatchStatus");
        buildTimeoutInMinutes = CkJsonObject_IntOf(jResp,"buildBatches[i].buildTimeoutInMinutes");
        cacheLocation = CkJsonObject_stringOf(jResp,"buildBatches[i].cache.location");
        v_Type = CkJsonObject_stringOf(jResp,"buildBatches[i].cache.type");
        complete = CkJsonObject_IntOf(jResp,"buildBatches[i].complete");
        currentPhase = CkJsonObject_stringOf(jResp,"buildBatches[i].currentPhase");
        debugSessionEnabled = CkJsonObject_IntOf(jResp,"buildBatches[i].debugSessionEnabled");
        encryptionKey = CkJsonObject_stringOf(jResp,"buildBatches[i].encryptionKey");
        endTime = CkJsonObject_IntOf(jResp,"buildBatches[i].endTime");
        Certificate = CkJsonObject_stringOf(jResp,"buildBatches[i].environment.certificate");
        ComputeType = CkJsonObject_stringOf(jResp,"buildBatches[i].environment.computeType");
        Image = CkJsonObject_stringOf(jResp,"buildBatches[i].environment.image");
        ImagePullCredentialsType = CkJsonObject_stringOf(jResp,"buildBatches[i].environment.imagePullCredentialsType");
        PrivilegedMode = CkJsonObject_IntOf(jResp,"buildBatches[i].environment.privilegedMode");
        Credential = CkJsonObject_stringOf(jResp,"buildBatches[i].environment.registryCredential.credential");
        CredentialProvider = CkJsonObject_stringOf(jResp,"buildBatches[i].environment.registryCredential.credentialProvider");
        environmentType = CkJsonObject_stringOf(jResp,"buildBatches[i].environment.type");
        id = CkJsonObject_stringOf(jResp,"buildBatches[i].id");
        initiator = CkJsonObject_stringOf(jResp,"buildBatches[i].initiator");
        GroupName = CkJsonObject_stringOf(jResp,"buildBatches[i].logConfig.cloudWatchLogs.groupName");
        Status = CkJsonObject_stringOf(jResp,"buildBatches[i].logConfig.cloudWatchLogs.status");
        StreamName = CkJsonObject_stringOf(jResp,"buildBatches[i].logConfig.cloudWatchLogs.streamName");
        S3LogsBucketOwnerAccess = CkJsonObject_stringOf(jResp,"buildBatches[i].logConfig.s3Logs.bucketOwnerAccess");
        S3LogsEncryptionDisabled = CkJsonObject_IntOf(jResp,"buildBatches[i].logConfig.s3Logs.encryptionDisabled");
        S3LogsLocation = CkJsonObject_stringOf(jResp,"buildBatches[i].logConfig.s3Logs.location");
        S3LogsStatus = CkJsonObject_stringOf(jResp,"buildBatches[i].logConfig.s3Logs.status");
        projectName = CkJsonObject_stringOf(jResp,"buildBatches[i].projectName");
        queuedTimeoutInMinutes = CkJsonObject_IntOf(jResp,"buildBatches[i].queuedTimeoutInMinutes");
        resolvedSourceVersion = CkJsonObject_stringOf(jResp,"buildBatches[i].resolvedSourceVersion");
        serviceRole = CkJsonObject_stringOf(jResp,"buildBatches[i].serviceRole");
        Resource = CkJsonObject_stringOf(jResp,"buildBatches[i].source.auth.resource");
        AuthType = CkJsonObject_stringOf(jResp,"buildBatches[i].source.auth.type");
        Buildspec = CkJsonObject_stringOf(jResp,"buildBatches[i].source.buildspec");
        Context = CkJsonObject_stringOf(jResp,"buildBatches[i].source.buildStatusConfig.context");
        TargetUrl = CkJsonObject_stringOf(jResp,"buildBatches[i].source.buildStatusConfig.targetUrl");
        GitCloneDepth = CkJsonObject_IntOf(jResp,"buildBatches[i].source.gitCloneDepth");
        FetchSubmodules = CkJsonObject_IntOf(jResp,"buildBatches[i].source.gitSubmodulesConfig.fetchSubmodules");
        InsecureSsl = CkJsonObject_IntOf(jResp,"buildBatches[i].source.insecureSsl");
        sourceLocation = CkJsonObject_stringOf(jResp,"buildBatches[i].source.location");
        ReportBuildStatus = CkJsonObject_IntOf(jResp,"buildBatches[i].source.reportBuildStatus");
        SourceIdentifier = CkJsonObject_stringOf(jResp,"buildBatches[i].source.sourceIdentifier");
        sourceType = CkJsonObject_stringOf(jResp,"buildBatches[i].source.type");
        sourceVersion = CkJsonObject_stringOf(jResp,"buildBatches[i].sourceVersion");
        startTime = CkJsonObject_IntOf(jResp,"buildBatches[i].startTime");
        VpcId = CkJsonObject_stringOf(jResp,"buildBatches[i].vpcConfig.vpcId");
        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].buildBatchConfig.restrictions.computeTypesAllowed");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"buildBatches[i].buildBatchConfig.restrictions.computeTypesAllowed[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].buildGroups");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Arn = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].currentBuildSummary.arn");
            BuildStatus = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].currentBuildSummary.buildStatus");
            Identifier = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].currentBuildSummary.primaryArtifact.identifier");
            PrimaryArtifactLocation = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].currentBuildSummary.primaryArtifact.location");
            PrimaryArtifactType = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].currentBuildSummary.primaryArtifact.type");
            RequestedOn = CkJsonObject_IntOf(jResp,"buildBatches[i].buildGroups[j].currentBuildSummary.requestedOn");
            identifier = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].identifier");
            ignoreFailure = CkJsonObject_IntOf(jResp,"buildBatches[i].buildGroups[j].ignoreFailure");
            k = 0;
            count_k = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].buildGroups[j].currentBuildSummary.secondaryArtifacts");
            while (k < count_k) {
                CkJsonObject_putK(jResp,k);
                identifier = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].currentBuildSummary.secondaryArtifacts[k].identifier");
                location = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].currentBuildSummary.secondaryArtifacts[k].location");
                v_type = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].currentBuildSummary.secondaryArtifacts[k].type");
                k = k + 1;
            }

            k = 0;
            count_k = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].buildGroups[j].dependsOn");
            while (k < count_k) {
                CkJsonObject_putK(jResp,k);
                strVal = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].dependsOn[k]");
                k = k + 1;
            }

            k = 0;
            count_k = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].buildGroups[j].priorBuildSummaryList");
            while (k < count_k) {
                CkJsonObject_putK(jResp,k);
                arn = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].priorBuildSummaryList[k].arn");
                buildStatus = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].priorBuildSummaryList[k].buildStatus");
                primaryArtifactIdentifier = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].priorBuildSummaryList[k].primaryArtifact.identifier");
                primaryArtifactLocation = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].priorBuildSummaryList[k].primaryArtifact.location");
                primaryArtifactType = CkJsonObject_stringOf(jResp,"buildBatches[i].buildGroups[j].priorBuildSummaryList[k].primaryArtifact.type");
                requestedOn = CkJsonObject_IntOf(jResp,"buildBatches[i].buildGroups[j].priorBuildSummaryList[k].requestedOn");

                json1 = CkJsonObject_ObjectOf(jResp,"buildBatches[i].buildGroups[j].priorBuildSummaryList[k]");
                i1 = 0;
                count_i1 = CkJsonObject_SizeOfArray(json1,"secondaryArtifacts");
                while (i1 < count_i1) {
                    CkJsonObject_putI(json1,i1);
                    identifier = CkJsonObject_stringOf(json1,"secondaryArtifacts[i].identifier");
                    location = CkJsonObject_stringOf(json1,"secondaryArtifacts[i].location");
                    v_type = CkJsonObject_stringOf(json1,"secondaryArtifacts[i].type");
                    i1 = i1 + 1;
                }

                CkJsonObject_Dispose(json1);
                k = k + 1;
            }

            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].cache.modes");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"buildBatches[i].cache.modes[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].environment.environmentVariables");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            name = CkJsonObject_stringOf(jResp,"buildBatches[i].environment.environmentVariables[j].name");
            v_type = CkJsonObject_stringOf(jResp,"buildBatches[i].environment.environmentVariables[j].type");
            value = CkJsonObject_stringOf(jResp,"buildBatches[i].environment.environmentVariables[j].value");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].fileSystemLocations");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            identifier = CkJsonObject_stringOf(jResp,"buildBatches[i].fileSystemLocations[j].identifier");
            location = CkJsonObject_stringOf(jResp,"buildBatches[i].fileSystemLocations[j].location");
            mountOptions = CkJsonObject_stringOf(jResp,"buildBatches[i].fileSystemLocations[j].mountOptions");
            mountPoint = CkJsonObject_stringOf(jResp,"buildBatches[i].fileSystemLocations[j].mountPoint");
            v_type = CkJsonObject_stringOf(jResp,"buildBatches[i].fileSystemLocations[j].type");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].phases");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            durationInSeconds = CkJsonObject_IntOf(jResp,"buildBatches[i].phases[j].durationInSeconds");
            endTime = CkJsonObject_IntOf(jResp,"buildBatches[i].phases[j].endTime");
            phaseStatus = CkJsonObject_stringOf(jResp,"buildBatches[i].phases[j].phaseStatus");
            phaseType = CkJsonObject_stringOf(jResp,"buildBatches[i].phases[j].phaseType");
            startTime = CkJsonObject_IntOf(jResp,"buildBatches[i].phases[j].startTime");
            k = 0;
            count_k = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].phases[j].contexts");
            while (k < count_k) {
                CkJsonObject_putK(jResp,k);
                message = CkJsonObject_stringOf(jResp,"buildBatches[i].phases[j].contexts[k].message");
                statusCode = CkJsonObject_stringOf(jResp,"buildBatches[i].phases[j].contexts[k].statusCode");
                k = k + 1;
            }

            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].secondaryArtifacts");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            artifactIdentifier = CkJsonObject_stringOf(jResp,"buildBatches[i].secondaryArtifacts[j].artifactIdentifier");
            bucketOwnerAccess = CkJsonObject_stringOf(jResp,"buildBatches[i].secondaryArtifacts[j].bucketOwnerAccess");
            encryptionDisabled = CkJsonObject_IntOf(jResp,"buildBatches[i].secondaryArtifacts[j].encryptionDisabled");
            location = CkJsonObject_stringOf(jResp,"buildBatches[i].secondaryArtifacts[j].location");
            md5sum = CkJsonObject_stringOf(jResp,"buildBatches[i].secondaryArtifacts[j].md5sum");
            overrideArtifactName = CkJsonObject_IntOf(jResp,"buildBatches[i].secondaryArtifacts[j].overrideArtifactName");
            sha256sum = CkJsonObject_stringOf(jResp,"buildBatches[i].secondaryArtifacts[j].sha256sum");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].secondarySources");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            authResource = CkJsonObject_stringOf(jResp,"buildBatches[i].secondarySources[j].auth.resource");
            authType = CkJsonObject_stringOf(jResp,"buildBatches[i].secondarySources[j].auth.type");
            buildspec = CkJsonObject_stringOf(jResp,"buildBatches[i].secondarySources[j].buildspec");
            buildStatusConfigContext = CkJsonObject_stringOf(jResp,"buildBatches[i].secondarySources[j].buildStatusConfig.context");
            buildStatusConfigTargetUrl = CkJsonObject_stringOf(jResp,"buildBatches[i].secondarySources[j].buildStatusConfig.targetUrl");
            gitCloneDepth = CkJsonObject_IntOf(jResp,"buildBatches[i].secondarySources[j].gitCloneDepth");
            gitSubmodulesConfigFetchSubmodules = CkJsonObject_IntOf(jResp,"buildBatches[i].secondarySources[j].gitSubmodulesConfig.fetchSubmodules");
            insecureSsl = CkJsonObject_IntOf(jResp,"buildBatches[i].secondarySources[j].insecureSsl");
            location = CkJsonObject_stringOf(jResp,"buildBatches[i].secondarySources[j].location");
            reportBuildStatus = CkJsonObject_IntOf(jResp,"buildBatches[i].secondarySources[j].reportBuildStatus");
            sourceIdentifier = CkJsonObject_stringOf(jResp,"buildBatches[i].secondarySources[j].sourceIdentifier");
            v_type = CkJsonObject_stringOf(jResp,"buildBatches[i].secondarySources[j].type");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].secondarySourceVersions");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            sourceIdentifier = CkJsonObject_stringOf(jResp,"buildBatches[i].secondarySourceVersions[j].sourceIdentifier");
            sourceVersion = CkJsonObject_stringOf(jResp,"buildBatches[i].secondarySourceVersions[j].sourceVersion");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].vpcConfig.securityGroupIds");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"buildBatches[i].vpcConfig.securityGroupIds[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"buildBatches[i].vpcConfig.subnets");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"buildBatches[i].vpcConfig.subnets[j]");
            j = j + 1;
        }

        i = i + 1;
    }

    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"buildBatchesNotFound");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        strVal = CkJsonObject_stringOf(jResp,"buildBatchesNotFound[i]");
        i = i + 1;
    }

    // A sample JSON response body parsed by the above code:

    // {
    //   "buildBatches": [
    //     {
    //       "arn": "string",
    //       "artifacts": {
    //         "artifactIdentifier": "string",
    //         "bucketOwnerAccess": "string",
    //         "encryptionDisabled": boolean,
    //         "location": "string",
    //         "md5sum": "string",
    //         "overrideArtifactName": boolean,
    //         "sha256sum": "string"
    //       },
    //       "buildBatchConfig": {
    //         "batchReportMode": "string",
    //         "combineArtifacts": boolean,
    //         "restrictions": {
    //           "computeTypesAllowed": [
    //             "string"
    //           ],
    //           "maximumBuildsAllowed": number
    //         },
    //         "serviceRole": "string",
    //         "timeoutInMins": number
    //       },
    //       "buildBatchNumber": number,
    //       "buildBatchStatus": "string",
    //       "buildGroups": [
    //         {
    //           "currentBuildSummary": {
    //             "arn": "string",
    //             "buildStatus": "string",
    //             "primaryArtifact": {
    //               "identifier": "string",
    //               "location": "string",
    //               "type": "string"
    //             },
    //             "requestedOn": number,
    //             "secondaryArtifacts": [
    //               {
    //                 "identifier": "string",
    //                 "location": "string",
    //                 "type": "string"
    //               }
    //             ]
    //           },
    //           "dependsOn": [
    //             "string"
    //           ],
    //           "identifier": "string",
    //           "ignoreFailure": boolean,
    //           "priorBuildSummaryList": [
    //             {
    //               "arn": "string",
    //               "buildStatus": "string",
    //               "primaryArtifact": {
    //                 "identifier": "string",
    //                 "location": "string",
    //                 "type": "string"
    //               },
    //               "requestedOn": number,
    //               "secondaryArtifacts": [
    //                 {
    //                   "identifier": "string",
    //                   "location": "string",
    //                   "type": "string"
    //                 }
    //               ]
    //             }
    //           ]
    //         }
    //       ],
    //       "buildTimeoutInMinutes": number,
    //       "cache": {
    //         "location": "string",
    //         "modes": [
    //           "string"
    //         ],
    //         "type": "string"
    //       },
    //       "complete": boolean,
    //       "currentPhase": "string",
    //       "debugSessionEnabled": boolean,
    //       "encryptionKey": "string",
    //       "endTime": number,
    //       "environment": {
    //         "certificate": "string",
    //         "computeType": "string",
    //         "environmentVariables": [
    //           {
    //             "name": "string",
    //             "type": "string",
    //             "value": "string"
    //           }
    //         ],
    //         "image": "string",
    //         "imagePullCredentialsType": "string",
    //         "privilegedMode": boolean,
    //         "registryCredential": {
    //           "credential": "string",
    //           "credentialProvider": "string"
    //         },
    //         "type": "string"
    //       },
    //       "fileSystemLocations": [
    //         {
    //           "identifier": "string",
    //           "location": "string",
    //           "mountOptions": "string",
    //           "mountPoint": "string",
    //           "type": "string"
    //         }
    //       ],
    //       "id": "string",
    //       "initiator": "string",
    //       "logConfig": {
    //         "cloudWatchLogs": {
    //           "groupName": "string",
    //           "status": "string",
    //           "streamName": "string"
    //         },
    //         "s3Logs": {
    //           "bucketOwnerAccess": "string",
    //           "encryptionDisabled": boolean,
    //           "location": "string",
    //           "status": "string"
    //         }
    //       },
    //       "phases": [
    //         {
    //           "contexts": [
    //             {
    //               "message": "string",
    //               "statusCode": "string"
    //             }
    //           ],
    //           "durationInSeconds": number,
    //           "endTime": number,
    //           "phaseStatus": "string",
    //           "phaseType": "string",
    //           "startTime": number
    //         }
    //       ],
    //       "projectName": "string",
    //       "queuedTimeoutInMinutes": number,
    //       "resolvedSourceVersion": "string",
    //       "secondaryArtifacts": [
    //         {
    //           "artifactIdentifier": "string",
    //           "bucketOwnerAccess": "string",
    //           "encryptionDisabled": boolean,
    //           "location": "string",
    //           "md5sum": "string",
    //           "overrideArtifactName": boolean,
    //           "sha256sum": "string"
    //         }
    //       ],
    //       "secondarySources": [
    //         {
    //           "auth": {
    //             "resource": "string",
    //             "type": "string"
    //           },
    //           "buildspec": "string",
    //           "buildStatusConfig": {
    //             "context": "string",
    //             "targetUrl": "string"
    //           },
    //           "gitCloneDepth": number,
    //           "gitSubmodulesConfig": {
    //             "fetchSubmodules": boolean
    //           },
    //           "insecureSsl": boolean,
    //           "location": "string",
    //           "reportBuildStatus": boolean,
    //           "sourceIdentifier": "string",
    //           "type": "string"
    //         }
    //       ],
    //       "secondarySourceVersions": [
    //         {
    //           "sourceIdentifier": "string",
    //           "sourceVersion": "string"
    //         }
    //       ],
    //       "serviceRole": "string",
    //       "source": {
    //         "auth": {
    //           "resource": "string",
    //           "type": "string"
    //         },
    //         "buildspec": "string",
    //         "buildStatusConfig": {
    //           "context": "string",
    //           "targetUrl": "string"
    //         },
    //         "gitCloneDepth": number,
    //         "gitSubmodulesConfig": {
    //           "fetchSubmodules": boolean
    //         },
    //         "insecureSsl": boolean,
    //         "location": "string",
    //         "reportBuildStatus": boolean,
    //         "sourceIdentifier": "string",
    //         "type": "string"
    //       },
    //       "sourceVersion": "string",
    //       "startTime": number,
    //       "vpcConfig": {
    //         "securityGroupIds": [
    //           "string"
    //         ],
    //         "subnets": [
    //           "string"
    //         ],
    //         "vpcId": "string"
    //       }
    //     }
    //   ],
    //   "buildBatchesNotFound": [
    //     "string"
    //   ]
    // }


    CkRest_Dispose(rest);
    CkAuthAws_Dispose(authAws);
    CkJsonObject_Dispose(json);
    CkStringBuilder_Dispose(sbRequestBody);
    CkStringBuilder_Dispose(sbResponseBody);
    CkJsonObject_Dispose(jResp);

    }