Sample code for 30+ languages & platforms
Unicode C++

Amazon Cognito - Create User Pool

See more Amazon Cognito Examples

Creates a new Amazon Cognito user pool and sets the password policy for the pool.

Chilkat Unicode C++ Downloads

Unicode C++
#include <CkRestW.h>
#include <CkAuthAwsW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>

void ChilkatSample(void)
    {
    bool success = false;

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

    CkRestW rest;

    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"cognito-idp");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.SetAuthAws(authAws);

    // URL: https://cognito-idp.us-west-2.amazonaws.com/
    bool bTls = true;
    int port = 443;
    bool bAutoReconnect = true;
    // Use the same region as specified above.
    success = rest.Connect(L"cognito-idp.us-west-2.amazonaws.com",port,bTls,bAutoReconnect);
    if (success != true) {
        wprintf(L"ConnectFailReason: %d\n",rest.get_ConnectFailReason());
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

    // Note: The above code does not need to be repeatedly called for each REST request.
    // The rest object can be setup once, and then many requests can be sent.  Chilkat will automatically
    // reconnect within a FullRequest* method as needed.  It is only the very first connection that is explicitly
    // made via the Connect method.

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

    // The following JSON is sent in the request body.
    // This example wil demonstrate creating a pool with many options specified.
    // The only required JSON member is "PoolName".

    // {
    //     "AccountRecoverySetting": {
    //       "RecoveryMechanisms": [
    //         {
    //           "Name": "verified_phone_number",
    //           "Priority": 1
    //         },
    //         {
    //           "Name": "verified_email",
    //           "Priority": 2
    //         }
    //       ]
    //     },
    //     "AdminCreateUserConfig": {
    //       "AllowAdminCreateUserOnly": false,
    //       "InviteMessageTemplate": {
    //         "EmailMessage": "Your username is {username} and temporary password is {####}. ",
    //         "EmailSubject": "Your temporary password",
    //         "SMSMessage": "Your username is {username} and temporary password is {####}. "
    //       },
    //       "TemporaryPasswordValidityDays": 7
    //     },
    //     "AutoVerifiedAttributes": [
    //       "email",
    //       "phone_number"
    //     ],
    //     "EmailConfiguration": {
    //       "EmailSendingAccount": "DEVELOPER",
    //       "From": "joe@example.com",
    //       "ReplyToEmailAddress": "joe@example.com",
    //       "SourceArn": "arn:aws:ses:us-west-2:954491834127:identity/joe@example.com"
    //     },
    //     "EmailVerificationMessage": "Your verification code is {####}. ",
    //     "EmailVerificationSubject": "Your verification code",
    //     "LambdaConfig": {},
    //     "MfaConfiguration": "OFF",
    //     "PoolName": "MyTestPool",
    //     "Policies": {
    //       "PasswordPolicy": {
    //         "MinimumLength": 8,
    //         "RequireLowercase": true,
    //         "RequireNumbers": true,
    //         "RequireSymbols": true,
    //         "RequireUppercase": true,
    //         "TemporaryPasswordValidityDays": 7
    //       }
    //     },
    //     "Schema": [
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": false,
    //         "Name": "sub",
    //         "Required": true,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "1"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "name",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "given_name",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "family_name",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "middle_name",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "nickname",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "preferred_username",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "profile",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "picture",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "website",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "email",
    //         "Required": true,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "Boolean",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "email_verified",
    //         "Required": false
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "gender",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "birthdate",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "10",
    //           "MinLength": "10"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "zoneinfo",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "locale",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "phone_number",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "String",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "address",
    //         "Required": false,
    //         "StringAttributeConstraints": {
    //           "MaxLength": "2048",
    //           "MinLength": "0"
    //         }
    //       },
    //       {
    //         "AttributeDataType": "Number",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "updated_at",
    //         "NumberAttributeConstraints": {
    //           "MinValue": "0"
    //         },
    //         "Required": false
    //       }
    //     ],
    //     "SmsAuthenticationMessage": "Your verification code is {####}. ",
    //     "SmsConfiguration": {
    //       "ExternalId": "94b17737-216b-4cf7-a29e-17e990e91300",
    //       "SnsCallerArn": "arn:aws:iam::954491834127:role/service-role/chilkat-SMS-Role"
    //     },
    //     "SmsVerificationMessage": "Your verification code is {####}. ",
    //     "UsernameConfiguration": {
    //       "CaseSensitive": false
    //     },
    //     "VerificationMessageTemplate": {
    //       "DefaultEmailOption": "CONFIRM_WITH_CODE",
    //       "EmailMessage": "Your verification code is {####}. ",
    //       "EmailSubject": "Your verification code",
    //       "SmsMessage": "Your verification code is {####}. "
    //     }
    //   }
    // 

    CkJsonObjectW json;
    json.UpdateString(L"AccountRecoverySetting.RecoveryMechanisms[0].Name",L"verified_phone_number");
    json.UpdateInt(L"AccountRecoverySetting.RecoveryMechanisms[0].Priority",1);
    json.UpdateString(L"AccountRecoverySetting.RecoveryMechanisms[1].Name",L"verified_email");
    json.UpdateInt(L"AccountRecoverySetting.RecoveryMechanisms[1].Priority",2);
    json.UpdateBool(L"AdminCreateUserConfig.AllowAdminCreateUserOnly",false);
    json.UpdateString(L"AdminCreateUserConfig.InviteMessageTemplate.EmailMessage",L"Your username is {username} and temporary password is {####}. ");
    json.UpdateString(L"AdminCreateUserConfig.InviteMessageTemplate.EmailSubject",L"Your temporary password");
    json.UpdateString(L"AdminCreateUserConfig.InviteMessageTemplate.SMSMessage",L"Your username is {username} and temporary password is {####}. ");
    json.UpdateInt(L"AdminCreateUserConfig.TemporaryPasswordValidityDays",7);
    json.UpdateString(L"AutoVerifiedAttributes[0]",L"email");
    json.UpdateString(L"AutoVerifiedAttributes[1]",L"phone_number");
    json.UpdateString(L"EmailConfiguration.EmailSendingAccount",L"DEVELOPER");
    json.UpdateString(L"EmailConfiguration.From",L"joe@example.com");
    json.UpdateString(L"EmailConfiguration.ReplyToEmailAddress",L"joe@example.com");
    json.UpdateString(L"EmailConfiguration.SourceArn",L"arn:aws:ses:us-west-2:954491834127:identity/joe@example.com");
    json.UpdateString(L"EmailVerificationMessage",L"Your verification code is {####}. ");
    json.UpdateString(L"EmailVerificationSubject",L"Your verification code");
    json.UpdateNewObject(L"LambdaConfig");
    json.UpdateString(L"MfaConfiguration",L"OFF");
    json.UpdateString(L"PoolName",L"MyTestPool");
    json.UpdateInt(L"Policies.PasswordPolicy.MinimumLength",8);
    json.UpdateBool(L"Policies.PasswordPolicy.RequireLowercase",true);
    json.UpdateBool(L"Policies.PasswordPolicy.RequireNumbers",true);
    json.UpdateBool(L"Policies.PasswordPolicy.RequireSymbols",true);
    json.UpdateBool(L"Policies.PasswordPolicy.RequireUppercase",true);
    json.UpdateInt(L"Policies.PasswordPolicy.TemporaryPasswordValidityDays",7);
    json.UpdateString(L"Schema[0].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[0].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[0].Mutable",false);
    json.UpdateString(L"Schema[0].Name",L"sub");
    json.UpdateBool(L"Schema[0].Required",true);
    json.UpdateString(L"Schema[0].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[0].StringAttributeConstraints.MinLength",L"1");
    json.UpdateString(L"Schema[1].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[1].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[1].Mutable",true);
    json.UpdateString(L"Schema[1].Name",L"name");
    json.UpdateBool(L"Schema[1].Required",false);
    json.UpdateString(L"Schema[1].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[1].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[2].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[2].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[2].Mutable",true);
    json.UpdateString(L"Schema[2].Name",L"given_name");
    json.UpdateBool(L"Schema[2].Required",false);
    json.UpdateString(L"Schema[2].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[2].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[3].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[3].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[3].Mutable",true);
    json.UpdateString(L"Schema[3].Name",L"family_name");
    json.UpdateBool(L"Schema[3].Required",false);
    json.UpdateString(L"Schema[3].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[3].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[4].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[4].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[4].Mutable",true);
    json.UpdateString(L"Schema[4].Name",L"middle_name");
    json.UpdateBool(L"Schema[4].Required",false);
    json.UpdateString(L"Schema[4].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[4].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[5].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[5].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[5].Mutable",true);
    json.UpdateString(L"Schema[5].Name",L"nickname");
    json.UpdateBool(L"Schema[5].Required",false);
    json.UpdateString(L"Schema[5].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[5].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[6].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[6].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[6].Mutable",true);
    json.UpdateString(L"Schema[6].Name",L"preferred_username");
    json.UpdateBool(L"Schema[6].Required",false);
    json.UpdateString(L"Schema[6].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[6].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[7].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[7].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[7].Mutable",true);
    json.UpdateString(L"Schema[7].Name",L"profile");
    json.UpdateBool(L"Schema[7].Required",false);
    json.UpdateString(L"Schema[7].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[7].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[8].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[8].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[8].Mutable",true);
    json.UpdateString(L"Schema[8].Name",L"picture");
    json.UpdateBool(L"Schema[8].Required",false);
    json.UpdateString(L"Schema[8].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[8].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[9].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[9].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[9].Mutable",true);
    json.UpdateString(L"Schema[9].Name",L"website");
    json.UpdateBool(L"Schema[9].Required",false);
    json.UpdateString(L"Schema[9].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[9].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[10].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[10].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[10].Mutable",true);
    json.UpdateString(L"Schema[10].Name",L"email");
    json.UpdateBool(L"Schema[10].Required",true);
    json.UpdateString(L"Schema[10].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[10].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[11].AttributeDataType",L"Boolean");
    json.UpdateBool(L"Schema[11].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[11].Mutable",true);
    json.UpdateString(L"Schema[11].Name",L"email_verified");
    json.UpdateBool(L"Schema[11].Required",false);
    json.UpdateString(L"Schema[12].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[12].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[12].Mutable",true);
    json.UpdateString(L"Schema[12].Name",L"gender");
    json.UpdateBool(L"Schema[12].Required",false);
    json.UpdateString(L"Schema[12].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[12].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[13].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[13].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[13].Mutable",true);
    json.UpdateString(L"Schema[13].Name",L"birthdate");
    json.UpdateBool(L"Schema[13].Required",false);
    json.UpdateString(L"Schema[13].StringAttributeConstraints.MaxLength",L"10");
    json.UpdateString(L"Schema[13].StringAttributeConstraints.MinLength",L"10");
    json.UpdateString(L"Schema[14].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[14].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[14].Mutable",true);
    json.UpdateString(L"Schema[14].Name",L"zoneinfo");
    json.UpdateBool(L"Schema[14].Required",false);
    json.UpdateString(L"Schema[14].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[14].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[15].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[15].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[15].Mutable",true);
    json.UpdateString(L"Schema[15].Name",L"locale");
    json.UpdateBool(L"Schema[15].Required",false);
    json.UpdateString(L"Schema[15].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[15].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[16].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[16].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[16].Mutable",true);
    json.UpdateString(L"Schema[16].Name",L"phone_number");
    json.UpdateBool(L"Schema[16].Required",false);
    json.UpdateString(L"Schema[16].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[16].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[17].AttributeDataType",L"String");
    json.UpdateBool(L"Schema[17].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[17].Mutable",true);
    json.UpdateString(L"Schema[17].Name",L"address");
    json.UpdateBool(L"Schema[17].Required",false);
    json.UpdateString(L"Schema[17].StringAttributeConstraints.MaxLength",L"2048");
    json.UpdateString(L"Schema[17].StringAttributeConstraints.MinLength",L"0");
    json.UpdateString(L"Schema[18].AttributeDataType",L"Number");
    json.UpdateBool(L"Schema[18].DeveloperOnlyAttribute",false);
    json.UpdateBool(L"Schema[18].Mutable",true);
    json.UpdateString(L"Schema[18].Name",L"updated_at");
    json.UpdateString(L"Schema[18].NumberAttributeConstraints.MinValue",L"0");
    json.UpdateBool(L"Schema[18].Required",false);
    json.UpdateString(L"SmsAuthenticationMessage",L"Your verification code is {####}. ");

    // Use your own value here:
    json.UpdateString(L"SmsConfiguration.ExternalId",L"94b17737-216b-4cf7-a29e-17e990e91300");
    json.UpdateString(L"SmsConfiguration.SnsCallerArn",L"arn:aws:iam::954491834127:role/service-role/chilkat-SMS-Role");

    json.UpdateString(L"SmsVerificationMessage",L"Your verification code is {####}. ");
    json.UpdateBool(L"UsernameConfiguration.CaseSensitive",false);
    json.UpdateString(L"VerificationMessageTemplate.DefaultEmailOption",L"CONFIRM_WITH_CODE");
    json.UpdateString(L"VerificationMessageTemplate.EmailMessage",L"Your verification code is {####}. ");
    json.UpdateString(L"VerificationMessageTemplate.EmailSubject",L"Your verification code");
    json.UpdateString(L"VerificationMessageTemplate.SmsMessage",L"Your verification code is {####}. ");

    rest.AddHeader(L"Content-Type",L"application/x-amz-json-1.0");
    rest.AddHeader(L"X-Amz-Target",L"AWSCognitoIdentityProviderService.CreateUserPool");
    rest.AddHeader(L"Accept-Encoding",L"identity");

    CkStringBuilderW sbRequestBody;
    json.EmitSb(sbRequestBody);
    CkStringBuilderW sbResponseBody;
    success = rest.FullRequestSb(L"POST",L"/",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 Status Code = %d\n",respStatusCode);
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",rest.responseHeader());
        wprintf(L"Response Body:\n");
        wprintf(L"%s\n",sbResponseBody.getAsString());
        return;
    }

    CkJsonObjectW jsonResponse;
    jsonResponse.LoadSb(sbResponseBody);

    jsonResponse.put_EmitCompact(false);
    wprintf(L"%s\n",jsonResponse.emit());

    // The response is similar to the response at Cognito Describe User Pool
    }