Chilkat Online Tools

SubmitJob unicodeCpp Example

AWS Batch

#include <CkRestW.h>
#include <CkAuthAwsW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>

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

    CkRestW rest;
    bool success;

    CkAuthAwsW authAws;
    authAws.put_AccessKey(L"AWS_ACCESS_KEY");
    authAws.put_SecretKey(L"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.)
    authAws.put_Region(L"us-west-2");
    authAws.put_ServiceName(L"batch");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.SetAuthAws(authAws);

    // URL: https://batch.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.Connect(L"batch.us-west-2.amazonaws.com",443,true,true);
    if (success != true) {
        wprintf(L"ConnectFailReason: %d\n",rest.get_ConnectFailReason());
        wprintf(L"%s\n",rest.lastErrorText());
        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

    CkJsonObjectW json;
    json.UpdateInt(L"arrayProperties.size",123);
    json.UpdateString(L"containerOverrides.command[0]",L"string");
    json.UpdateString(L"containerOverrides.environment[0].name",L"string");
    json.UpdateString(L"containerOverrides.environment[0].value",L"string");
    json.UpdateString(L"containerOverrides.instanceType",L"string");
    json.UpdateInt(L"containerOverrides.memory",123);
    json.UpdateString(L"containerOverrides.resourceRequirements[0].type",L"string");
    json.UpdateString(L"containerOverrides.resourceRequirements[0].value",L"string");
    json.UpdateInt(L"containerOverrides.vcpus",123);
    json.UpdateString(L"dependsOn[0].jobId",L"string");
    json.UpdateString(L"dependsOn[0].type",L"string");
    json.UpdateString(L"jobDefinition",L"string");
    json.UpdateString(L"jobName",L"string");
    json.UpdateString(L"jobQueue",L"string");
    json.UpdateString(L"nodeOverrides.nodePropertyOverrides[0].containerOverrides.command[0]",L"string");
    json.UpdateString(L"nodeOverrides.nodePropertyOverrides[0].containerOverrides.environment[0].name",L"string");
    json.UpdateString(L"nodeOverrides.nodePropertyOverrides[0].containerOverrides.environment[0].value",L"string");
    json.UpdateString(L"nodeOverrides.nodePropertyOverrides[0].containerOverrides.instanceType",L"string");
    json.UpdateInt(L"nodeOverrides.nodePropertyOverrides[0].containerOverrides.memory",123);
    json.UpdateString(L"nodeOverrides.nodePropertyOverrides[0].containerOverrides.resourceRequirements[0].type",L"string");
    json.UpdateString(L"nodeOverrides.nodePropertyOverrides[0].containerOverrides.resourceRequirements[0].value",L"string");
    json.UpdateInt(L"nodeOverrides.nodePropertyOverrides[0].containerOverrides.vcpus",123);
    json.UpdateString(L"nodeOverrides.nodePropertyOverrides[0].targetNodes",L"string");
    json.UpdateInt(L"nodeOverrides.numNodes",123);
    json.UpdateString(L"parameters.string",L"string");
    json.UpdateInt(L"propagateTags",123);
    json.UpdateInt(L"retryStrategy.attempts",123);
    json.UpdateString(L"retryStrategy.evaluateOnExit[0].action",L"string");
    json.UpdateString(L"retryStrategy.evaluateOnExit[0].onExitCode",L"string");
    json.UpdateString(L"retryStrategy.evaluateOnExit[0].onReason",L"string");
    json.UpdateString(L"retryStrategy.evaluateOnExit[0].onStatusReason",L"string");
    json.UpdateInt(L"schedulingPriorityOverride",123);
    json.UpdateString(L"shareIdentifier",L"string");
    json.UpdateString(L"tags.string",L"string");
    json.UpdateInt(L"timeout.attemptDurationSeconds",123);

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

    // {
    //   "arrayProperties": {
    //     "size": number
    //   },
    //   "containerOverrides": {
    //     "command": [
    //       "string"
    //     ],
    //     "environment": [
    //       {
    //         "name": "string",
    //         "value": "string"
    //       }
    //     ],
    //     "instanceType": "string",
    //     "memory": number,
    //     "resourceRequirements": [
    //       {
    //         "type": "string",
    //         "value": "string"
    //       }
    //     ],
    //     "vcpus": number
    //   },
    //   "dependsOn": [
    //     {
    //       "jobId": "string",
    //       "type": "string"
    //     }
    //   ],
    //   "jobDefinition": "string",
    //   "jobName": "string",
    //   "jobQueue": "string",
    //   "nodeOverrides": {
    //     "nodePropertyOverrides": [
    //       {
    //         "containerOverrides": {
    //           "command": [
    //             "string"
    //           ],
    //           "environment": [
    //             {
    //               "name": "string",
    //               "value": "string"
    //             }
    //           ],
    //           "instanceType": "string",
    //           "memory": number,
    //           "resourceRequirements": [
    //             {
    //               "type": "string",
    //               "value": "string"
    //             }
    //           ],
    //           "vcpus": number
    //         },
    //         "targetNodes": "string"
    //       }
    //     ],
    //     "numNodes": number
    //   },
    //   "parameters": {
    //     "string": "string"
    //   },
    //   "propagateTags": boolean,
    //   "retryStrategy": {
    //     "attempts": number,
    //     "evaluateOnExit": [
    //       {
    //         "action": "string",
    //         "onExitCode": "string",
    //         "onReason": "string",
    //         "onStatusReason": "string"
    //       }
    //     ]
    //   },
    //   "schedulingPriorityOverride": number,
    //   "shareIdentifier": "string",
    //   "tags": {
    //     "string": "string"
    //   },
    //   "timeout": {
    //     "attemptDurationSeconds": number
    //   }
    // }

    rest.AddHeader(L"Content-Type",L"application/x-amz-json-1.1");
    rest.AddHeader(L"X-Amz-Target",L"SubmitJob");

    CkStringBuilderW sbRequestBody;
    json.EmitSb(sbRequestBody);
    CkStringBuilderW sbResponseBody;
    success = rest.FullRequestSb(L"POST",L"/v1/submitjob",sbRequestBody,sbResponseBody);
    if (success != true) {
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

    int respStatusCode = rest.get_ResponseStatusCode();
    wprintf(L"response status code = %d\n",respStatusCode);
    if (respStatusCode != 200) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",rest.responseHeader());
        wprintf(L"Response Body:\n");
        wprintf(L"%s\n",sbResponseBody.getAsString());
        return;
    }

    CkJsonObjectW jResp;
    jResp.LoadSb(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.

    const wchar_t *jobArn = jResp.stringOf(L"jobArn");
    const wchar_t *jobId = jResp.stringOf(L"jobId");
    const wchar_t *jobName = jResp.stringOf(L"jobName");

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

    // {
    //   "jobArn": "string",
    //   "jobId": "string",
    //   "jobName": "string"
    // }
    }