Interface CfnUserPool.SmsConfigurationProperty

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

@Stability(Stable) public static interface CfnUserPool.SmsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The SMS configuration type that includes the settings the Cognito User Pool needs to call for the Amazon SNS service to send an SMS message from your AWS account .

The Cognito User Pool makes the request to the Amazon SNS Service by using an IAM role that you provide for your AWS account .

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()
         .externalId("externalId")
         .snsCallerArn("snsCallerArn")
         .snsRegion("snsRegion")
         .build();
 

See Also: