@aws-sdk/client-cognito-identity-provider 3.382.0 → 3.383.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. package/README.md +83 -6
  2. package/dist-cjs/CognitoIdentityProvider.js +4 -0
  3. package/dist-cjs/commands/GetLogDeliveryConfigurationCommand.js +48 -0
  4. package/dist-cjs/commands/SetLogDeliveryConfigurationCommand.js +48 -0
  5. package/dist-cjs/commands/SetRiskConfigurationCommand.js +2 -1
  6. package/dist-cjs/commands/SetUICustomizationCommand.js +3 -3
  7. package/dist-cjs/commands/SetUserMFAPreferenceCommand.js +2 -2
  8. package/dist-cjs/commands/SetUserSettingsCommand.js +2 -2
  9. package/dist-cjs/commands/VerifySoftwareTokenCommand.js +1 -1
  10. package/dist-cjs/commands/index.js +2 -0
  11. package/dist-cjs/models/models_0.js +9 -48
  12. package/dist-cjs/models/models_1.js +26 -9
  13. package/dist-cjs/protocols/Aws_json1_1.js +108 -4
  14. package/dist-es/CognitoIdentityProvider.js +4 -0
  15. package/dist-es/commands/GetLogDeliveryConfigurationCommand.js +44 -0
  16. package/dist-es/commands/SetLogDeliveryConfigurationCommand.js +44 -0
  17. package/dist-es/commands/SetRiskConfigurationCommand.js +2 -1
  18. package/dist-es/commands/SetUICustomizationCommand.js +1 -1
  19. package/dist-es/commands/SetUserMFAPreferenceCommand.js +1 -1
  20. package/dist-es/commands/SetUserSettingsCommand.js +1 -1
  21. package/dist-es/commands/VerifySoftwareTokenCommand.js +2 -2
  22. package/dist-es/commands/index.js +2 -0
  23. package/dist-es/models/models_0.js +6 -39
  24. package/dist-es/models/models_1.js +21 -8
  25. package/dist-es/protocols/Aws_json1_1.js +100 -0
  26. package/dist-types/CognitoIdentityProvider.d.ts +81 -6
  27. package/dist-types/CognitoIdentityProviderClient.d.ts +71 -8
  28. package/dist-types/commands/AddCustomAttributesCommand.d.ts +20 -0
  29. package/dist-types/commands/AdminAddUserToGroupCommand.d.ts +20 -1
  30. package/dist-types/commands/AdminConfirmSignUpCommand.d.ts +20 -1
  31. package/dist-types/commands/AdminCreateUserCommand.d.ts +22 -4
  32. package/dist-types/commands/AdminDeleteUserAttributesCommand.d.ts +20 -1
  33. package/dist-types/commands/AdminDeleteUserCommand.d.ts +20 -1
  34. package/dist-types/commands/AdminDisableProviderForUserCommand.d.ts +22 -4
  35. package/dist-types/commands/AdminDisableUserCommand.d.ts +23 -3
  36. package/dist-types/commands/AdminEnableUserCommand.d.ts +20 -1
  37. package/dist-types/commands/AdminForgetDeviceCommand.d.ts +20 -1
  38. package/dist-types/commands/AdminGetDeviceCommand.d.ts +20 -1
  39. package/dist-types/commands/AdminGetUserCommand.d.ts +20 -1
  40. package/dist-types/commands/AdminInitiateAuthCommand.d.ts +22 -3
  41. package/dist-types/commands/AdminLinkProviderForUserCommand.d.ts +22 -3
  42. package/dist-types/commands/AdminListDevicesCommand.d.ts +20 -1
  43. package/dist-types/commands/AdminListGroupsForUserCommand.d.ts +20 -1
  44. package/dist-types/commands/AdminListUserAuthEventsCommand.d.ts +20 -0
  45. package/dist-types/commands/AdminRemoveUserFromGroupCommand.d.ts +20 -1
  46. package/dist-types/commands/AdminResetUserPasswordCommand.d.ts +30 -11
  47. package/dist-types/commands/AdminRespondToAuthChallengeCommand.d.ts +24 -5
  48. package/dist-types/commands/AdminSetUserMFAPreferenceCommand.d.ts +20 -0
  49. package/dist-types/commands/AdminSetUserPasswordCommand.d.ts +31 -0
  50. package/dist-types/commands/AdminSetUserSettingsCommand.d.ts +20 -0
  51. package/dist-types/commands/AdminUpdateAuthEventFeedbackCommand.d.ts +20 -0
  52. package/dist-types/commands/AdminUpdateDeviceStatusCommand.d.ts +20 -1
  53. package/dist-types/commands/AdminUpdateUserAttributesCommand.d.ts +31 -12
  54. package/dist-types/commands/AdminUserGlobalSignOutCommand.d.ts +28 -7
  55. package/dist-types/commands/AssociateSoftwareTokenCommand.d.ts +8 -1
  56. package/dist-types/commands/ChangePasswordCommand.d.ts +8 -1
  57. package/dist-types/commands/ConfirmDeviceCommand.d.ts +8 -1
  58. package/dist-types/commands/ConfirmForgotPasswordCommand.d.ts +8 -1
  59. package/dist-types/commands/ConfirmSignUpCommand.d.ts +10 -3
  60. package/dist-types/commands/CreateGroupCommand.d.ts +20 -1
  61. package/dist-types/commands/CreateIdentityProviderCommand.d.ts +20 -0
  62. package/dist-types/commands/CreateResourceServerCommand.d.ts +20 -0
  63. package/dist-types/commands/CreateUserImportJobCommand.d.ts +21 -1
  64. package/dist-types/commands/CreateUserPoolClientCommand.d.ts +23 -0
  65. package/dist-types/commands/CreateUserPoolCommand.d.ts +28 -5
  66. package/dist-types/commands/CreateUserPoolDomainCommand.d.ts +20 -0
  67. package/dist-types/commands/DeleteUserAttributesCommand.d.ts +8 -1
  68. package/dist-types/commands/DeleteUserCommand.d.ts +9 -2
  69. package/dist-types/commands/DescribeUserPoolClientCommand.d.ts +20 -0
  70. package/dist-types/commands/DescribeUserPoolCommand.d.ts +20 -0
  71. package/dist-types/commands/ForgetDeviceCommand.d.ts +8 -1
  72. package/dist-types/commands/ForgotPasswordCommand.d.ts +16 -7
  73. package/dist-types/commands/GetDeviceCommand.d.ts +8 -1
  74. package/dist-types/commands/GetLogDeliveryConfigurationCommand.d.ts +102 -0
  75. package/dist-types/commands/GetSigningCertificateCommand.d.ts +5 -3
  76. package/dist-types/commands/GetUserAttributeVerificationCodeCommand.d.ts +10 -3
  77. package/dist-types/commands/GetUserCommand.d.ts +8 -1
  78. package/dist-types/commands/GlobalSignOutCommand.d.ts +16 -4
  79. package/dist-types/commands/InitiateAuthCommand.d.ts +10 -3
  80. package/dist-types/commands/ListDevicesCommand.d.ts +8 -1
  81. package/dist-types/commands/ListGroupsCommand.d.ts +20 -1
  82. package/dist-types/commands/ListIdentityProvidersCommand.d.ts +20 -0
  83. package/dist-types/commands/ListResourceServersCommand.d.ts +20 -0
  84. package/dist-types/commands/ListUserImportJobsCommand.d.ts +21 -1
  85. package/dist-types/commands/ListUserPoolClientsCommand.d.ts +20 -0
  86. package/dist-types/commands/ListUserPoolsCommand.d.ts +20 -0
  87. package/dist-types/commands/ListUsersCommand.d.ts +21 -1
  88. package/dist-types/commands/ListUsersInGroupCommand.d.ts +20 -1
  89. package/dist-types/commands/ResendConfirmationCodeCommand.d.ts +10 -3
  90. package/dist-types/commands/RespondToAuthChallengeCommand.d.ts +12 -5
  91. package/dist-types/commands/RevokeTokenCommand.d.ts +10 -3
  92. package/dist-types/commands/SetLogDeliveryConfigurationCommand.d.ts +111 -0
  93. package/dist-types/commands/SetRiskConfigurationCommand.d.ts +2 -1
  94. package/dist-types/commands/SetUICustomizationCommand.d.ts +1 -1
  95. package/dist-types/commands/SetUserMFAPreferenceCommand.d.ts +9 -2
  96. package/dist-types/commands/SetUserPoolMfaConfigCommand.d.ts +3 -3
  97. package/dist-types/commands/SetUserSettingsCommand.d.ts +9 -2
  98. package/dist-types/commands/SignUpCommand.d.ts +10 -3
  99. package/dist-types/commands/UpdateAuthEventFeedbackCommand.d.ts +6 -0
  100. package/dist-types/commands/UpdateDeviceStatusCommand.d.ts +8 -1
  101. package/dist-types/commands/UpdateGroupCommand.d.ts +20 -1
  102. package/dist-types/commands/UpdateIdentityProviderCommand.d.ts +20 -0
  103. package/dist-types/commands/UpdateResourceServerCommand.d.ts +20 -0
  104. package/dist-types/commands/UpdateUserAttributesCommand.d.ts +12 -5
  105. package/dist-types/commands/UpdateUserPoolClientCommand.d.ts +21 -2
  106. package/dist-types/commands/UpdateUserPoolCommand.d.ts +28 -7
  107. package/dist-types/commands/UpdateUserPoolDomainCommand.d.ts +20 -0
  108. package/dist-types/commands/VerifySoftwareTokenCommand.d.ts +8 -1
  109. package/dist-types/commands/VerifyUserAttributeCommand.d.ts +13 -9
  110. package/dist-types/commands/index.d.ts +2 -0
  111. package/dist-types/index.d.ts +67 -6
  112. package/dist-types/models/models_0.d.ts +371 -319
  113. package/dist-types/models/models_1.d.ts +242 -18
  114. package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
  115. package/dist-types/ts3.4/CognitoIdentityProvider.d.ts +34 -0
  116. package/dist-types/ts3.4/CognitoIdentityProviderClient.d.ts +12 -0
  117. package/dist-types/ts3.4/commands/GetLogDeliveryConfigurationCommand.d.ts +42 -0
  118. package/dist-types/ts3.4/commands/SetLogDeliveryConfigurationCommand.d.ts +42 -0
  119. package/dist-types/ts3.4/commands/SetRiskConfigurationCommand.d.ts +2 -4
  120. package/dist-types/ts3.4/commands/SetUICustomizationCommand.d.ts +1 -1
  121. package/dist-types/ts3.4/commands/SetUserMFAPreferenceCommand.d.ts +1 -1
  122. package/dist-types/ts3.4/commands/SetUserPoolMfaConfigCommand.d.ts +1 -1
  123. package/dist-types/ts3.4/commands/SetUserSettingsCommand.d.ts +1 -1
  124. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  125. package/dist-types/ts3.4/models/models_0.d.ts +34 -52
  126. package/dist-types/ts3.4/models/models_1.d.ts +56 -3
  127. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
  128. package/package.json +1 -1
