[][src]Struct rusoto_rds::ModifyEventSubscriptionMessage

pub struct ModifyEventSubscriptionMessage {
    pub enabled: Option<bool>,
    pub event_categories: Option<Vec<String>>,
    pub sns_topic_arn: Option<String>,
    pub source_type: Option<String>,
    pub subscription_name: String,
}

Fields

enabled: Option<bool>

A value that indicates whether to activate the subscription.

event_categories: Option<Vec<String>>

A list of event categories for a source type (SourceType) that you want to subscribe to. You can see a list of the categories for a given source type in Events in the Amazon RDS User Guide or by using the DescribeEventCategories operation.

sns_topic_arn: Option<String>

The Amazon Resource Name (ARN) of the SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it.

source_type: Option<String>

The type of source that is generating the events. For example, if you want to be notified of events generated by a DB instance, you would set this parameter to db-instance. If this value isn't specified, all events are returned.

Valid values: db-instance | db-cluster | db-parameter-group | db-security-group | db-snapshot | db-cluster-snapshot

subscription_name: String

The name of the RDS event notification subscription.

Trait Implementations

impl Clone for ModifyEventSubscriptionMessage[src]

impl Debug for ModifyEventSubscriptionMessage[src]

impl Default for ModifyEventSubscriptionMessage[src]

impl PartialEq<ModifyEventSubscriptionMessage> for ModifyEventSubscriptionMessage[src]

impl StructuralPartialEq for ModifyEventSubscriptionMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.