Class: Aws::DocDB::Types::RemoveFromGlobalClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::RemoveFromGlobalClusterMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-docdb/types.rb
Overview
Note:
When making an API call, you may pass RemoveFromGlobalClusterMessage data as a hash:
{
global_cluster_identifier: "GlobalClusterIdentifier", # required
db_cluster_identifier: "String", # required
}
Represents the input to RemoveFromGlobalCluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_cluster_identifier ⇒ String
The Amazon Resource Name (ARN) identifying the cluster that was detached from the Amazon DocumentDB global cluster.
-
#global_cluster_identifier ⇒ String
The cluster identifier to detach from the Amazon DocumentDB global cluster.
Instance Attribute Details
#db_cluster_identifier ⇒ String
The Amazon Resource Name (ARN) identifying the cluster that was detached from the Amazon DocumentDB global cluster.
5443 5444 5445 5446 5447 5448 |
# File 'lib/aws-sdk-docdb/types.rb', line 5443 class RemoveFromGlobalClusterMessage < Struct.new( :global_cluster_identifier, :db_cluster_identifier) SENSITIVE = [] include Aws::Structure end |
#global_cluster_identifier ⇒ String
The cluster identifier to detach from the Amazon DocumentDB global cluster.
5443 5444 5445 5446 5447 5448 |
# File 'lib/aws-sdk-docdb/types.rb', line 5443 class RemoveFromGlobalClusterMessage < Struct.new( :global_cluster_identifier, :db_cluster_identifier) SENSITIVE = [] include Aws::Structure end |