Interface CfnUserPoolRegionalConfigurationAttachmentProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserPoolRegionalConfigurationAttachmentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:23.053Z")
@Stability(Stable)
public interface CfnUserPoolRegionalConfigurationAttachmentProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.cognito.*;
CfnUserPoolRegionalConfigurationAttachmentProps cfnUserPoolRegionalConfigurationAttachmentProps = CfnUserPoolRegionalConfigurationAttachmentProps.builder()
.userPoolId("userPoolId")
// the properties below are optional
.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")
.userPoolTags(Map.of(
"userPoolTagsKey", "userPoolTags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserPoolRegionalConfigurationAttachmentPropsstatic final classAn implementation forCfnUserPoolRegionalConfigurationAttachmentProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnUserPoolRegionalConfigurationAttachment.EmailConfigurationPropertydefault ObjectReturns union: eitherIResolvableorCfnUserPoolRegionalConfigurationAttachment.LambdaConfigPropertydefault ObjectReturns union: eitherIResolvableorCfnUserPoolRegionalConfigurationAttachment.SmsConfigurationPropertydefault StringThe status of the replica.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUserPoolId
- See Also:
-
getEmailConfiguration
Returns union: eitherIResolvableorCfnUserPoolRegionalConfigurationAttachment.EmailConfigurationProperty- See Also:
-
getLambdaConfig
Returns union: eitherIResolvableorCfnUserPoolRegionalConfigurationAttachment.LambdaConfigProperty- See Also:
-
getSmsConfiguration
Returns union: eitherIResolvableorCfnUserPoolRegionalConfigurationAttachment.SmsConfigurationProperty- See Also:
-
getStatus
The status of the replica.Set to ACTIVE or INACTIVE.
- See Also:
-
getUserPoolTags
- See Also:
-
builder
-