@@ -23,11 +23,7 @@ export interface UpdateUserPoolCommandOutput extends UpdateUserPoolResponse, __M
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p>Updates the specified user pool with the specified attributes. You can get a list of
27
- * the current user pool settings using <a href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_DescribeUserPool.html">DescribeUserPool</a>. If you don't provide a value for an attribute, it will be
28
- * set to the default value.
29
- * </p>
30
- * <note>
26
+ * <note>
31
27
  * <p>This action might generate an SMS text message. Starting June 1, 2021, US telecom carriers
32
28
  * require you to register an origination phone number before you can send SMS messages
33
29
  * to US phone numbers. If you use SMS text messages in Amazon Cognito, you must register a
@@ -41,9 +37,34 @@ export interface UpdateUserPoolCommandOutput extends UpdateUserPoolResponse, __M
41
37
  * mode</a>
42
38
  * </i>, you can send messages only to verified phone
43
39
  * numbers. After you test your app while in the sandbox environment, you can move out
44
- * of the sandbox and into production. For more information, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-sms-userpool-settings.html"> SMS message settings for Amazon Cognito user pools</a> in the <i>Amazon Cognito
40
+ * of the sandbox and into production. For more information, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-sms-settings.html"> SMS message settings for Amazon Cognito user pools</a> in the <i>Amazon Cognito
45
41
  * Developer Guide</i>.</p>
