Interface CfnAlertPropsMixin.SNSConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAlertPropsMixin.SNSConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAlertPropsMixin
@Stability(Stable)
public static interface CfnAlertPropsMixin.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.mixins.preview.services.lookoutmetrics.mixins.*;
SNSConfigurationProperty sNSConfigurationProperty = SNSConfigurationProperty.builder()
.roleArn("roleArn")
.snsTopicArn("snsTopicArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAlertPropsMixin.SNSConfigurationPropertystatic final classAn implementation forCfnAlertPropsMixin.SNSConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRoleArn
The ARN of the IAM role that has access to the target SNS topic.- See Also:
-
getSnsTopicArn
The ARN of the target SNS topic.- See Also:
-
builder
-