interface CfnUserPoolRegionalConfigurationAttachmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Cognito.CfnUserPoolRegionalConfigurationAttachmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscognito#CfnUserPoolRegionalConfigurationAttachmentMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cognito.CfnUserPoolRegionalConfigurationAttachmentMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cognito.CfnUserPoolRegionalConfigurationAttachmentMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cognito » CfnUserPoolRegionalConfigurationAttachmentMixinProps |
Properties for CfnUserPoolRegionalConfigurationAttachmentPropsMixin.
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/cfn-property-mixins';
const cfnUserPoolRegionalConfigurationAttachmentMixinProps: cognito.CfnUserPoolRegionalConfigurationAttachmentMixinProps = {
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',
userPoolId: 'userPoolId',
userPoolTags: {
userPoolTagsKey: 'userPoolTags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| email | IResolvable | Email | |
| lambda | IResolvable | Lambda | |
| sms | IResolvable | Sms | |
| status? | string | The status of the replica. |
| user | string | |
| user | { [string]: 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.
userPoolId?
Type:
string
(optional)
userPoolTags?
Type:
{ [string]: string }
(optional)

.NET
Go
Java
Python
TypeScript