Interface CfnAlert.SNSConfigurationProperty

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

@Stability(Stable) public static interface CfnAlert.SNSConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains information about the SNS topic to which you want to send your alerts and the IAM role that has access to that topic.

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.lookoutmetrics.*;
 SNSConfigurationProperty sNSConfigurationProperty = SNSConfigurationProperty.builder()
         .roleArn("roleArn")
         .snsTopicArn("snsTopicArn")
         .build();