Amazon Cognito · Schema
ResendConfirmationCodeRequest
Represents the request to resend the confirmation code.
AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity
Properties
| Name | Type | Description |
|---|---|---|
| ClientId | object | |
| SecretHash | object | |
| UserContextData | object | |
| Username | object | |
| AnalyticsMetadata | object | |
| ClientMetadata | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-schema/user-pools-resend-confirmation-code-request-schema.json",
"title": "ResendConfirmationCodeRequest",
"description": "Represents the request to resend the confirmation code.",
"type": "object",
"properties": {
"ClientId": {
"allOf": [
{
"$ref": "#/components/schemas/ClientIdType"
},
{
"description": "The ID of the client associated with the user pool."
}
]
},
"SecretHash": {
"allOf": [
{
"$ref": "#/components/schemas/SecretHashType"
},
{
"description": "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."
}
]
},
"UserContextData": {
"allOf": [
{
"$ref": "#/components/schemas/UserContextDataType"
},
{
"description": "Contextual data about your user session, such as the device fingerprint, IP address, or location. Amazon Cognito advanced security evaluates the risk of an authentication event based on the context that your app generates and passes to Amazon Cognito when it makes API requests."
}
]
},
"Username": {
"allOf": [
{
"$ref": "#/components/schemas/UsernameType"
},
{
"description": "The <code>username</code> attribute of the user to whom you want to resend a confirmation code."
}
]
},
"AnalyticsMetadata": {
"allOf": [
{
"$ref": "#/components/schemas/AnalyticsMetadataType"
},
{
"description": "The Amazon Pinpoint analytics metadata that contributes to your metrics for <code>ResendConfirmationCode</code> calls."
}
]
},
"ClientMetadata": {
"allOf": [
{
"$ref": "#/components/schemas/ClientMetadataType"
},
{
"description": "<p>A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers.</p> <p>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 <i>custom message</i> trigger. When Amazon Cognito invokes this function, it passes a JSON payload, which the function receives as input. This payload contains a <code>clientMetadata</code> 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 <code>clientMetadata</code> value to enhance your workflow for your specific needs.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html\"> Customizing user pool Workflows with Lambda Triggers</a> in the <i>Amazon Cognito Developer Guide</i>.</p> <note> <p>When you use the ClientMetadata parameter, remember that Amazon Cognito won't do the following:</p> <ul> <li> <p>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 doesn't include triggers, the ClientMetadata parameter serves no purpose.</p> </li> <li> <p>Validate the ClientMetadata value.</p> </li> <li> <p>Encrypt the ClientMetadata value. Don't use Amazon Cognito to provide sensitive information.</p> </li> </ul> </note>"
}
]
}
},
"required": [
"ClientId",
"Username"
]
}