package awsiot // Information about the targets to which audit notifications are sent. // // 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" // // auditNotificationTargetProperty := &AuditNotificationTargetProperty{ // Enabled: jsii.Boolean(false), // RoleArn: jsii.String("roleArn"), // TargetArn: jsii.String("targetArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-accountauditconfiguration-auditnotificationtarget.html // type CfnAccountAuditConfiguration_AuditNotificationTargetProperty struct { // True if notifications to the target are enabled. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-accountauditconfiguration-auditnotificationtarget.html#cfn-iot-accountauditconfiguration-auditnotificationtarget-enabled // Enabled interface{} `field:"optional" json:"enabled" yaml:"enabled"` // The ARN of the role that grants permission to send notifications to the target. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-accountauditconfiguration-auditnotificationtarget.html#cfn-iot-accountauditconfiguration-auditnotificationtarget-rolearn // RoleArn *string `field:"optional" json:"roleArn" yaml:"roleArn"` // The ARN of the target (SNS topic) to which audit notifications are sent. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-accountauditconfiguration-auditnotificationtarget.html#cfn-iot-accountauditconfiguration-auditnotificationtarget-targetarn // TargetArn *string `field:"optional" json:"targetArn" yaml:"targetArn"` }