46
42
  * </note>
43
+ * <p>Updates the specified user pool with the specified attributes. You can get a list of
44
+ * the current user pool settings using <a href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_DescribeUserPool.html">DescribeUserPool</a>.</p>
45
+ * <important>
46
+ * <p>If you don't provide a value for an attribute, Amazon Cognito sets it to its default value.</p>
47
+ * </important>
48
+ * <note>
49
+ * <p>Amazon Cognito evaluates Identity and Access Management (IAM) policies in requests for this API operation. For
50
+ * this operation, you must use IAM credentials to authorize requests, and you must
51
+ * grant yourself the corresponding IAM permission in a policy.</p>
52
+ * <p class="title">
53
+ * <b>Learn more</b>
54
+ * </p>
55
+ * <ul>
56
+ * <li>
57
+ * <p>
58
+ * <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_aws-signing.html">Signing Amazon Web Services API Requests</a>
59
+ * </p>
60
+ * </li>
61
+ * <li>
62
+ * <p>
63
+ * <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/user-pools-API-operations.html">Using the Amazon Cognito user pools API and user pool endpoints</a>
64
+ * </p>
65
+ * </li>
66
+ * </ul>
67
+ * </note>
47
68
  * @example
48
69
  * Use a bare-bones client and the command you need to make an API call.
