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

Amazon Cognito - Describe User Pool

See more Amazon Cognito Examples

Returns the configuration information and metadata of the specified user 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.

    CkJsonObjectW json;
    json.UpdateString(L"UserPoolId",L"us-west-2_yt6WzO3SA");

    rest.AddHeader(L"Content-Type",L"application/x-amz-json-1.0");
    rest.AddHeader(L"X-Amz-Target",L"AWSCognitoIdentityProviderService.DescribeUserPool");
    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());

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

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

    // {
    //   "UserPool": {
    //     "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 {####}. "
    //       },
    //       "UnusedAccountValidityDays": 7
    //     },
    //     "Arn": "arn:aws:cognito-idp:us-west-2:954491834127:userpool/us-west-2_yt6WzO3SA",
    //     "AutoVerifiedAttributes": [
    //       "email",
    //       "phone_number"
    //     ],
    //     "CreationDate": 1.636388909817E9,
    //     "EmailConfiguration": {
    //       "EmailSendingAccount": "DEVELOPER",
    //       "From": "admin@chilkatsoft.com",
    //       "ReplyToEmailAddress": "admin@chilkatsoft.com",
    //       "SourceArn": "arn:aws:ses:us-west-2:954491834127:identity/admin@chilkatsoft.com"
    //     },
    //     "EmailVerificationMessage": "Your verification code is {####}. ",
    //     "EmailVerificationSubject": "Your verification code",
    //     "EstimatedNumberOfUsers": 0,
    //     "Id": "us-west-2_yt6WzO3SA",
    //     "LambdaConfig": {},
    //     "LastModifiedDate": 1.636388910377E9,
    //     "MfaConfiguration": "ON",
    //     "Name": "chilkat",
    //     "Policies": {
    //       "PasswordPolicy": {
    //         "MinimumLength": 8,
    //         "RequireLowercase": true,
    //         "RequireNumbers": true,
    //         "RequireSymbols": true,
    //         "RequireUppercase": true,
    //         "TemporaryPasswordValidityDays": 7
    //       }
    //     },
    //     "SchemaAttributes": [
    //       {
    //         "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": "Boolean",
    //         "DeveloperOnlyAttribute": false,
    //         "Mutable": true,
    //         "Name": "phone_number_verified",
    //         "Required": false
    //       },
    //       {
    //         "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 {####}. ",
    //     "UserPoolTags": {
    //       "sampleUserPoolTag": "test"
    //     },
    //     "UsernameConfiguration": {
    //       "CaseSensitive": false
    //     },
    //     "VerificationMessageTemplate": {
    //       "DefaultEmailOption": "CONFIRM_WITH_CODE",
    //       "EmailMessage": "Your verification code is {####}. ",
    //       "EmailSubject": "Your verification code",
    //       "SmsMessage": "Your verification code is {####}. "
    //     }
    //   }
    // }

    // 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 *Name = 0;
    int Priority;
    const wchar_t *strVal = 0;
    const wchar_t *AttributeDataType = 0;
    bool DeveloperOnlyAttribute;
    bool Mutable;
    bool Required;
    const wchar_t *StringAttributeConstraintsMaxLength = 0;
    const wchar_t *StringAttributeConstraintsMinLength = 0;
    const wchar_t *NumberAttributeConstraintsMinValue = 0;

    bool UserPoolAdminCreateUserConfigAllowAdminCreateUserOnly = jsonResponse.BoolOf(L"UserPool.AdminCreateUserConfig.AllowAdminCreateUserOnly");
    const wchar_t *UserPoolAdminCreateUserConfigInviteMessageTemplateEmailMessage = jsonResponse.stringOf(L"UserPool.AdminCreateUserConfig.InviteMessageTemplate.EmailMessage");
    const wchar_t *UserPoolAdminCreateUserConfigInviteMessageTemplateEmailSubject = jsonResponse.stringOf(L"UserPool.AdminCreateUserConfig.InviteMessageTemplate.EmailSubject");
    const wchar_t *UserPoolAdminCreateUserConfigInviteMessageTemplateSMSMessage = jsonResponse.stringOf(L"UserPool.AdminCreateUserConfig.InviteMessageTemplate.SMSMessage");
    int UserPoolAdminCreateUserConfigUnusedAccountValidityDays = jsonResponse.IntOf(L"UserPool.AdminCreateUserConfig.UnusedAccountValidityDays");
    const wchar_t *UserPoolArn = jsonResponse.stringOf(L"UserPool.Arn");
    const wchar_t *UserPoolCreationDate = jsonResponse.stringOf(L"UserPool.CreationDate");
    const wchar_t *UserPoolEmailConfigurationEmailSendingAccount = jsonResponse.stringOf(L"UserPool.EmailConfiguration.EmailSendingAccount");
    const wchar_t *UserPoolEmailConfigurationFrom = jsonResponse.stringOf(L"UserPool.EmailConfiguration.From");
    const wchar_t *UserPoolEmailConfigurationReplyToEmailAddress = jsonResponse.stringOf(L"UserPool.EmailConfiguration.ReplyToEmailAddress");
    const wchar_t *UserPoolEmailConfigurationSourceArn = jsonResponse.stringOf(L"UserPool.EmailConfiguration.SourceArn");
    const wchar_t *UserPoolEmailVerificationMessage = jsonResponse.stringOf(L"UserPool.EmailVerificationMessage");
    const wchar_t *UserPoolEmailVerificationSubject = jsonResponse.stringOf(L"UserPool.EmailVerificationSubject");
    int UserPoolEstimatedNumberOfUsers = jsonResponse.IntOf(L"UserPool.EstimatedNumberOfUsers");
    const wchar_t *UserPoolId = jsonResponse.stringOf(L"UserPool.Id");
    const wchar_t *UserPoolLastModifiedDate = jsonResponse.stringOf(L"UserPool.LastModifiedDate");
    const wchar_t *UserPoolMfaConfiguration = jsonResponse.stringOf(L"UserPool.MfaConfiguration");
    const wchar_t *UserPoolName = jsonResponse.stringOf(L"UserPool.Name");
    int UserPoolPoliciesPasswordPolicyMinimumLength = jsonResponse.IntOf(L"UserPool.Policies.PasswordPolicy.MinimumLength");
    bool UserPoolPoliciesPasswordPolicyRequireLowercase = jsonResponse.BoolOf(L"UserPool.Policies.PasswordPolicy.RequireLowercase");
    bool UserPoolPoliciesPasswordPolicyRequireNumbers = jsonResponse.BoolOf(L"UserPool.Policies.PasswordPolicy.RequireNumbers");
    bool UserPoolPoliciesPasswordPolicyRequireSymbols = jsonResponse.BoolOf(L"UserPool.Policies.PasswordPolicy.RequireSymbols");
    bool UserPoolPoliciesPasswordPolicyRequireUppercase = jsonResponse.BoolOf(L"UserPool.Policies.PasswordPolicy.RequireUppercase");
    int UserPoolPoliciesPasswordPolicyTemporaryPasswordValidityDays = jsonResponse.IntOf(L"UserPool.Policies.PasswordPolicy.TemporaryPasswordValidityDays");
    const wchar_t *UserPoolSmsAuthenticationMessage = jsonResponse.stringOf(L"UserPool.SmsAuthenticationMessage");
    const wchar_t *UserPoolSmsConfigurationExternalId = jsonResponse.stringOf(L"UserPool.SmsConfiguration.ExternalId");
    const wchar_t *UserPoolSmsConfigurationSnsCallerArn = jsonResponse.stringOf(L"UserPool.SmsConfiguration.SnsCallerArn");
    const wchar_t *UserPoolSmsVerificationMessage = jsonResponse.stringOf(L"UserPool.SmsVerificationMessage");
    const wchar_t *UserPoolUserPoolTagsSampleUserPoolTag = jsonResponse.stringOf(L"UserPool.UserPoolTags.sampleUserPoolTag");
    bool UserPoolUsernameConfigurationCaseSensitive = jsonResponse.BoolOf(L"UserPool.UsernameConfiguration.CaseSensitive");
    const wchar_t *UserPoolVerificationMessageTemplateDefaultEmailOption = jsonResponse.stringOf(L"UserPool.VerificationMessageTemplate.DefaultEmailOption");
    const wchar_t *UserPoolVerificationMessageTemplateEmailMessage = jsonResponse.stringOf(L"UserPool.VerificationMessageTemplate.EmailMessage");
    const wchar_t *UserPoolVerificationMessageTemplateEmailSubject = jsonResponse.stringOf(L"UserPool.VerificationMessageTemplate.EmailSubject");
    const wchar_t *UserPoolVerificationMessageTemplateSmsMessage = jsonResponse.stringOf(L"UserPool.VerificationMessageTemplate.SmsMessage");

    int i = 0;
    int count_i = jsonResponse.SizeOfArray(L"UserPool.AccountRecoverySetting.RecoveryMechanisms");
    while (i < count_i) {
        jsonResponse.put_I(i);
        Name = jsonResponse.stringOf(L"UserPool.AccountRecoverySetting.RecoveryMechanisms[i].Name");
        Priority = jsonResponse.IntOf(L"UserPool.AccountRecoverySetting.RecoveryMechanisms[i].Priority");
        i = i + 1;
    }

    i = 0;
    count_i = jsonResponse.SizeOfArray(L"UserPool.AutoVerifiedAttributes");
    while (i < count_i) {
        jsonResponse.put_I(i);
        strVal = jsonResponse.stringOf(L"UserPool.AutoVerifiedAttributes[i]");
        i = i + 1;
    }

    i = 0;
    count_i = jsonResponse.SizeOfArray(L"UserPool.SchemaAttributes");
    while (i < count_i) {
        jsonResponse.put_I(i);
        AttributeDataType = jsonResponse.stringOf(L"UserPool.SchemaAttributes[i].AttributeDataType");
        DeveloperOnlyAttribute = jsonResponse.BoolOf(L"UserPool.SchemaAttributes[i].DeveloperOnlyAttribute");
        Mutable = jsonResponse.BoolOf(L"UserPool.SchemaAttributes[i].Mutable");
        Name = jsonResponse.stringOf(L"UserPool.SchemaAttributes[i].Name");
        Required = jsonResponse.BoolOf(L"UserPool.SchemaAttributes[i].Required");
        StringAttributeConstraintsMaxLength = jsonResponse.stringOf(L"UserPool.SchemaAttributes[i].StringAttributeConstraints.MaxLength");
        StringAttributeConstraintsMinLength = jsonResponse.stringOf(L"UserPool.SchemaAttributes[i].StringAttributeConstraints.MinLength");
        NumberAttributeConstraintsMinValue = jsonResponse.stringOf(L"UserPool.SchemaAttributes[i].NumberAttributeConstraints.MinValue");
        i = i + 1;
    }
    }