libZSservicesZSamazonka-cognito-idpZSamazonka-cognito-idp
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CognitoIdentityProvider.ResendConfirmationCode

Description

Resends the confirmation (for confirmation of registration) to a specific user in the user pool.

This action might generate an SMS text message. Starting June 1, 2021, U.S. telecom carriers require that you register an origination phone number before you can send SMS messages to U.S. phone numbers. If you use SMS text messages in Amazon Cognito, you must register a phone number with Amazon Pinpoint. Cognito will use the the registered number automatically. Otherwise, Cognito users that must receive SMS messages might be unable to sign up, activate their accounts, or sign in.

If you have never used SMS text messages with Amazon Cognito or any other Amazon Web Service, Amazon SNS might place your account in SMS sandbox. In <https:docs.aws.amazon.comsnslatestdgsns-sms-sandbox.html sandbox mode> , you’ll have limitations, such as sending messages to only verified phone numbers. After testing in the sandbox environment, you can move out of the SMS sandbox and into production. For more information, see SMS message settings for Cognito User Pools in the Amazon Cognito Developer Guide.

Synopsis

Creating a Request

data ResendConfirmationCode Source #

Represents the request to resend the confirmation code.

See: newResendConfirmationCode smart constructor.

Constructors

ResendConfirmationCode' 

Fields

  • clientMetadata :: Maybe (HashMap Text Text)

    A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers.

    You create custom workflows by assigning Lambda functions to user pool triggers. When you use the ResendConfirmationCode API action, Amazon Cognito invokes the function that is assigned to the custom message trigger. When Amazon Cognito invokes this function, it passes a JSON payload, which the function receives as input. This payload contains a clientMetadata attribute, which provides the data that you assigned to the ClientMetadata parameter in your ResendConfirmationCode request. In your function code in Lambda, you can process the clientMetadata value to enhance your workflow for your specific needs.

    For more information, see Customizing User Pool Workflows with Lambda Triggers in the Amazon Cognito Developer Guide.

    Take the following limitations into consideration when you use the ClientMetadata parameter:

    • Amazon Cognito does not store the ClientMetadata value. This data is available only to Lambda triggers that are assigned to a user pool to support custom workflows. If your user pool configuration does not include triggers, the ClientMetadata parameter serves no purpose.
    • Amazon Cognito does not validate the ClientMetadata value.
    • Amazon Cognito does not encrypt the the ClientMetadata value, so don't use it to provide sensitive information.
  • analyticsMetadata :: Maybe AnalyticsMetadataType

    The Amazon Pinpoint analytics metadata for collecting metrics for ResendConfirmationCode calls.

  • userContextData :: Maybe UserContextDataType

    Contextual data such as the user's device fingerprint, IP address, or location used for evaluating the risk of an unexpected event by Amazon Cognito advanced security.

  • secretHash :: Maybe (Sensitive Text)

    A keyed-hash message authentication code (HMAC) calculated using the secret key of a user pool client and username plus the client ID in the message.

  • clientId :: Sensitive Text

    The ID of the client associated with the user pool.

  • username :: Sensitive Text

    The user name of the user to whom you wish to resend a confirmation code.

Instances

Instances details
Eq ResendConfirmationCode Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

Show ResendConfirmationCode Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

Generic ResendConfirmationCode Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

Associated Types

type Rep ResendConfirmationCode :: Type -> Type #

NFData ResendConfirmationCode Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

Methods

rnf :: ResendConfirmationCode -> () #

Hashable ResendConfirmationCode Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

ToJSON ResendConfirmationCode Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

AWSRequest ResendConfirmationCode Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

Associated Types

type AWSResponse ResendConfirmationCode #

ToHeaders ResendConfirmationCode Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

ToPath ResendConfirmationCode Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

ToQuery ResendConfirmationCode Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

type Rep ResendConfirmationCode Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

type Rep ResendConfirmationCode = D1 ('MetaData "ResendConfirmationCode" "Amazonka.CognitoIdentityProvider.ResendConfirmationCode" "libZSservicesZSamazonka-cognito-idpZSamazonka-cognito-idp" 'False) (C1 ('MetaCons "ResendConfirmationCode'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientMetadata") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: (S1 ('MetaSel ('Just "analyticsMetadata") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AnalyticsMetadataType)) :*: S1 ('MetaSel ('Just "userContextData") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe UserContextDataType)))) :*: (S1 ('MetaSel ('Just "secretHash") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "clientId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Sensitive Text)) :*: S1 ('MetaSel ('Just "username") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Sensitive Text))))))
type AWSResponse ResendConfirmationCode Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

newResendConfirmationCode Source #

Create a value of ResendConfirmationCode with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:clientMetadata:ResendConfirmationCode', resendConfirmationCode_clientMetadata - A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers.

You create custom workflows by assigning Lambda functions to user pool triggers. When you use the ResendConfirmationCode API action, Amazon Cognito invokes the function that is assigned to the custom message trigger. When Amazon Cognito invokes this function, it passes a JSON payload, which the function receives as input. This payload contains a clientMetadata attribute, which provides the data that you assigned to the ClientMetadata parameter in your ResendConfirmationCode request. In your function code in Lambda, you can process the clientMetadata value to enhance your workflow for your specific needs.

For more information, see Customizing User Pool Workflows with Lambda Triggers in the Amazon Cognito Developer Guide.