49
70
  * ```javascript
@@ -179,7 +200,7 @@ export interface UpdateUserPoolCommandOutput extends UpdateUserPoolResponse, __M
179
200
  * @throws {@link InvalidSmsRoleTrustRelationshipException} (client fault)
180
201
  * <p>This exception is thrown when the trust relationship is not valid for the role
181
202
  * provided for SMS configuration. This can happen if you don't trust
182
- * <code>cognito-idp.amazonaws.com</code> or the external ID provided in the role does
203
+ * <code>cognito-idp.amazonaws.com</code> or the external ID provided in the role does
183
204
  * not match what is provided in the SMS configuration for the user pool.</p>
184
205
  *
185
206
  * @throws {@link NotAuthorizedException} (client fault)
@@ -42,6 +42,26 @@ export interface UpdateUserPoolDomainCommandOutput extends UpdateUserPoolDomainR
42
42
  * <p>After you submit your request, Amazon Cognito requires up to 1 hour to distribute your new
43
43
  * certificate to your custom domain.</p>
44
44
  * <p>For more information about adding a custom domain to your user pool, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-add-custom-domain.html">Using Your Own Domain for the Hosted UI</a>.</p>
45
+ * <note>
46
+ * <p>Amazon Cognito evaluates Identity and Access Management (IAM) policies in requests for this API operation. For
47
+ * this operation, you must use IAM credentials to authorize requests, and you must
48
+ * grant yourself the corresponding IAM permission in a policy.</p>
49
+ * <p class="title">
50
+ * <b>Learn more</b>
51
+ * </p>
52
+ * <ul>
53
+ * <li>
54
+ * <p>
55
+ * <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_aws-signing.html">Signing Amazon Web Services API Requests</a>
56
+ * </p>
57
+ * </li>
58
+ * <li>
59
+ * <p>
60
+ * <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/user-pools-API-operations.html">Using the Amazon Cognito user pools API and user pool endpoints</a>
61
+ * </p>
62
+ * </li>
63
+ * </ul>
64
+ * </note>
45
65
  * @example
46
66
  * Use a bare-bones client and the command you need to make an API call.
47
67
  * ```javascript
@@ -26,6 +26,12 @@ export interface VerifySoftwareTokenCommandOutput extends VerifySoftwareTokenRes
26
26
  * <p>Use this API to register a user's entered time-based one-time password (TOTP) code and
27
27
  * mark the user's software token MFA status as "verified" if successful. The request takes
28
28
  * an access token or a session string, but not both.</p>
29
+ * <note>
30
+ * <p>Amazon Cognito doesn't evaluate Identity and Access Management (IAM) policies in requests for this API operation. For
31
+ * this operation, you can't use IAM credentials to authorize requests, and you can't
32
+ * grant IAM permissions in policies. For more information about authorization models in
33
+ * Amazon Cognito, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/user-pools-API-operations.html">Using the Amazon Cognito native and OIDC APIs</a>.</p>
34
+ * </note>
29
35
  * @example
30
36
  * Use a bare-bones client and the command you need to make an API call.
