Struct rusoto_rds::AddSourceIdentifierToSubscriptionMessage[][src]

pub struct AddSourceIdentifierToSubscriptionMessage {
    pub source_identifier: String,
    pub subscription_name: String,
}

Fields

The identifier of the event source to be added.

Constraints:

  • If the source type is a DB instance, then a DBInstanceIdentifier must be supplied.

  • If the source type is a DB security group, a DBSecurityGroupName must be supplied.

  • If the source type is a DB parameter group, a DBParameterGroupName must be supplied.

  • If the source type is a DB snapshot, a DBSnapshotIdentifier must be supplied.

The name of the RDS event notification subscription you want to add a source identifier to.

Trait Implementations

impl Default for AddSourceIdentifierToSubscriptionMessage
[src]

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

impl Debug for AddSourceIdentifierToSubscriptionMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for AddSourceIdentifierToSubscriptionMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AddSourceIdentifierToSubscriptionMessage
[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