interface CfnUserPoolRegionalConfigurationAttachmentProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Cognito.CfnUserPoolRegionalConfigurationAttachmentProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscognito#CfnUserPoolRegionalConfigurationAttachmentProps |
Java | software.amazon.awscdk.services.cognito.CfnUserPoolRegionalConfigurationAttachmentProps |
Python | aws_cdk.aws_cognito.CfnUserPoolRegionalConfigurationAttachmentProps |
TypeScript | aws-cdk-lib » aws_cognito » CfnUserPoolRegionalConfigurationAttachmentProps |
Properties for defining a CfnUserPoolRegionalConfigurationAttachment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cognito as cognito } from 'aws-cdk-lib';
const cfnUserPoolRegionalConfigurationAttachmentProps: cognito.CfnUserPoolRegionalConfigurationAttachmentProps = {
userPoolId: 'userPoolId',
// the properties below are optional
emailConfiguration: {
configurationSet: 'configurationSet',
emailSendingAccount: 'emailSendingAccount',
from: 'from',
replyToEmailAddress: 'replyToEmailAddress',
sourceArn: 'sourceArn',
},
lambdaConfig: {
createAuthChallenge: 'createAuthChallenge',
customEmailSender: {
lambdaArn: 'lambdaArn',
lambdaVersion: 'lambdaVersion',
},
customMessage: 'customMessage',
customSmsSender: {
lambdaArn: 'lambdaArn',
lambdaVersion: 'lambdaVersion',
},
defineAuthChallenge: 'defineAuthChallenge',
inboundFederation: {
lambdaArn: 'lambdaArn',
lambdaVersion: 'lambdaVersion',
},
kmsKeyId: 'kmsKeyId',
postAuthentication: 'postAuthentication',
postConfirmation: 'postConfirmation',
preAuthentication: 'preAuthentication',
preSignUp: 'preSignUp',
preTokenGeneration: 'preTokenGeneration',
preTokenGenerationConfig: {
lambdaArn: 'lambdaArn',
lambdaVersion: 'lambdaVersion',
},
userMigration: 'userMigration',
verifyAuthChallengeResponse: 'verifyAuthChallengeResponse',
},
smsConfiguration: {
externalId: 'externalId',
snsCallerArn: 'snsCallerArn',
snsRegion: 'snsRegion',
},
status: 'status',
userPoolTags: {
userPoolTagsKey: 'userPoolTags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| user | string | |
| email | IResolvable | Email | |
| lambda | IResolvable | Lambda | |
| sms | IResolvable | Sms | |
| status? | string | The status of the replica. |
| user | { [string]: string } |
userPoolId
Type:
string
emailConfiguration?
Type:
IResolvable | Email
(optional)
lambdaConfig?
Type:
IResolvable | Lambda
(optional)
smsConfiguration?
Type:
IResolvable | Sms
(optional)
status?
Type:
string
(optional)
The status of the replica.
Set to ACTIVE or INACTIVE.
userPoolTags?
Type:
{ [string]: string }
(optional)

.NET
Go
Java
Python
TypeScript