Sample code for 30+ languages & platforms
Rust

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 Rust Downloads

Rust

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

let rest = chilkat::Rest::new();

let auth_aws = chilkat::AuthAws::new();
auth_aws.set_access_key("AWS_ACCESS_KEY");
auth_aws.set_secret_key("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.)
auth_aws.set_region("us-west-2");
auth_aws.set_service_name("cognito-idp");
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
let _ = rest.set_auth_aws(&auth_aws);

// URL: https://cognito-idp.us-west-2.amazonaws.com/
let b_tls = true;
let port = 443;
let b_auto_reconnect = true;
// Use the same region as specified above.
if rest.connect("cognito-idp.us-west-2.amazonaws.com", port, b_tls, b_auto_reconnect).is_err() {
    println!("ConnectFailReason: {}", rest.connect_fail_reason());
    println!("{}", rest.last_error_text());
    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 {####}. "
//     }
//   }
// 

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

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

let _ = json.update_string("SmsVerificationMessage", "Your verification code is {####}. ");
let _ = json.update_bool("UsernameConfiguration.CaseSensitive", false);
let _ = json.update_string("VerificationMessageTemplate.DefaultEmailOption", "CONFIRM_WITH_CODE");
let _ = json.update_string("VerificationMessageTemplate.EmailMessage", "Your verification code is {####}. ");
let _ = json.update_string("VerificationMessageTemplate.EmailSubject", "Your verification code");
let _ = json.update_string("VerificationMessageTemplate.SmsMessage", "Your verification code is {####}. ");

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

let sb_request_body = chilkat::StringBuilder::new();
let _ = json.emit_sb(&sb_request_body);
let sb_response_body = chilkat::StringBuilder::new();
if rest.full_request_sb("POST", "/", &sb_request_body, &sb_response_body).is_err() {
    println!("{}", rest.last_error_text());
    return;
}

let resp_status_code = rest.response_status_code();
println!("response status code = {}", resp_status_code);
if resp_status_code != 200 {
    println!("Response Status Code = {}", resp_status_code);
    println!("Response Header:");
    println!("{}", rest.response_header());
    println!("Response Body:");
    println!("{}", sb_response_body.get_as_string().unwrap_or_default());
    return;
}

let json_response = chilkat::JsonObject::new();
let _ = json_response.load_sb(&sb_response_body);

json_response.set_emit_compact(false);
println!("{}", json_response.emit().unwrap_or_default());

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