package awsfms // Properties for defining a `CfnNotificationChannel`. // // 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" // // cfnNotificationChannelProps := &CfnNotificationChannelProps{ // SnsRoleName: jsii.String("snsRoleName"), // SnsTopicArn: jsii.String("snsTopicArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html // type CfnNotificationChannelProps struct { // The Amazon Resource Name (ARN) of the IAM role that allows Amazon SNS to record AWS Firewall Manager activity. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snsrolename // SnsRoleName *string `field:"required" json:"snsRoleName" yaml:"snsRoleName"` // The Amazon Resource Name (ARN) of the SNS topic that collects notifications from AWS Firewall Manager . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-notificationchannel.html#cfn-fms-notificationchannel-snstopicarn // SnsTopicArn *string `field:"required" json:"snsTopicArn" yaml:"snsTopicArn"` }