Class: Aws::RDS::Types::StartDBClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::StartDBClusterMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Note:
When making an API call, you may pass StartDBClusterMessage data as a hash:
{
db_cluster_identifier: "String", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_cluster_identifier ⇒ String
The DB cluster identifier of the Amazon Aurora DB cluster to be started.
Instance Attribute Details
#db_cluster_identifier ⇒ String
The DB cluster identifier of the Amazon Aurora DB cluster to be started. This parameter is stored as a lowercase string.
19910 19911 19912 19913 19914 |
# File 'lib/aws-sdk-rds/types.rb', line 19910 class StartDBClusterMessage < Struct.new( :db_cluster_identifier) SENSITIVE = [] include Aws::Structure end |