Class: Aws::DocDB::Types::StopDBClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::StopDBClusterMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-docdb/types.rb
Overview
Note:
When making an API call, you may pass StopDBClusterMessage data as a hash:
{
db_cluster_identifier: "String", # required
}
Instance Attribute Summary collapse
-
#db_cluster_identifier ⇒ String
The identifier of the cluster to stop.
Instance Attribute Details
#db_cluster_identifier ⇒ String
The identifier of the cluster to stop. Example: docdb-2019-05-28-15-24-52
4522 4523 4524 4525 |
# File 'lib/aws-sdk-docdb/types.rb', line 4522 class StopDBClusterMessage < Struct.new( :db_cluster_identifier) include Aws::Structure end |