aws-sdk-cognitoidentityprovider 1.53.0 → 1.57.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cognitoidentityprovider/client.rb +193 -198
- data/lib/aws-sdk-cognitoidentityprovider/types.rb +217 -219
- data/lib/aws-sdk-cognitoidentityprovider.rb +1 -1
- metadata +5 -5
@@ -283,14 +283,14 @@ module Aws::CognitoIdentityProvider
|
|
283
283
|
# any custom workflows that this action triggers.
|
284
284
|
#
|
285
285
|
# If your user pool configuration includes triggers, the
|
286
|
-
# AdminConfirmSignUp API action invokes the
|
287
|
-
#
|
288
|
-
#
|
289
|
-
#
|
290
|
-
#
|
291
|
-
#
|
292
|
-
#
|
293
|
-
#
|
286
|
+
# AdminConfirmSignUp API action invokes the Lambda function that is
|
287
|
+
# specified for the *post confirmation* trigger. When Amazon Cognito
|
288
|
+
# invokes this function, it passes a JSON payload, which the function
|
289
|
+
# receives as input. In this payload, the `clientMetadata` attribute
|
290
|
+
# provides the data that you assigned to the ClientMetadata parameter
|
291
|
+
# in your AdminConfirmSignUp request. In your function code in Lambda,
|
292
|
+
# you can process the ClientMetadata value to enhance your workflow
|
293
|
+
# for your specific needs.
|
294
294
|
#
|
295
295
|
# For more information, see [Customizing User Pool Workflows with
|
296
296
|
# Lambda Triggers][1] in the *Amazon Cognito Developer Guide*.
|
@@ -299,10 +299,10 @@ module Aws::CognitoIdentityProvider
|
|
299
299
|
# ClientMetadata parameter:
|
300
300
|
#
|
301
301
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
302
|
-
# is available only to
|
303
|
-
#
|
304
|
-
#
|
305
|
-
#
|
302
|
+
# is available only to Lambda triggers that are assigned to a user
|
303
|
+
# pool to support custom workflows. If your user pool configuration
|
304
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
305
|
+
# purpose.
|
306
306
|
#
|
307
307
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
308
308
|
#
|
@@ -532,16 +532,16 @@ module Aws::CognitoIdentityProvider
|
|
532
532
|
# A map of custom key-value pairs that you can provide as input for
|
533
533
|
# any custom workflows that this action triggers.
|
534
534
|
#
|
535
|
-
# You create custom workflows by assigning
|
536
|
-
#
|
537
|
-
#
|
538
|
-
#
|
539
|
-
#
|
540
|
-
#
|
541
|
-
#
|
542
|
-
#
|
543
|
-
#
|
544
|
-
#
|
535
|
+
# You create custom workflows by assigning Lambda functions to user
|
536
|
+
# pool triggers. When you use the AdminCreateUser API action, Amazon
|
537
|
+
# Cognito invokes the function that is assigned to the *pre sign-up*
|
538
|
+
# trigger. When Amazon Cognito invokes this function, it passes a JSON
|
539
|
+
# payload, which the function receives as input. This payload contains
|
540
|
+
# a `clientMetadata` attribute, which provides the data that you
|
541
|
+
# assigned to the ClientMetadata parameter in your AdminCreateUser
|
542
|
+
# request. In your function code in Lambda, you can process the
|
543
|
+
# `clientMetadata` value to enhance your workflow for your specific
|
544
|
+
# needs.
|
545
545
|
#
|
546
546
|
# For more information, see [Customizing User Pool Workflows with
|
547
547
|
# Lambda Triggers][1] in the *Amazon Cognito Developer Guide*.
|
@@ -550,10 +550,10 @@ module Aws::CognitoIdentityProvider
|
|
550
550
|
# ClientMetadata parameter:
|
551
551
|
#
|
552
552
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
553
|
-
# is available only to
|
554
|
-
#
|
555
|
-
#
|
556
|
-
#
|
553
|
+
# is available only to Lambda triggers that are assigned to a user
|
554
|
+
# pool to support custom workflows. If your user pool configuration
|
555
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
556
|
+
# purpose.
|
557
557
|
#
|
558
558
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
559
559
|
#
|
@@ -1068,11 +1068,11 @@ module Aws::CognitoIdentityProvider
|
|
1068
1068
|
# A map of custom key-value pairs that you can provide as input for
|
1069
1069
|
# certain custom workflows that this action triggers.
|
1070
1070
|
#
|
1071
|
-
# You create custom workflows by assigning
|
1072
|
-
#
|
1073
|
-
#
|
1074
|
-
#
|
1075
|
-
#
|
1071
|
+
# You create custom workflows by assigning Lambda functions to user
|
1072
|
+
# pool triggers. When you use the AdminInitiateAuth API action, Amazon
|
1073
|
+
# Cognito invokes the Lambda functions that are specified for various
|
1074
|
+
# triggers. The ClientMetadata value is passed as input to the
|
1075
|
+
# functions for only the following triggers:
|
1076
1076
|
#
|
1077
1077
|
# * Pre signup
|
1078
1078
|
#
|
@@ -1084,9 +1084,9 @@ module Aws::CognitoIdentityProvider
|
|
1084
1084
|
# passes a JSON payload, which the function receives as input. This
|
1085
1085
|
# payload contains a `validationData` attribute, which provides the
|
1086
1086
|
# data that you assigned to the ClientMetadata parameter in your
|
1087
|
-
# AdminInitiateAuth request. In your function code in
|
1088
|
-
#
|
1089
|
-
#
|
1087
|
+
# AdminInitiateAuth request. In your function code in Lambda, you can
|
1088
|
+
# process the `validationData` value to enhance your workflow for your
|
1089
|
+
# specific needs.
|
1090
1090
|
#
|
1091
1091
|
# When you use the AdminInitiateAuth API action, Amazon Cognito also
|
1092
1092
|
# invokes the functions for the following triggers, but it does not
|
@@ -1111,10 +1111,10 @@ module Aws::CognitoIdentityProvider
|
|
1111
1111
|
# ClientMetadata parameter:
|
1112
1112
|
#
|
1113
1113
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
1114
|
-
# is available only to
|
1115
|
-
#
|
1116
|
-
#
|
1117
|
-
#
|
1114
|
+
# is available only to Lambda triggers that are assigned to a user
|
1115
|
+
# pool to support custom workflows. If your user pool configuration
|
1116
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
1117
|
+
# purpose.
|
1118
1118
|
#
|
1119
1119
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
1120
1120
|
#
|
@@ -1562,16 +1562,16 @@ module Aws::CognitoIdentityProvider
|
|
1562
1562
|
# A map of custom key-value pairs that you can provide as input for
|
1563
1563
|
# any custom workflows that this action triggers.
|
1564
1564
|
#
|
1565
|
-
# You create custom workflows by assigning
|
1566
|
-
#
|
1567
|
-
#
|
1568
|
-
#
|
1569
|
-
#
|
1565
|
+
# You create custom workflows by assigning Lambda functions to user
|
1566
|
+
# pool triggers. When you use the AdminResetUserPassword API action,
|
1567
|
+
# Amazon Cognito invokes the function that is assigned to the *custom
|
1568
|
+
# message* trigger. When Amazon Cognito invokes this function, it
|
1569
|
+
# passes a JSON payload, which the function receives as input. This
|
1570
1570
|
# payload contains a `clientMetadata` attribute, which provides the
|
1571
1571
|
# data that you assigned to the ClientMetadata parameter in your
|
1572
|
-
# AdminResetUserPassword request. In your function code in
|
1573
|
-
#
|
1574
|
-
#
|
1572
|
+
# AdminResetUserPassword request. In your function code in Lambda, you
|
1573
|
+
# can process the `clientMetadata` value to enhance your workflow for
|
1574
|
+
# your specific needs.
|
1575
1575
|
#
|
1576
1576
|
# For more information, see [Customizing User Pool Workflows with
|
1577
1577
|
# Lambda Triggers][1] in the *Amazon Cognito Developer Guide*.
|
@@ -1580,10 +1580,10 @@ module Aws::CognitoIdentityProvider
|
|
1580
1580
|
# ClientMetadata parameter:
|
1581
1581
|
#
|
1582
1582
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
1583
|
-
# is available only to
|
1584
|
-
#
|
1585
|
-
#
|
1586
|
-
#
|
1583
|
+
# is available only to Lambda triggers that are assigned to a user
|
1584
|
+
# pool to support custom workflows. If your user pool configuration
|
1585
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
1586
|
+
# purpose.
|
1587
1587
|
#
|
1588
1588
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
1589
1589
|
#
|
@@ -1718,8 +1718,8 @@ module Aws::CognitoIdentityProvider
|
|
1718
1718
|
# A map of custom key-value pairs that you can provide as input for
|
1719
1719
|
# any custom workflows that this action triggers.
|
1720
1720
|
#
|
1721
|
-
# You create custom workflows by assigning
|
1722
|
-
#
|
1721
|
+
# You create custom workflows by assigning Lambda functions to user
|
1722
|
+
# pool triggers. When you use the AdminRespondToAuthChallenge API
|
1723
1723
|
# action, Amazon Cognito invokes any functions that are assigned to
|
1724
1724
|
# the following triggers: *pre sign-up*, *custom message*, *post
|
1725
1725
|
# authentication*, *user migration*, *pre token generation*, *define
|
@@ -1728,7 +1728,7 @@ module Aws::CognitoIdentityProvider
|
|
1728
1728
|
# passes a JSON payload, which the function receives as input. This
|
1729
1729
|
# payload contains a `clientMetadata` attribute, which provides the
|
1730
1730
|
# data that you assigned to the ClientMetadata parameter in your
|
1731
|
-
# AdminRespondToAuthChallenge request. In your function code in
|
1731
|
+
# AdminRespondToAuthChallenge request. In your function code in
|
1732
1732
|
# Lambda, you can process the `clientMetadata` value to enhance your
|
1733
1733
|
# workflow for your specific needs.
|
1734
1734
|
#
|
@@ -1739,10 +1739,10 @@ module Aws::CognitoIdentityProvider
|
|
1739
1739
|
# ClientMetadata parameter:
|
1740
1740
|
#
|
1741
1741
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
1742
|
-
# is available only to
|
1743
|
-
#
|
1744
|
-
#
|
1745
|
-
#
|
1742
|
+
# is available only to Lambda triggers that are assigned to a user
|
1743
|
+
# pool to support custom workflows. If your user pool configuration
|
1744
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
1745
|
+
# purpose.
|
1746
1746
|
#
|
1747
1747
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
1748
1748
|
#
|
@@ -2080,16 +2080,16 @@ module Aws::CognitoIdentityProvider
|
|
2080
2080
|
# A map of custom key-value pairs that you can provide as input for
|
2081
2081
|
# any custom workflows that this action triggers.
|
2082
2082
|
#
|
2083
|
-
# You create custom workflows by assigning
|
2084
|
-
#
|
2083
|
+
# You create custom workflows by assigning Lambda functions to user
|
2084
|
+
# pool triggers. When you use the AdminUpdateUserAttributes API
|
2085
2085
|
# action, Amazon Cognito invokes the function that is assigned to the
|
2086
2086
|
# *custom message* trigger. When Amazon Cognito invokes this function,
|
2087
2087
|
# it passes a JSON payload, which the function receives as input. This
|
2088
2088
|
# payload contains a `clientMetadata` attribute, which provides the
|
2089
2089
|
# data that you assigned to the ClientMetadata parameter in your
|
2090
|
-
# AdminUpdateUserAttributes request. In your function code in
|
2091
|
-
#
|
2092
|
-
#
|
2090
|
+
# AdminUpdateUserAttributes request. In your function code in Lambda,
|
2091
|
+
# you can process the `clientMetadata` value to enhance your workflow
|
2092
|
+
# for your specific needs.
|
2093
2093
|
#
|
2094
2094
|
# For more information, see [Customizing User Pool Workflows with
|
2095
2095
|
# Lambda Triggers][1] in the *Amazon Cognito Developer Guide*.
|
@@ -2098,10 +2098,10 @@ module Aws::CognitoIdentityProvider
|
|
2098
2098
|
# ClientMetadata parameter:
|
2099
2099
|
#
|
2100
2100
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
2101
|
-
# is available only to
|
2102
|
-
#
|
2103
|
-
#
|
2104
|
-
#
|
2101
|
+
# is available only to Lambda triggers that are assigned to a user
|
2102
|
+
# pool to support custom workflows. If your user pool configuration
|
2103
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
2104
|
+
# purpose.
|
2105
2105
|
#
|
2106
2106
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
2107
2107
|
#
|
@@ -2738,16 +2738,16 @@ module Aws::CognitoIdentityProvider
|
|
2738
2738
|
# A map of custom key-value pairs that you can provide as input for
|
2739
2739
|
# any custom workflows that this action triggers.
|
2740
2740
|
#
|
2741
|
-
# You create custom workflows by assigning
|
2742
|
-
#
|
2743
|
-
#
|
2744
|
-
#
|
2745
|
-
#
|
2746
|
-
#
|
2747
|
-
#
|
2748
|
-
#
|
2749
|
-
#
|
2750
|
-
#
|
2741
|
+
# You create custom workflows by assigning Lambda functions to user
|
2742
|
+
# pool triggers. When you use the ConfirmForgotPassword API action,
|
2743
|
+
# Amazon Cognito invokes the function that is assigned to the *post
|
2744
|
+
# confirmation* trigger. When Amazon Cognito invokes this function, it
|
2745
|
+
# passes a JSON payload, which the function receives as input. This
|
2746
|
+
# payload contains a `clientMetadata` attribute, which provides the
|
2747
|
+
# data that you assigned to the ClientMetadata parameter in your
|
2748
|
+
# ConfirmForgotPassword request. In your function code in Lambda, you
|
2749
|
+
# can process the `clientMetadata` value to enhance your workflow for
|
2750
|
+
# your specific needs.
|
2751
2751
|
#
|
2752
2752
|
# For more information, see [Customizing User Pool Workflows with
|
2753
2753
|
# Lambda Triggers][1] in the *Amazon Cognito Developer Guide*.
|
@@ -2756,10 +2756,10 @@ module Aws::CognitoIdentityProvider
|
|
2756
2756
|
# ClientMetadata parameter:
|
2757
2757
|
#
|
2758
2758
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
2759
|
-
# is available only to
|
2760
|
-
#
|
2761
|
-
#
|
2762
|
-
#
|
2759
|
+
# is available only to Lambda triggers that are assigned to a user
|
2760
|
+
# pool to support custom workflows. If your user pool configuration
|
2761
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
2762
|
+
# purpose.
|
2763
2763
|
#
|
2764
2764
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
2765
2765
|
#
|
@@ -2861,14 +2861,14 @@ module Aws::CognitoIdentityProvider
|
|
2861
2861
|
# A map of custom key-value pairs that you can provide as input for
|
2862
2862
|
# any custom workflows that this action triggers.
|
2863
2863
|
#
|
2864
|
-
# You create custom workflows by assigning
|
2865
|
-
#
|
2866
|
-
#
|
2864
|
+
# You create custom workflows by assigning Lambda functions to user
|
2865
|
+
# pool triggers. When you use the ConfirmSignUp API action, Amazon
|
2866
|
+
# Cognito invokes the function that is assigned to the *post
|
2867
2867
|
# confirmation* trigger. When Amazon Cognito invokes this function, it
|
2868
2868
|
# passes a JSON payload, which the function receives as input. This
|
2869
2869
|
# payload contains a `clientMetadata` attribute, which provides the
|
2870
2870
|
# data that you assigned to the ClientMetadata parameter in your
|
2871
|
-
# ConfirmSignUp request. In your function code in
|
2871
|
+
# ConfirmSignUp request. In your function code in Lambda, you can
|
2872
2872
|
# process the `clientMetadata` value to enhance your workflow for your
|
2873
2873
|
# specific needs.
|
2874
2874
|
#
|
@@ -2879,10 +2879,10 @@ module Aws::CognitoIdentityProvider
|
|
2879
2879
|
# ClientMetadata parameter:
|
2880
2880
|
#
|
2881
2881
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
2882
|
-
# is available only to
|
2883
|
-
#
|
2884
|
-
#
|
2885
|
-
#
|
2882
|
+
# is available only to Lambda triggers that are assigned to a user
|
2883
|
+
# pool to support custom workflows. If your user pool configuration
|
2884
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
2885
|
+
# purpose.
|
2886
2886
|
#
|
2887
2887
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
2888
2888
|
#
|
@@ -3473,8 +3473,8 @@ module Aws::CognitoIdentityProvider
|
|
3473
3473
|
# @!attribute [rw] allowed_o_auth_scopes
|
3474
3474
|
# The allowed OAuth scopes. Possible values provided by OAuth are:
|
3475
3475
|
# `phone`, `email`, `openid`, and `profile`. Possible values provided
|
3476
|
-
# by
|
3477
|
-
# in Resource Servers are also supported.
|
3476
|
+
# by Amazon Web Services are: `aws.cognito.signin.user.admin`. Custom
|
3477
|
+
# scopes created in Resource Servers are also supported.
|
3478
3478
|
# @return [Array<String>]
|
3479
3479
|
#
|
3480
3480
|
# @!attribute [rw] allowed_o_auth_flows_user_pool_client
|
@@ -3765,7 +3765,7 @@ module Aws::CognitoIdentityProvider
|
|
3765
3765
|
# For more information on using the Lambda API to add permission, see
|
3766
3766
|
# [ AddPermission ][1].
|
3767
3767
|
#
|
3768
|
-
# For adding permission using the
|
3768
|
+
# For adding permission using the CLI, see [ add-permission ][2].
|
3769
3769
|
#
|
3770
3770
|
# </note>
|
3771
3771
|
#
|
@@ -3936,7 +3936,7 @@ module Aws::CognitoIdentityProvider
|
|
3936
3936
|
# }
|
3937
3937
|
#
|
3938
3938
|
# @!attribute [rw] certificate_arn
|
3939
|
-
# The Amazon Resource Name (ARN) of an
|
3939
|
+
# The Amazon Resource Name (ARN) of an Certificate Manager SSL
|
3940
3940
|
# certificate. You use this certificate for the subdomain of your
|
3941
3941
|
# custom domain.
|
3942
3942
|
# @return [String]
|
@@ -4580,7 +4580,7 @@ module Aws::CognitoIdentityProvider
|
|
4580
4580
|
# @return [String]
|
4581
4581
|
#
|
4582
4582
|
# @!attribute [rw] aws_account_id
|
4583
|
-
# The
|
4583
|
+
# The account ID for the user pool owner.
|
4584
4584
|
# @return [String]
|
4585
4585
|
#
|
4586
4586
|
# @!attribute [rw] domain
|
@@ -4730,7 +4730,7 @@ module Aws::CognitoIdentityProvider
|
|
4730
4730
|
# configuration. Amazon Cognito calls Amazon SES on your behalf to
|
4731
4731
|
# send email from your verified email address. When you use this
|
4732
4732
|
# option, the email delivery limits are the same limits that apply
|
4733
|
-
# to your Amazon SES verified email address in your
|
4733
|
+
# to your Amazon SES verified email address in your account.
|
4734
4734
|
#
|
4735
4735
|
# If you use this option, you must provide the ARN of an Amazon SES
|
4736
4736
|
# verified email address for the `SourceArn` parameter.
|
@@ -4738,7 +4738,7 @@ module Aws::CognitoIdentityProvider
|
|
4738
4738
|
# Before Amazon Cognito can email your users, it requires additional
|
4739
4739
|
# permissions to call Amazon SES on your behalf. When you update
|
4740
4740
|
# your user pool with this option, Amazon Cognito creates a
|
4741
|
-
# *service-linked role*, which is a type of IAM role, in your
|
4741
|
+
# *service-linked role*, which is a type of IAM role, in your
|
4742
4742
|
# account. This role contains the permissions that allow Amazon
|
4743
4743
|
# Cognito to access Amazon SES and send email messages with your
|
4744
4744
|
# address. For more information about the service-linked role that
|
@@ -4769,7 +4769,7 @@ module Aws::CognitoIdentityProvider
|
|
4769
4769
|
# * Event publishing – Amazon SES can track the number of send,
|
4770
4770
|
# delivery, open, click, bounce, and complaint events for each email
|
4771
4771
|
# sent. Use event publishing to send information about these events
|
4772
|
-
# to other
|
4772
|
+
# to other Amazon Web Services services such as SNS and CloudWatch.
|
4773
4773
|
#
|
4774
4774
|
# * IP pool management – When leasing dedicated IP addresses with
|
4775
4775
|
# Amazon SES, you can create groups of IP addresses, called
|
@@ -4979,17 +4979,17 @@ module Aws::CognitoIdentityProvider
|
|
4979
4979
|
# A map of custom key-value pairs that you can provide as input for
|
4980
4980
|
# any custom workflows that this action triggers.
|
4981
4981
|
#
|
4982
|
-
# You create custom workflows by assigning
|
4983
|
-
#
|
4984
|
-
#
|
4985
|
-
#
|
4986
|
-
#
|
4987
|
-
#
|
4988
|
-
#
|
4989
|
-
#
|
4990
|
-
#
|
4991
|
-
#
|
4992
|
-
#
|
4982
|
+
# You create custom workflows by assigning Lambda functions to user
|
4983
|
+
# pool triggers. When you use the ForgotPassword API action, Amazon
|
4984
|
+
# Cognito invokes any functions that are assigned to the following
|
4985
|
+
# triggers: *pre sign-up*, *custom message*, and *user migration*.
|
4986
|
+
# When Amazon Cognito invokes any of these functions, it passes a JSON
|
4987
|
+
# payload, which the function receives as input. This payload contains
|
4988
|
+
# a `clientMetadata` attribute, which provides the data that you
|
4989
|
+
# assigned to the ClientMetadata parameter in your ForgotPassword
|
4990
|
+
# request. In your function code in Lambda, you can process the
|
4991
|
+
# `clientMetadata` value to enhance your workflow for your specific
|
4992
|
+
# needs.
|
4993
4993
|
#
|
4994
4994
|
# For more information, see [Customizing User Pool Workflows with
|
4995
4995
|
# Lambda Triggers][1] in the *Amazon Cognito Developer Guide*.
|
@@ -4998,10 +4998,10 @@ module Aws::CognitoIdentityProvider
|
|
4998
4998
|
# ClientMetadata parameter:
|
4999
4999
|
#
|
5000
5000
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
5001
|
-
# is available only to
|
5002
|
-
#
|
5003
|
-
#
|
5004
|
-
#
|
5001
|
+
# is available only to Lambda triggers that are assigned to a user
|
5002
|
+
# pool to support custom workflows. If your user pool configuration
|
5003
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
5004
|
+
# purpose.
|
5005
5005
|
#
|
5006
5006
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
5007
5007
|
#
|
@@ -5302,17 +5302,16 @@ module Aws::CognitoIdentityProvider
|
|
5302
5302
|
# A map of custom key-value pairs that you can provide as input for
|
5303
5303
|
# any custom workflows that this action triggers.
|
5304
5304
|
#
|
5305
|
-
# You create custom workflows by assigning
|
5306
|
-
#
|
5307
|
-
#
|
5308
|
-
#
|
5309
|
-
#
|
5310
|
-
#
|
5311
|
-
#
|
5312
|
-
# assigned to the ClientMetadata parameter in your
|
5305
|
+
# You create custom workflows by assigning Lambda functions to user
|
5306
|
+
# pool triggers. When you use the GetUserAttributeVerificationCode API
|
5307
|
+
# action, Amazon Cognito invokes the function that is assigned to the
|
5308
|
+
# *custom message* trigger. When Amazon Cognito invokes this function,
|
5309
|
+
# it passes a JSON payload, which the function receives as input. This
|
5310
|
+
# payload contains a `clientMetadata` attribute, which provides the
|
5311
|
+
# data that you assigned to the ClientMetadata parameter in your
|
5313
5312
|
# GetUserAttributeVerificationCode request. In your function code in
|
5314
|
-
#
|
5315
|
-
#
|
5313
|
+
# Lambda, you can process the `clientMetadata` value to enhance your
|
5314
|
+
# workflow for your specific needs.
|
5316
5315
|
#
|
5317
5316
|
# For more information, see [Customizing User Pool Workflows with
|
5318
5317
|
# Lambda Triggers][1] in the *Amazon Cognito Developer Guide*.
|
@@ -5321,10 +5320,10 @@ module Aws::CognitoIdentityProvider
|
|
5321
5320
|
# ClientMetadata parameter:
|
5322
5321
|
#
|
5323
5322
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
5324
|
-
# is available only to
|
5325
|
-
#
|
5326
|
-
#
|
5327
|
-
#
|
5323
|
+
# is available only to Lambda triggers that are assigned to a user
|
5324
|
+
# pool to support custom workflows. If your user pool configuration
|
5325
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
5326
|
+
# purpose.
|
5328
5327
|
#
|
5329
5328
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
5330
5329
|
#
|
@@ -5800,10 +5799,10 @@ module Aws::CognitoIdentityProvider
|
|
5800
5799
|
# A map of custom key-value pairs that you can provide as input for
|
5801
5800
|
# certain custom workflows that this action triggers.
|
5802
5801
|
#
|
5803
|
-
# You create custom workflows by assigning
|
5804
|
-
#
|
5805
|
-
# Cognito invokes the
|
5806
|
-
#
|
5802
|
+
# You create custom workflows by assigning Lambda functions to user
|
5803
|
+
# pool triggers. When you use the InitiateAuth API action, Amazon
|
5804
|
+
# Cognito invokes the Lambda functions that are specified for various
|
5805
|
+
# triggers. The ClientMetadata value is passed as input to the
|
5807
5806
|
# functions for only the following triggers:
|
5808
5807
|
#
|
5809
5808
|
# * Pre signup
|
@@ -5816,7 +5815,7 @@ module Aws::CognitoIdentityProvider
|
|
5816
5815
|
# passes a JSON payload, which the function receives as input. This
|
5817
5816
|
# payload contains a `validationData` attribute, which provides the
|
5818
5817
|
# data that you assigned to the ClientMetadata parameter in your
|
5819
|
-
# InitiateAuth request. In your function code in
|
5818
|
+
# InitiateAuth request. In your function code in Lambda, you can
|
5820
5819
|
# process the `validationData` value to enhance your workflow for your
|
5821
5820
|
# specific needs.
|
5822
5821
|
#
|
@@ -5843,10 +5842,10 @@ module Aws::CognitoIdentityProvider
|
|
5843
5842
|
# ClientMetadata parameter:
|
5844
5843
|
#
|
5845
5844
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
5846
|
-
# is available only to
|
5847
|
-
#
|
5848
|
-
#
|
5849
|
-
#
|
5845
|
+
# is available only to Lambda triggers that are assigned to a user
|
5846
|
+
# pool to support custom workflows. If your user pool configuration
|
5847
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
5848
|
+
# purpose.
|
5850
5849
|
#
|
5851
5850
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
5852
5851
|
#
|
@@ -6004,11 +6003,11 @@ module Aws::CognitoIdentityProvider
|
|
6004
6003
|
end
|
6005
6004
|
|
6006
6005
|
# This exception is thrown when the Amazon Cognito service encounters an
|
6007
|
-
# invalid
|
6006
|
+
# invalid Lambda response.
|
6008
6007
|
#
|
6009
6008
|
# @!attribute [rw] message
|
6010
6009
|
# The message returned when the Amazon Cognito service throws an
|
6011
|
-
# invalid
|
6010
|
+
# invalid Lambda response exception.
|
6012
6011
|
# @return [String]
|
6013
6012
|
#
|
6014
6013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/InvalidLambdaResponseException AWS API Documentation
|
@@ -6082,7 +6081,7 @@ module Aws::CognitoIdentityProvider
|
|
6082
6081
|
|
6083
6082
|
# This exception is thrown when the trust relationship is invalid for
|
6084
6083
|
# the role provided for SMS configuration. This can happen if you do not
|
6085
|
-
# trust
|
6084
|
+
# trust `cognito-idp.amazonaws.com` or the external ID provided in the
|
6086
6085
|
# role does not match what is provided in the SMS configuration for the
|
6087
6086
|
# user pool.
|
6088
6087
|
#
|
@@ -6113,7 +6112,7 @@ module Aws::CognitoIdentityProvider
|
|
6113
6112
|
include Aws::Structure
|
6114
6113
|
end
|
6115
6114
|
|
6116
|
-
# Specifies the configuration for
|
6115
|
+
# Specifies the configuration for Lambda triggers.
|
6117
6116
|
#
|
6118
6117
|
# @note When making an API call, you may pass LambdaConfigType
|
6119
6118
|
# data as a hash:
|
@@ -6141,23 +6140,23 @@ module Aws::CognitoIdentityProvider
|
|
6141
6140
|
# }
|
6142
6141
|
#
|
6143
6142
|
# @!attribute [rw] pre_sign_up
|
6144
|
-
# A pre-registration
|
6143
|
+
# A pre-registration Lambda trigger.
|
6145
6144
|
# @return [String]
|
6146
6145
|
#
|
6147
6146
|
# @!attribute [rw] custom_message
|
6148
|
-
# A custom Message
|
6147
|
+
# A custom Message Lambda trigger.
|
6149
6148
|
# @return [String]
|
6150
6149
|
#
|
6151
6150
|
# @!attribute [rw] post_confirmation
|
6152
|
-
# A post-confirmation
|
6151
|
+
# A post-confirmation Lambda trigger.
|
6153
6152
|
# @return [String]
|
6154
6153
|
#
|
6155
6154
|
# @!attribute [rw] pre_authentication
|
6156
|
-
# A pre-authentication
|
6155
|
+
# A pre-authentication Lambda trigger.
|
6157
6156
|
# @return [String]
|
6158
6157
|
#
|
6159
6158
|
# @!attribute [rw] post_authentication
|
6160
|
-
# A post-authentication
|
6159
|
+
# A post-authentication Lambda trigger.
|
6161
6160
|
# @return [String]
|
6162
6161
|
#
|
6163
6162
|
# @!attribute [rw] define_auth_challenge
|
@@ -6181,11 +6180,11 @@ module Aws::CognitoIdentityProvider
|
|
6181
6180
|
# @return [String]
|
6182
6181
|
#
|
6183
6182
|
# @!attribute [rw] custom_sms_sender
|
6184
|
-
# A custom SMS sender
|
6183
|
+
# A custom SMS sender Lambda trigger.
|
6185
6184
|
# @return [Types::CustomSMSLambdaVersionConfigType]
|
6186
6185
|
#
|
6187
6186
|
# @!attribute [rw] custom_email_sender
|
6188
|
-
# A custom email sender
|
6187
|
+
# A custom email sender Lambda trigger.
|
6189
6188
|
# @return [Types::CustomEmailLambdaVersionConfigType]
|
6190
6189
|
#
|
6191
6190
|
# @!attribute [rw] kms_key_id
|
@@ -6216,7 +6215,7 @@ module Aws::CognitoIdentityProvider
|
|
6216
6215
|
end
|
6217
6216
|
|
6218
6217
|
# This exception is thrown when a user exceeds the limit for a requested
|
6219
|
-
#
|
6218
|
+
# Amazon Web Services resource.
|
6220
6219
|
#
|
6221
6220
|
# @!attribute [rw] message
|
6222
6221
|
# The message returned when Amazon Cognito throws a limit exceeded
|
@@ -7300,16 +7299,16 @@ module Aws::CognitoIdentityProvider
|
|
7300
7299
|
# A map of custom key-value pairs that you can provide as input for
|
7301
7300
|
# any custom workflows that this action triggers.
|
7302
7301
|
#
|
7303
|
-
# You create custom workflows by assigning
|
7304
|
-
#
|
7305
|
-
#
|
7306
|
-
#
|
7307
|
-
#
|
7302
|
+
# You create custom workflows by assigning Lambda functions to user
|
7303
|
+
# pool triggers. When you use the ResendConfirmationCode API action,
|
7304
|
+
# Amazon Cognito invokes the function that is assigned to the *custom
|
7305
|
+
# message* trigger. When Amazon Cognito invokes this function, it
|
7306
|
+
# passes a JSON payload, which the function receives as input. This
|
7308
7307
|
# payload contains a `clientMetadata` attribute, which provides the
|
7309
7308
|
# data that you assigned to the ClientMetadata parameter in your
|
7310
|
-
# ResendConfirmationCode request. In your function code in
|
7311
|
-
#
|
7312
|
-
#
|
7309
|
+
# ResendConfirmationCode request. In your function code in Lambda, you
|
7310
|
+
# can process the `clientMetadata` value to enhance your workflow for
|
7311
|
+
# your specific needs.
|
7313
7312
|
#
|
7314
7313
|
# For more information, see [Customizing User Pool Workflows with
|
7315
7314
|
# Lambda Triggers][1] in the *Amazon Cognito Developer Guide*.
|
@@ -7318,10 +7317,10 @@ module Aws::CognitoIdentityProvider
|
|
7318
7317
|
# ClientMetadata parameter:
|
7319
7318
|
#
|
7320
7319
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
7321
|
-
# is available only to
|
7322
|
-
#
|
7323
|
-
#
|
7324
|
-
#
|
7320
|
+
# is available only to Lambda triggers that are assigned to a user
|
7321
|
+
# pool to support custom workflows. If your user pool configuration
|
7322
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
7323
|
+
# purpose.
|
7325
7324
|
#
|
7326
7325
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
7327
7326
|
#
|
@@ -7528,18 +7527,18 @@ module Aws::CognitoIdentityProvider
|
|
7528
7527
|
# A map of custom key-value pairs that you can provide as input for
|
7529
7528
|
# any custom workflows that this action triggers.
|
7530
7529
|
#
|
7531
|
-
# You create custom workflows by assigning
|
7532
|
-
#
|
7533
|
-
#
|
7534
|
-
#
|
7535
|
-
#
|
7536
|
-
#
|
7537
|
-
#
|
7538
|
-
#
|
7539
|
-
#
|
7540
|
-
#
|
7541
|
-
#
|
7542
|
-
#
|
7530
|
+
# You create custom workflows by assigning Lambda functions to user
|
7531
|
+
# pool triggers. When you use the RespondToAuthChallenge API action,
|
7532
|
+
# Amazon Cognito invokes any functions that are assigned to the
|
7533
|
+
# following triggers: *post authentication*, *pre token generation*,
|
7534
|
+
# *define auth challenge*, *create auth challenge*, and *verify auth
|
7535
|
+
# challenge*. When Amazon Cognito invokes any of these functions, it
|
7536
|
+
# passes a JSON payload, which the function receives as input. This
|
7537
|
+
# payload contains a `clientMetadata` attribute, which provides the
|
7538
|
+
# data that you assigned to the ClientMetadata parameter in your
|
7539
|
+
# RespondToAuthChallenge request. In your function code in Lambda, you
|
7540
|
+
# can process the `clientMetadata` value to enhance your workflow for
|
7541
|
+
# your specific needs.
|
7543
7542
|
#
|
7544
7543
|
# For more information, see [Customizing User Pool Workflows with
|
7545
7544
|
# Lambda Triggers][1] in the *Amazon Cognito Developer Guide*.
|
@@ -7548,10 +7547,10 @@ module Aws::CognitoIdentityProvider
|
|
7548
7547
|
# ClientMetadata parameter:
|
7549
7548
|
#
|
7550
7549
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
7551
|
-
# is available only to
|
7552
|
-
#
|
7553
|
-
#
|
7554
|
-
#
|
7550
|
+
# is available only to Lambda triggers that are assigned to a user
|
7551
|
+
# pool to support custom workflows. If your user pool configuration
|
7552
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
7553
|
+
# purpose.
|
7555
7554
|
#
|
7556
7555
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
7557
7556
|
#
|
@@ -8267,17 +8266,16 @@ module Aws::CognitoIdentityProvider
|
|
8267
8266
|
# A map of custom key-value pairs that you can provide as input for
|
8268
8267
|
# any custom workflows that this action triggers.
|
8269
8268
|
#
|
8270
|
-
# You create custom workflows by assigning
|
8271
|
-
#
|
8272
|
-
#
|
8273
|
-
#
|
8274
|
-
#
|
8269
|
+
# You create custom workflows by assigning Lambda functions to user
|
8270
|
+
# pool triggers. When you use the SignUp API action, Amazon Cognito
|
8271
|
+
# invokes any functions that are assigned to the following triggers:
|
8272
|
+
# *pre sign-up*, *custom message*, and *post confirmation*. When
|
8273
|
+
# Amazon Cognito invokes any of these functions, it passes a JSON
|
8275
8274
|
# payload, which the function receives as input. This payload contains
|
8276
8275
|
# a `clientMetadata` attribute, which provides the data that you
|
8277
8276
|
# assigned to the ClientMetadata parameter in your SignUp request. In
|
8278
|
-
# your function code in
|
8279
|
-
#
|
8280
|
-
# needs.
|
8277
|
+
# your function code in Lambda, you can process the `clientMetadata`
|
8278
|
+
# value to enhance your workflow for your specific needs.
|
8281
8279
|
#
|
8282
8280
|
# For more information, see [Customizing User Pool Workflows with
|
8283
8281
|
# Lambda Triggers][1] in the *Amazon Cognito Developer Guide*.
|
@@ -8286,10 +8284,10 @@ module Aws::CognitoIdentityProvider
|
|
8286
8284
|
# ClientMetadata parameter:
|
8287
8285
|
#
|
8288
8286
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
8289
|
-
# is available only to
|
8290
|
-
#
|
8291
|
-
#
|
8292
|
-
#
|
8287
|
+
# is available only to Lambda triggers that are assigned to a user
|
8288
|
+
# pool to support custom workflows. If your user pool configuration
|
8289
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
8290
|
+
# purpose.
|
8293
8291
|
#
|
8294
8292
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
8295
8293
|
#
|
@@ -8348,9 +8346,9 @@ module Aws::CognitoIdentityProvider
|
|
8348
8346
|
|
8349
8347
|
# The SMS configuration type that includes the settings the Cognito User
|
8350
8348
|
# Pool needs to call for the Amazon SNS service to send an SMS message
|
8351
|
-
# from your
|
8352
|
-
# Amazon SNS Service by using an
|
8353
|
-
#
|
8349
|
+
# from your account. The Cognito User Pool makes the request to the
|
8350
|
+
# Amazon SNS Service by using an IAM role that you provide for your
|
8351
|
+
# account.
|
8354
8352
|
#
|
8355
8353
|
# @note When making an API call, you may pass SmsConfigurationType
|
8356
8354
|
# data as a hash:
|
@@ -8362,7 +8360,7 @@ module Aws::CognitoIdentityProvider
|
|
8362
8360
|
#
|
8363
8361
|
# @!attribute [rw] sns_caller_arn
|
8364
8362
|
# The Amazon Resource Name (ARN) of the Amazon Simple Notification
|
8365
|
-
# Service (SNS) caller. This is the ARN of the IAM role in your
|
8363
|
+
# Service (SNS) caller. This is the ARN of the IAM role in your
|
8366
8364
|
# account which Cognito will use to send SMS messages. SMS messages
|
8367
8365
|
# are subject to a [spending limit][1].
|
8368
8366
|
#
|
@@ -8383,8 +8381,8 @@ module Aws::CognitoIdentityProvider
|
|
8383
8381
|
# `ExternalId`.
|
8384
8382
|
#
|
8385
8383
|
# For more information about the `ExternalId` of a role, see [How to
|
8386
|
-
# use an external ID when granting access to your
|
8387
|
-
# third party][1]
|
8384
|
+
# use an external ID when granting access to your Amazon Web Services
|
8385
|
+
# resources to a third party][1]
|
8388
8386
|
#
|
8389
8387
|
#
|
8390
8388
|
#
|
@@ -8779,11 +8777,11 @@ module Aws::CognitoIdentityProvider
|
|
8779
8777
|
end
|
8780
8778
|
|
8781
8779
|
# This exception is thrown when the Amazon Cognito service encounters an
|
8782
|
-
# unexpected exception with the
|
8780
|
+
# unexpected exception with the Lambda service.
|
8783
8781
|
#
|
8784
8782
|
# @!attribute [rw] message
|
8785
8783
|
# The message returned when the Amazon Cognito service returns an
|
8786
|
-
# unexpected
|
8784
|
+
# unexpected Lambda exception.
|
8787
8785
|
# @return [String]
|
8788
8786
|
#
|
8789
8787
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/UnexpectedLambdaException AWS API Documentation
|
@@ -9174,16 +9172,16 @@ module Aws::CognitoIdentityProvider
|
|
9174
9172
|
# A map of custom key-value pairs that you can provide as input for
|
9175
9173
|
# any custom workflows that this action triggers.
|
9176
9174
|
#
|
9177
|
-
# You create custom workflows by assigning
|
9178
|
-
#
|
9179
|
-
#
|
9180
|
-
#
|
9181
|
-
#
|
9175
|
+
# You create custom workflows by assigning Lambda functions to user
|
9176
|
+
# pool triggers. When you use the UpdateUserAttributes API action,
|
9177
|
+
# Amazon Cognito invokes the function that is assigned to the *custom
|
9178
|
+
# message* trigger. When Amazon Cognito invokes this function, it
|
9179
|
+
# passes a JSON payload, which the function receives as input. This
|
9182
9180
|
# payload contains a `clientMetadata` attribute, which provides the
|
9183
9181
|
# data that you assigned to the ClientMetadata parameter in your
|
9184
|
-
# UpdateUserAttributes request. In your function code in
|
9185
|
-
#
|
9186
|
-
#
|
9182
|
+
# UpdateUserAttributes request. In your function code in Lambda, you
|
9183
|
+
# can process the `clientMetadata` value to enhance your workflow for
|
9184
|
+
# your specific needs.
|
9187
9185
|
#
|
9188
9186
|
# For more information, see [Customizing User Pool Workflows with
|
9189
9187
|
# Lambda Triggers][1] in the *Amazon Cognito Developer Guide*.
|
@@ -9192,10 +9190,10 @@ module Aws::CognitoIdentityProvider
|
|
9192
9190
|
# ClientMetadata parameter:
|
9193
9191
|
#
|
9194
9192
|
# * Amazon Cognito does not store the ClientMetadata value. This data
|
9195
|
-
# is available only to
|
9196
|
-
#
|
9197
|
-
#
|
9198
|
-
#
|
9193
|
+
# is available only to Lambda triggers that are assigned to a user
|
9194
|
+
# pool to support custom workflows. If your user pool configuration
|
9195
|
+
# does not include triggers, the ClientMetadata parameter serves no
|
9196
|
+
# purpose.
|
9199
9197
|
#
|
9200
9198
|
# * Amazon Cognito does not validate the ClientMetadata value.
|
9201
9199
|
#
|
@@ -9416,8 +9414,8 @@ module Aws::CognitoIdentityProvider
|
|
9416
9414
|
# @!attribute [rw] allowed_o_auth_scopes
|
9417
9415
|
# The allowed OAuth scopes. Possible values provided by OAuth are:
|
9418
9416
|
# `phone`, `email`, `openid`, and `profile`. Possible values provided
|
9419
|
-
# by
|
9420
|
-
# in Resource Servers are also supported.
|
9417
|
+
# by Amazon Web Services are: `aws.cognito.signin.user.admin`. Custom
|
9418
|
+
# scopes created in Resource Servers are also supported.
|
9421
9419
|
# @return [Array<String>]
|
9422
9420
|
#
|
9423
9421
|
# @!attribute [rw] allowed_o_auth_flows_user_pool_client
|
@@ -9673,8 +9671,8 @@ module Aws::CognitoIdentityProvider
|
|
9673
9671
|
# @return [Types::UserPoolPolicyType]
|
9674
9672
|
#
|
9675
9673
|
# @!attribute [rw] lambda_config
|
9676
|
-
# The
|
9677
|
-
#
|
9674
|
+
# The Lambda configuration information from the request to update the
|
9675
|
+
# user pool.
|
9678
9676
|
# @return [Types::LambdaConfigType]
|
9679
9677
|
#
|
9680
9678
|
# @!attribute [rw] auto_verified_attributes
|
@@ -9929,11 +9927,11 @@ module Aws::CognitoIdentityProvider
|
|
9929
9927
|
end
|
9930
9928
|
|
9931
9929
|
# This exception is thrown when the Amazon Cognito service encounters a
|
9932
|
-
# user validation exception with the
|
9930
|
+
# user validation exception with the Lambda service.
|
9933
9931
|
#
|
9934
9932
|
# @!attribute [rw] message
|
9935
9933
|
# The message returned when the Amazon Cognito service returns a user
|
9936
|
-
# validation exception with the
|
9934
|
+
# validation exception with the Lambda service.
|
9937
9935
|
# @return [String]
|
9938
9936
|
#
|
9939
9937
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/UserLambdaValidationException AWS API Documentation
|
@@ -10188,8 +10186,8 @@ module Aws::CognitoIdentityProvider
|
|
10188
10186
|
# @!attribute [rw] allowed_o_auth_scopes
|
10189
10187
|
# The allowed OAuth scopes. Possible values provided by OAuth are:
|
10190
10188
|
# `phone`, `email`, `openid`, and `profile`. Possible values provided
|
10191
|
-
# by
|
10192
|
-
# in Resource Servers are also supported.
|
10189
|
+
# by Amazon Web Services are: `aws.cognito.signin.user.admin`. Custom
|
10190
|
+
# scopes created in Resource Servers are also supported.
|
10193
10191
|
# @return [Array<String>]
|
10194
10192
|
#
|
10195
10193
|
# @!attribute [rw] allowed_o_auth_flows_user_pool_client
|
@@ -10285,7 +10283,7 @@ module Aws::CognitoIdentityProvider
|
|
10285
10283
|
# @return [String]
|
10286
10284
|
#
|
10287
10285
|
# @!attribute [rw] lambda_config
|
10288
|
-
# The
|
10286
|
+
# The Lambda configuration information in a user pool description.
|
10289
10287
|
# @return [Types::LambdaConfigType]
|
10290
10288
|
#
|
10291
10289
|
# @!attribute [rw] status
|
@@ -10370,7 +10368,7 @@ module Aws::CognitoIdentityProvider
|
|
10370
10368
|
# @return [Types::UserPoolPolicyType]
|
10371
10369
|
#
|
10372
10370
|
# @!attribute [rw] lambda_config
|
10373
|
-
# The
|
10371
|
+
# The Lambda triggers associated with the user pool.
|
10374
10372
|
# @return [Types::LambdaConfigType]
|
10375
10373
|
#
|
10376
10374
|
# @!attribute [rw] status
|
@@ -10469,11 +10467,11 @@ module Aws::CognitoIdentityProvider
|
|
10469
10467
|
# uses to send SMS messages is not properly configured. For more
|
10470
10468
|
# information, see [SmsConfigurationType][1].
|
10471
10469
|
#
|
10472
|
-
# * SNSSandbox - The
|
10470
|
+
# * SNSSandbox - The account is in SNS Sandbox and messages won’t
|
10473
10471
|
# reach unverified end users. This parameter won’t get populated
|
10474
10472
|
# with SNSSandbox if the IAM user creating the user pool doesn’t
|
10475
|
-
# have SNS permissions. To learn how to move your
|
10476
|
-
#
|
10473
|
+
# have SNS permissions. To learn how to move your account out of the
|
10474
|
+
# sandbox, see [Moving out of the SMS sandbox][2].
|
10477
10475
|
#
|
10478
10476
|
#
|
10479
10477
|
#
|