Class: Aws::RDS::Types::RebootDBClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::RebootDBClusterMessage
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
Note:
When making an API call, you may pass RebootDBClusterMessage 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.
Instance Attribute Details
#db_cluster_identifier ⇒ String
The DB cluster identifier. This parameter is stored as a lowercase string.
Constraints:
- Must match the identifier of an existing DBCluster.
^
18491 18492 18493 18494 18495 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 18491 class RebootDBClusterMessage < Struct.new( :db_cluster_identifier) SENSITIVE = [] include Aws::Structure end |