package awsdms import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnEventSubscription`. // // 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" // // cfnEventSubscriptionProps := &CfnEventSubscriptionProps{ // SnsTopicArn: jsii.String("snsTopicArn"), // // // the properties below are optional // Enabled: jsii.Boolean(false), // EventCategories: []*string{ // jsii.String("eventCategories"), // }, // SourceIds: []*string{ // jsii.String("sourceIds"), // }, // SourceType: jsii.String("sourceType"), // SubscriptionName: jsii.String("subscriptionName"), // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html // type CfnEventSubscriptionProps struct { // The Amazon Resource Name (ARN) of the Amazon SNS topic created for event notification. // // The ARN is created by Amazon SNS when you create a topic and subscribe to it. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn // SnsTopicArn *string `field:"required" json:"snsTopicArn" yaml:"snsTopicArn"` // Indicates whether to activate the subscription. // // If you don't specify this property, AWS CloudFormation activates the subscription. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled // Enabled interface{} `field:"optional" json:"enabled" yaml:"enabled"` // A list of event categories for a source type that you want to subscribe to. // // If you don't specify this property, you are notified about all event categories. For more information, see [Working with Events and Notifications](https://docs.aws.amazon.com//dms/latest/userguide/CHAP_Events.html) in the *AWS DMS User Guide* . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-eventcategories // EventCategories *[]*string `field:"optional" json:"eventCategories" yaml:"eventCategories"` // A list of identifiers for which AWS DMS provides notification events. // // If you don't specify a value, notifications are provided for all sources. // // If you specify multiple values, they must be of the same type. For example, if you specify a database instance ID, then all of the other values must be database instance IDs. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourceids // SourceIds *[]*string `field:"optional" json:"sourceIds" yaml:"sourceIds"` // The type of AWS DMS resource that generates the events. // // For example, if you want to be notified of events generated by a replication instance, you set this parameter to `replication-instance` . If this value isn't specified, all events are returned. // // *Valid values* : `replication-instance` | `replication-task`. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype // SourceType *string `field:"optional" json:"sourceType" yaml:"sourceType"` // The name of the AWS DMS event notification subscription. // // This name must be less than 255 characters. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname // SubscriptionName *string `field:"optional" json:"subscriptionName" yaml:"subscriptionName"` // One or more tags to be assigned to the event subscription. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }