Struct rusoto_rds::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 event_subscription_arn: Option<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>,
}

Contains the results of a successful invocation of the DescribeEventSubscriptions action.

Fields

The RDS event notification subscription Id.

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

A Boolean value indicating if the subscription is enabled. True indicates the subscription is enabled.

A list of event categories for the RDS event notification subscription.

The Amazon Resource Name (ARN) for the event subscription.

The topic ARN of the RDS event notification subscription.

A list of source IDs for the RDS event notification subscription.

The source type for the RDS event notification subscription.

The status of the RDS 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 RDS 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]

[src]

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

impl Debug for EventSubscription
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for EventSubscription
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations