Class: Aws::DocDB::Types::DeleteGlobalClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::DeleteGlobalClusterMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-docdb/types.rb
Overview
Note:
When making an API call, you may pass DeleteGlobalClusterMessage data as a hash:
{
global_cluster_identifier: "GlobalClusterIdentifier", # required
}
Represents the input to DeleteGlobalCluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#global_cluster_identifier ⇒ String
The cluster identifier of the global cluster being deleted.
Instance Attribute Details
#global_cluster_identifier ⇒ String
The cluster identifier of the global cluster being deleted.
2648 2649 2650 2651 2652 |
# File 'lib/aws-sdk-docdb/types.rb', line 2648 class DeleteGlobalClusterMessage < Struct.new( :global_cluster_identifier) SENSITIVE = [] include Aws::Structure end |