Class: Aws::DocDB::Types::AddSourceIdentifierToSubscriptionMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::AddSourceIdentifierToSubscriptionMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-docdb/types.rb
Overview
When making an API call, you may pass AddSourceIdentifierToSubscriptionMessage data as a hash:
{
subscription_name: "String", # required
source_identifier: "String", # required
}
Represents the input to AddSourceIdentifierToSubscription.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#source_identifier ⇒ String
The identifier of the event source to be added:.
-
#subscription_name ⇒ String
The name of the Amazon DocumentDB event notification subscription that you want to add a source identifier to.
Instance Attribute Details
#source_identifier ⇒ String
The identifier of the event source to be added:
-
If the source type is an instance, a `DBInstanceIdentifier` must be provided.
-
If the source type is a security group, a `DBSecurityGroupName` must be provided.
-
If the source type is a parameter group, a `DBParameterGroupName` must be provided.
-
If the source type is a snapshot, a `DBSnapshotIdentifier` must be provided.
46 47 48 49 50 51 |
# File 'lib/aws-sdk-docdb/types.rb', line 46 class AddSourceIdentifierToSubscriptionMessage < Struct.new( :subscription_name, :source_identifier) SENSITIVE = [] include Aws::Structure end |
#subscription_name ⇒ String
The name of the Amazon DocumentDB event notification subscription that you want to add a source identifier to.
46 47 48 49 50 51 |
# File 'lib/aws-sdk-docdb/types.rb', line 46 class AddSourceIdentifierToSubscriptionMessage < Struct.new( :subscription_name, :source_identifier) SENSITIVE = [] include Aws::Structure end |