package awslookoutmetrics // 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 "github.com/aws/aws-cdk-go/awscdk" // // sNSConfigurationProperty := &SNSConfigurationProperty{ // RoleArn: jsii.String("roleArn"), // SnsTopicArn: jsii.String("snsTopicArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-alert-snsconfiguration.html // type CfnAlert_SNSConfigurationProperty struct { // The ARN of the IAM role that has access to the target SNS topic. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-alert-snsconfiguration.html#cfn-lookoutmetrics-alert-snsconfiguration-rolearn // RoleArn *string `field:"required" json:"roleArn" yaml:"roleArn"` // The ARN of the target SNS topic. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-alert-snsconfiguration.html#cfn-lookoutmetrics-alert-snsconfiguration-snstopicarn // SnsTopicArn *string `field:"required" json:"snsTopicArn" yaml:"snsTopicArn"` }