Take the following limitations into consideration when you use the ClientMetadata parameter:

  • Amazon Cognito does not store the ClientMetadata value. This data is available only to Lambda triggers that are assigned to a user pool to support custom workflows. If your user pool configuration does not include triggers, the ClientMetadata parameter serves no purpose.
  • Amazon Cognito does not validate the ClientMetadata value.
  • Amazon Cognito does not encrypt the the ClientMetadata value, so don't use it to provide sensitive information.

$sel:analyticsMetadata:ResendConfirmationCode', resendConfirmationCode_analyticsMetadata - The Amazon Pinpoint analytics metadata for collecting metrics for ResendConfirmationCode calls.

$sel:userContextData:ResendConfirmationCode', resendConfirmationCode_userContextData - Contextual data such as the user's device fingerprint, IP address, or location used for evaluating the risk of an unexpected event by Amazon Cognito advanced security.

$sel:secretHash:ResendConfirmationCode', resendConfirmationCode_secretHash - A keyed-hash message authentication code (HMAC) calculated using the secret key of a user pool client and username plus the client ID in the message.

$sel:clientId:ResendConfirmationCode', resendConfirmationCode_clientId - The ID of the client associated with the user pool.

$sel:username:ResendConfirmationCode', resendConfirmationCode_username - The user name of the user to whom you wish to resend a confirmation code.

Request Lenses

resendConfirmationCode_clientMetadata :: Lens' ResendConfirmationCode (Maybe (HashMap Text Text)) Source #

A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers.

You create custom workflows by assigning Lambda functions to user pool triggers. When you use the ResendConfirmationCode API action, Amazon Cognito invokes the function that is assigned to the custom message trigger. When Amazon Cognito invokes this function, it passes a JSON payload, which the function receives as input. This payload contains a clientMetadata attribute, which provides the data that you assigned to the ClientMetadata parameter in your ResendConfirmationCode request. In your function code in Lambda, you can process the clientMetadata value to enhance your workflow for your specific needs.

For more information, see Customizing User Pool Workflows with Lambda Triggers in the Amazon Cognito Developer Guide.

Take the following limitations into consideration when you use the ClientMetadata parameter:

  • Amazon Cognito does not store the ClientMetadata value. This data is available only to Lambda triggers that are assigned to a user pool to support custom workflows. If your user pool configuration does not include triggers, the ClientMetadata parameter serves no purpose.
  • Amazon Cognito does not validate the ClientMetadata value.
  • Amazon Cognito does not encrypt the the ClientMetadata value, so don't use it to provide sensitive information.

resendConfirmationCode_analyticsMetadata :: Lens' ResendConfirmationCode (Maybe AnalyticsMetadataType) Source #

The Amazon Pinpoint analytics metadata for collecting metrics for ResendConfirmationCode calls.

resendConfirmationCode_userContextData :: Lens' ResendConfirmationCode (Maybe UserContextDataType) Source #

Contextual data such as the user's device fingerprint, IP address, or location used for evaluating the risk of an unexpected event by Amazon Cognito advanced security.

resendConfirmationCode_secretHash :: Lens' ResendConfirmationCode (Maybe Text) Source #

A keyed-hash message authentication code (HMAC) calculated using the secret key of a user pool client and username plus the client ID in the message.

resendConfirmationCode_clientId :: Lens' ResendConfirmationCode Text Source #

The ID of the client associated with the user pool.

resendConfirmationCode_username :: Lens' ResendConfirmationCode Text Source #

The user name of the user to whom you wish to resend a confirmation code.

Destructuring the Response

data ResendConfirmationCodeResponse Source #

The response from the server when the Amazon Cognito Your User Pools service makes the request to resend a confirmation code.

See: newResendConfirmationCodeResponse smart constructor.

Constructors

ResendConfirmationCodeResponse' 

Fields

Instances

Instances details
Eq ResendConfirmationCodeResponse Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

Read ResendConfirmationCodeResponse Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

Show ResendConfirmationCodeResponse Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

Generic ResendConfirmationCodeResponse Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

Associated Types

type Rep ResendConfirmationCodeResponse :: Type -> Type #

NFData ResendConfirmationCodeResponse Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

type Rep ResendConfirmationCodeResponse Source # 
Instance details

Defined in Amazonka.CognitoIdentityProvider.ResendConfirmationCode

type Rep ResendConfirmationCodeResponse = D1 ('MetaData "ResendConfirmationCodeResponse" "Amazonka.CognitoIdentityProvider.ResendConfirmationCode" "libZSservicesZSamazonka-cognito-idpZSamazonka-cognito-idp" 'False) (C1 ('MetaCons "ResendConfirmationCodeResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "codeDeliveryDetails") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CodeDeliveryDetailsType)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newResendConfirmationCodeResponse Source #

Create a value of ResendConfirmationCodeResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:codeDeliveryDetails:ResendConfirmationCodeResponse', resendConfirmationCodeResponse_codeDeliveryDetails - The code delivery details returned by the server in response to the request to resend the confirmation code.

$sel:httpStatus:ResendConfirmationCodeResponse', resendConfirmationCodeResponse_httpStatus - The response's http status code.

Response Lenses

resendConfirmationCodeResponse_codeDeliveryDetails :: Lens' ResendConfirmationCodeResponse (Maybe CodeDeliveryDetailsType) Source #

The code delivery details returned by the server in response to the request to resend the confirmation code.