Class: Aws::RDS::Types::RemoveSourceIdentifierFromSubscriptionMessage

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 RemoveSourceIdentifierFromSubscriptionMessage data as a hash:

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

Instance Attribute Summary collapse

Instance Attribute Details

#source_identifierString

The source identifier to be removed from the subscription, such as the **DB instance identifier** for a DB instance or the name of a security group.

Returns:

  • (String)


12600
12601
12602
12603
12604
# File 'lib/aws-sdk-rds/types.rb', line 12600

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

#subscription_nameString

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

Returns:

  • (String)


12600
12601
12602
12603
12604
# File 'lib/aws-sdk-rds/types.rb', line 12600

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