Struct rusoto_dms::EventSubscription[][src]

pub struct EventSubscription {
    pub cust_subscription_id: Option<String>,
    pub customer_aws_id: Option<String>,
    pub enabled: Option<bool>,
    pub event_categories_list: Option<Vec<String>>,
    pub sns_topic_arn: Option<String>,
    pub source_ids_list: Option<Vec<String>>,
    pub source_type: Option<String>,
    pub status: Option<String>,
    pub subscription_creation_time: Option<String>,
}

Fields

The AWS DMS event notification subscription Id.

The AWS customer account associated with the AWS DMS event notification subscription.

Boolean value that indicates if the event subscription is enabled.

A lists of event categories.

The topic ARN of the AWS DMS event notification subscription.

A list of source Ids for the event subscription.

The type of AWS DMS resource that generates events.

Valid values: replication-instance | replication-server | security-group | migration-task

The status of the AWS DMS event notification subscription.

Constraints:

Can be one of the following: creating | modifying | deleting | active | no-permission | topic-not-exist

The status "no-permission" indicates that AWS DMS no longer has permission to post to the SNS topic. The status "topic-not-exist" indicates that the topic was deleted after the subscription was created.

The time the RDS event notification subscription was created.

Trait Implementations

impl Default for EventSubscription
[src]

Returns the "default value" for a type. Read more

impl Debug for EventSubscription
[src]

Formats the value using the given formatter. Read more

impl Clone for EventSubscription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EventSubscription
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations