Interface CfnUserPoolRegionalConfigurationAttachment.SmsConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserPoolRegionalConfigurationAttachment.SmsConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnUserPoolRegionalConfigurationAttachment

@Stability(Stable) public static interface CfnUserPoolRegionalConfigurationAttachment.SmsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 SmsConfigurationProperty smsConfigurationProperty = SmsConfigurationProperty.builder()
         .eumsSms(EumsSmsConfigurationProperty.builder()
                 .callerArn("callerArn")
                 // the properties below are optional
                 .configurationSetName("configurationSetName")
                 .externalId("externalId")
                 .inEntityId("inEntityId")
                 .inTemplateId("inTemplateId")
                 .originationIdentity("originationIdentity")
                 .region("region")
                 .build())
         .externalId("externalId")
         .snsCallerArn("snsCallerArn")
         .snsRegion("snsRegion")
         .build();
 

See Also: