Class: Aws::RDS::Types::RemoveFromGlobalClusterMessage

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 RemoveFromGlobalClusterMessage data as a hash:

{
  global_cluster_identifier: "String",
  db_cluster_identifier: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#db_cluster_identifierString

The Amazon Resource Name (ARN) identifying the cluster that was detached from the Aurora global database cluster.

Returns:

  • (String)


12410
12411
12412
12413
12414
# File 'lib/aws-sdk-rds/types.rb', line 12410

class RemoveFromGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :db_cluster_identifier)
  include Aws::Structure
end

#global_cluster_identifierString

The cluster identifier to detach from the Aurora global database cluster.

Returns:

  • (String)


12410
12411
12412
12413
12414
# File 'lib/aws-sdk-rds/types.rb', line 12410

class RemoveFromGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :db_cluster_identifier)
  include Aws::Structure
end