Interface CfnUserPoolRegionalConfigurationAttachmentMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserPoolRegionalConfigurationAttachmentMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:40.334Z")
@Stability(Stable)
public interface CfnUserPoolRegionalConfigurationAttachmentMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnUserPoolRegionalConfigurationAttachmentPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cognito.*;
CfnUserPoolRegionalConfigurationAttachmentMixinProps cfnUserPoolRegionalConfigurationAttachmentMixinProps = CfnUserPoolRegionalConfigurationAttachmentMixinProps.builder()
.emailConfiguration(EmailConfigurationProperty.builder()
.configurationSet("configurationSet")
.emailSendingAccount("emailSendingAccount")
.from("from")
.replyToEmailAddress("replyToEmailAddress")
.sourceArn("sourceArn")
.build())
.lambdaConfig(LambdaConfigProperty.builder()
.createAuthChallenge("createAuthChallenge")
.customEmailSender(CustomEmailSenderProperty.builder()
.lambdaArn("lambdaArn")
.lambdaVersion("lambdaVersion")
.build())
.customMessage("customMessage")
.customSmsSender(CustomSMSSenderProperty.builder()
.lambdaArn("lambdaArn")
.lambdaVersion("lambdaVersion")
.build())
.defineAuthChallenge("defineAuthChallenge")
.inboundFederation(InboundFederationProperty.builder()
.lambdaArn("lambdaArn")
.lambdaVersion("lambdaVersion")
.build())
.kmsKeyId("kmsKeyId")
.postAuthentication("postAuthentication")
.postConfirmation("postConfirmation")
.preAuthentication("preAuthentication")
.preSignUp("preSignUp")
.preTokenGeneration("preTokenGeneration")
.preTokenGenerationConfig(PreTokenGenerationConfigProperty.builder()
.lambdaArn("lambdaArn")
.lambdaVersion("lambdaVersion")
.build())
.userMigration("userMigration")
.verifyAuthChallengeResponse("verifyAuthChallengeResponse")
.build())
.smsConfiguration(SmsConfigurationProperty.builder()
.externalId("externalId")
.snsCallerArn("snsCallerArn")
.snsRegion("snsRegion")
.build())
.status("status")
.userPoolId("userPoolId")
.userPoolTags(Map.of(
"userPoolTagsKey", "userPoolTags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserPoolRegionalConfigurationAttachmentMixinPropsstatic final classAn implementation forCfnUserPoolRegionalConfigurationAttachmentMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnUserPoolRegionalConfigurationAttachmentPropsMixin.EmailConfigurationPropertydefault ObjectReturns union: eitherIResolvableorCfnUserPoolRegionalConfigurationAttachmentPropsMixin.LambdaConfigPropertydefault ObjectReturns union: eitherIResolvableorCfnUserPoolRegionalConfigurationAttachmentPropsMixin.SmsConfigurationPropertydefault StringThe status of the replica.default StringMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEmailConfiguration
Returns union: eitherIResolvableorCfnUserPoolRegionalConfigurationAttachmentPropsMixin.EmailConfigurationProperty- See Also:
-
getLambdaConfig
Returns union: eitherIResolvableorCfnUserPoolRegionalConfigurationAttachmentPropsMixin.LambdaConfigProperty- See Also:
-
getSmsConfiguration
Returns union: eitherIResolvableorCfnUserPoolRegionalConfigurationAttachmentPropsMixin.SmsConfigurationProperty- See Also:
-
getStatus
The status of the replica.Set to ACTIVE or INACTIVE.
- See Also:
-
getUserPoolId
- See Also:
-
getUserPoolTags
- See Also:
-
builder
-