Chilkat Online Tools

ListDataSources unicodeCpp Example

AWS AppSync

#include <CkRestW.h>
#include <CkAuthAwsW.h>
#include <CkStringBuilderW.h>
#include <CkJsonObjectW.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"appsync");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.SetAuthAws(authAws);

    // URL: https://appsync.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.Connect(L"appsync.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;
    }

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

    CkStringBuilderW sbResponseBody;
    success = rest.FullRequestNoBodySb(L"GET",L"/v1/apis/{apiId}/datasources",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 *dataSourceArn = 0;
    const wchar_t *description = 0;
    const wchar_t *AwsRegion = 0;
    int BaseTableTTL;
    const wchar_t *DeltaSyncTableName = 0;
    int DeltaSyncTableTTL;
    const wchar_t *TableName = 0;
    int UseCallerCredentials;
    int Versioned;
    const wchar_t *elasticsearchConfigAwsRegion = 0;
    const wchar_t *Endpoint = 0;
    const wchar_t *AuthorizationType = 0;
    const wchar_t *SigningRegion = 0;
    const wchar_t *SigningServiceName = 0;
    const wchar_t *httpConfigEndpoint = 0;
    const wchar_t *LambdaFunctionArn = 0;
    const wchar_t *name = 0;
    const wchar_t *openSearchServiceConfigAwsRegion = 0;
    const wchar_t *openSearchServiceConfigEndpoint = 0;
    const wchar_t *RdsHttpEndpointConfigAwsRegion = 0;
    const wchar_t *AwsSecretStoreArn = 0;
    const wchar_t *DatabaseName = 0;
    const wchar_t *DbClusterIdentifier = 0;
    const wchar_t *Schema = 0;
    const wchar_t *RelationalDatabaseSourceType = 0;
    const wchar_t *serviceRoleArn = 0;
    const wchar_t *v_type = 0;

    const wchar_t *nextToken = jResp.stringOf(L"nextToken");
    int i = 0;
    int count_i = jResp.SizeOfArray(L"dataSources");
    while (i < count_i) {
        jResp.put_I(i);
        dataSourceArn = jResp.stringOf(L"dataSources[i].dataSourceArn");
        description = jResp.stringOf(L"dataSources[i].description");
        AwsRegion = jResp.stringOf(L"dataSources[i].dynamodbConfig.awsRegion");
        BaseTableTTL = jResp.IntOf(L"dataSources[i].dynamodbConfig.deltaSyncConfig.baseTableTTL");
        DeltaSyncTableName = jResp.stringOf(L"dataSources[i].dynamodbConfig.deltaSyncConfig.deltaSyncTableName");
        DeltaSyncTableTTL = jResp.IntOf(L"dataSources[i].dynamodbConfig.deltaSyncConfig.deltaSyncTableTTL");
        TableName = jResp.stringOf(L"dataSources[i].dynamodbConfig.tableName");
        UseCallerCredentials = jResp.IntOf(L"dataSources[i].dynamodbConfig.useCallerCredentials");
        Versioned = jResp.IntOf(L"dataSources[i].dynamodbConfig.versioned");
        elasticsearchConfigAwsRegion = jResp.stringOf(L"dataSources[i].elasticsearchConfig.awsRegion");
        Endpoint = jResp.stringOf(L"dataSources[i].elasticsearchConfig.endpoint");
        AuthorizationType = jResp.stringOf(L"dataSources[i].httpConfig.authorizationConfig.authorizationType");
        SigningRegion = jResp.stringOf(L"dataSources[i].httpConfig.authorizationConfig.awsIamConfig.signingRegion");
        SigningServiceName = jResp.stringOf(L"dataSources[i].httpConfig.authorizationConfig.awsIamConfig.signingServiceName");
        httpConfigEndpoint = jResp.stringOf(L"dataSources[i].httpConfig.endpoint");
        LambdaFunctionArn = jResp.stringOf(L"dataSources[i].lambdaConfig.lambdaFunctionArn");
        name = jResp.stringOf(L"dataSources[i].name");
        openSearchServiceConfigAwsRegion = jResp.stringOf(L"dataSources[i].openSearchServiceConfig.awsRegion");
        openSearchServiceConfigEndpoint = jResp.stringOf(L"dataSources[i].openSearchServiceConfig.endpoint");
        RdsHttpEndpointConfigAwsRegion = jResp.stringOf(L"dataSources[i].relationalDatabaseConfig.rdsHttpEndpointConfig.awsRegion");
        AwsSecretStoreArn = jResp.stringOf(L"dataSources[i].relationalDatabaseConfig.rdsHttpEndpointConfig.awsSecretStoreArn");
        DatabaseName = jResp.stringOf(L"dataSources[i].relationalDatabaseConfig.rdsHttpEndpointConfig.databaseName");
        DbClusterIdentifier = jResp.stringOf(L"dataSources[i].relationalDatabaseConfig.rdsHttpEndpointConfig.dbClusterIdentifier");
        Schema = jResp.stringOf(L"dataSources[i].relationalDatabaseConfig.rdsHttpEndpointConfig.schema");
        RelationalDatabaseSourceType = jResp.stringOf(L"dataSources[i].relationalDatabaseConfig.relationalDatabaseSourceType");
        serviceRoleArn = jResp.stringOf(L"dataSources[i].serviceRoleArn");
        v_type = jResp.stringOf(L"dataSources[i].type");
        i = i + 1;
    }

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

    // {
    //   "dataSources": [
    //     {
    //       "dataSourceArn": "string",
    //       "description": "string",
    //       "dynamodbConfig": {
    //         "awsRegion": "string",
    //         "deltaSyncConfig": {
    //           "baseTableTTL": number,
    //           "deltaSyncTableName": "string",
    //           "deltaSyncTableTTL": number
    //         },
    //         "tableName": "string",
    //         "useCallerCredentials": boolean,
    //         "versioned": boolean
    //       },
    //       "elasticsearchConfig": {
    //         "awsRegion": "string",
    //         "endpoint": "string"
    //       },
    //       "httpConfig": {
    //         "authorizationConfig": {
    //           "authorizationType": "string",
    //           "awsIamConfig": {
    //             "signingRegion": "string",
    //             "signingServiceName": "string"
    //           }
    //         },
    //         "endpoint": "string"
    //       },
    //       "lambdaConfig": {
    //         "lambdaFunctionArn": "string"
    //       },
    //       "name": "string",
    //       "openSearchServiceConfig": {
    //         "awsRegion": "string",
    //         "endpoint": "string"
    //       },
    //       "relationalDatabaseConfig": {
    //         "rdsHttpEndpointConfig": {
    //           "awsRegion": "string",
    //           "awsSecretStoreArn": "string",
    //           "databaseName": "string",
    //           "dbClusterIdentifier": "string",
    //           "schema": "string"
    //         },
    //         "relationalDatabaseSourceType": "string"
    //       },
    //       "serviceRoleArn": "string",
    //       "type": "string"
    //     }
    //   ],
    //   "nextToken": "string"
    // }
    }