31
37
  * ```javascript
@@ -62,7 +68,8 @@ export interface VerifySoftwareTokenCommandOutput extends VerifySoftwareTokenRes
62
68
  * configure the software token TOTP multi-factor authentication (MFA).</p>
63
69
  *
64
70
  * @throws {@link ForbiddenException} (client fault)
65
- * <p>This exception is thrown when WAF doesn't allow your request based on a web ACL that's associated with your user pool.</p>
71
+ * <p>This exception is thrown when WAF doesn't allow your request based on a web
72
+ * ACL that's associated with your user pool.</p>
66
73
  *
67
74
  * @throws {@link InternalErrorException} (server fault)
68
75
  * <p>This exception is thrown when Amazon Cognito encounters an internal error.</p>
@@ -24,12 +24,15 @@ export interface VerifyUserAttributeCommandOutput extends VerifyUserAttributeRes
24
24
  /**
25
25
  * @public
26
26
  * <p>Verifies the specified user attributes in the user pool.</p>
27
- * <p>
28
- * If your user pool requires verification before Amazon Cognito updates the attribute value,
29
- * VerifyUserAttribute updates the affected attribute to its pending value. For more information,
30
- * see <a href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_UserAttributeUpdateSettingsType.html">
31
- * UserAttributeUpdateSettingsType</a>.
32
- * </p>
27
+ * <p> If your user pool requires verification before Amazon Cognito updates the attribute value,
28
+ * VerifyUserAttribute updates the affected attribute to its pending value. For more
29
+ * information, see <a href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_UserAttributeUpdateSettingsType.html"> UserAttributeUpdateSettingsType</a>. </p>
30
+ * <note>
31
+ * <p>Amazon Cognito doesn't evaluate Identity and Access Management (IAM) policies in requests for this API operation. For
32
+ * this operation, you can't use IAM credentials to authorize requests, and you can't
33
+ * grant IAM permissions in policies. For more information about authorization models in
34
+ * Amazon Cognito, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/user-pools-API-operations.html">Using the Amazon Cognito native and OIDC APIs</a>.</p>
35
+ * </note>
33
36
  * @example
34
37
  * Use a bare-bones client and the command you need to make an API call.
35
38
  * ```javascript
@@ -55,8 +58,8 @@ export interface VerifyUserAttributeCommandOutput extends VerifyUserAttributeRes
55
58
  *
56
59
  * @throws {@link AliasExistsException} (client fault)
57
60
  * <p>This exception is thrown when a user tries to confirm the account with an email
58
- * address or phone number that has already been supplied as an alias for a different
59
- * user profile. This exception indicates that an account with this email address or phone
61
+ * address or phone number that has already been supplied as an alias for a different user
62
+ * profile. This exception indicates that an account with this email address or phone
60
63
  * already exists in a user pool that you've configured to use email address or phone
61
64
  * number as a sign-in alias.</p>
62
65
  *
@@ -68,7 +71,8 @@ export interface VerifyUserAttributeCommandOutput extends VerifyUserAttributeRes
68
71
  * <p>This exception is thrown if a code has expired.</p>
69
72
  *
70
73
  * @throws {@link ForbiddenException} (client fault)
71
- * <p>This exception is thrown when WAF doesn't allow your request based on a web ACL that's associated with your user pool.</p>
74
+ * <p>This exception is thrown when WAF doesn't allow your request based on a web
75
+ * ACL that's associated with your user pool.</p>
72
76
  *
73
77
  * @throws {@link InternalErrorException} (server fault)
74
78
  * <p>This exception is thrown when Amazon Cognito encounters an internal error.</p>
@@ -58,6 +58,7 @@ export * from "./GetCSVHeaderCommand";
58
58
  export * from "./GetDeviceCommand";
59
59
  export * from "./GetGroupCommand";
60
60
  export * from "./GetIdentityProviderByIdentifierCommand";
61
+ export * from "./GetLogDeliveryConfigurationCommand";
61
62
  export * from "./GetSigningCertificateCommand";
62
63
  export * from "./GetUICustomizationCommand";
63
64
  export * from "./GetUserAttributeVerificationCodeCommand";
@@ -78,6 +79,7 @@ export * from "./ListUsersInGroupCommand";
78
79
  export * from "./ResendConfirmationCodeCommand";
79
80
  export * from "./RespondToAuthChallengeCommand";
80
81
  export * from "./RevokeTokenCommand";
82
+ export * from "./SetLogDeliveryConfigurationCommand";
81
83
  export * from "./SetRiskConfigurationCommand";
82
84
  export * from "./SetUICustomizationCommand";
83
85
  export * from "./SetUserMFAPreferenceCommand";
