Class: Aws::RDS::Types::PromoteReadReplicaDBClusterMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

Note:

When making an API call, you may pass PromoteReadReplicaDBClusterMessage data as a hash:

{
  db_cluster_identifier: "String", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#db_cluster_identifierString

The identifier of the DB cluster Read Replica to promote. This parameter is not case-sensitive.

Constraints:

  • Must match the identifier of an existing DBCluster Read Replica.

^

Example: ‘my-cluster-replica1`

Returns:

  • (String)


12219
12220
12221
12222
# File 'lib/aws-sdk-rds/types.rb', line 12219

class PromoteReadReplicaDBClusterMessage < Struct.new(
  :db_cluster_identifier)
  include Aws::Structure
end