Class: Aws::RDS::Types::AddSourceIdentifierToSubscriptionMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

Note:

When making an API call, you may pass AddSourceIdentifierToSubscriptionMessage data as a hash:

{
  subscription_name: "String", # required
  source_identifier: "String", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#source_identifierString

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.

Returns:

  • (String)


143
144
145
146
147
# File 'lib/aws-sdk-rds/types.rb', line 143

class AddSourceIdentifierToSubscriptionMessage < Struct.new(
  :subscription_name,
  :source_identifier)
  include Aws::Structure
end

#subscription_nameString

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

Returns:

  • (String)


143
144
145
146
147
# File 'lib/aws-sdk-rds/types.rb', line 143

class AddSourceIdentifierToSubscriptionMessage < Struct.new(
  :subscription_name,
  :source_identifier)
  include Aws::Structure
end