@@ -1,10 +1,71 @@
1
1
  /**
2
- * <p>Using the Amazon Cognito user pools API, you can create a user pool to manage directories and
3
- * users. You can authenticate a user to obtain tokens related to user identity and access
4
- * policies.</p>
5
- * <p>This API reference provides information about user pools in Amazon Cognito user pools.</p>
6
- * <p>For more information, see the <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/what-is-amazon-cognito.html">Amazon Cognito
7
- * Documentation</a>.</p>
2
+ * <p>With the Amazon Cognito user pools API, you can set up user pools and app clients, and
3
+ * authenticate users. To authenticate users from third-party identity providers (IdPs) in
4
+ * this API, you can <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-identity-federation-consolidate-users.html">link IdP users to native user profiles</a>. Learn more
5
+ * about the authentication and authorization of federated users in the <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-userpools-server-contract-reference.html">Using the Amazon Cognito user pools API and user pool endpoints</a>.</p>
6
+ * <p>This API reference provides detailed information about API operations and object types
7
+ * in Amazon Cognito. At the bottom of the page for each API operation and object, under
8
+ * <i>See Also</i>, you can learn how to use it in an Amazon Web Services SDK in the
9
+ * language of your choice.</p>
10
+ * <p>Along with resource management operations, the Amazon Cognito user pools API includes classes
11
+ * of operations and authorization models for client-side and server-side user operations.
12
+ * For more information, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/user-pools-API-operations.html">Using the Amazon Cognito native and OIDC APIs</a> in the
13
+ * <i>Amazon Cognito Developer Guide</i>.</p>
14
+ * <p>You can also start reading about the <code>CognitoIdentityProvider</code> client in
15
+ * the following SDK guides.</p>
16
+ * <ul>
17
+ * <li>
18
+ * <p>
19
+ * <a href="https://docs.aws.amazon.com/cli/latest/reference/cognito-idp/index.html#cli-aws-cognito-idp">Amazon Web Services
20
+ * Command Line Interface</a>
21
+ * </p>
22
+ * </li>
23
+ * <li>
24
+ * <p>
25
+ * <a href="https://docs.aws.amazon.com/sdkfornet/v3/apidocs/items/CognitoIdentityProvider/TCognitoIdentityProviderClient.html">Amazon Web Services SDK for .NET</a>
26
+ * </p>
27
+ * </li>
28
+ * <li>
29
+ * <p>
30
+ * <a href="https://sdk.amazonaws.com/cpp/api/LATEST/aws-cpp-sdk-cognito-idp/html/class_aws_1_1_cognito_identity_provider_1_1_cognito_identity_provider_client.html">Amazon Web Services SDK for C++</a>
31
+ * </p>
32
+ * </li>
33
+ * <li>
34
+ * <p>
35
+ * <a href="https://docs.aws.amazon.com/sdk-for-go/api/service/cognitoidentityprovider/#CognitoIdentityProvider">Amazon Web Services SDK for Go</a>
36
+ * </p>
37
+ * </li>
38
+ * <li>
39
+ * <p>
40
+ * <a href="https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/services/cognitoidentityprovider/CognitoIdentityProviderClient.html">Amazon Web Services SDK for Java V2</a>
41
+ * </p>
42
+ * </li>
43
+ * <li>
44
+ * <p>
45
+ * <a href="https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/CognitoIdentityServiceProvider.html">Amazon Web Services
46
+ * SDK for JavaScript</a>
47
+ * </p>
48
+ * </li>
49
+ * <li>
50
+ * <p>
51
+ * <a href="https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-cognito-idp-2016-04-18.html">Amazon Web Services SDK for PHP
52
+ * V3</a>
53
+ * </p>
54
+ * </li>
55
+ * <li>
56
+ * <p>
57
+ * <a href="https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/cognito-idp.html">Amazon Web Services SDK for Python</a>
58
+ * </p>
59
+ * </li>
60
+ * <li>
61
+ * <p>
62
+ * <a href="https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentityProvider/Client.html">Amazon Web Services SDK
63
+ * for Ruby V3</a>
64
+ * </p>
65
+ * </li>
66
+ * </ul>
67
+ * <p>To get started with an Amazon Web Services SDK, see <a href="http://aws.amazon.com/developer/tools/">Tools to Build on Amazon Web Services</a>. For example actions and scenarios, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/service_code_examples_cognito-identity-provider.html">Code examples for Amazon Cognito Identity Provider using Amazon Web Services
68
+ * SDKs</a>.</p>
8
69
  *
9
70
  * @packageDocumentation
10
71
  */