Class: Aws::RDS::Types::CreateGlobalClusterMessage

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

{
  global_cluster_identifier: "String",
  source_db_cluster_identifier: "String",
  engine: "String",
  engine_version: "String",
  deletion_protection: false,
  database_name: "String",
  storage_encrypted: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#database_nameString

The name for your database of up to 64 alpha-numeric characters. If you do not provide a name, Amazon Aurora will not create a database in the global database cluster you are creating.

Returns:

  • (String)


3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
# File 'lib/aws-sdk-rds/types.rb', line 3700

class CreateGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :source_db_cluster_identifier,
  :engine,
  :engine_version,
  :deletion_protection,
  :database_name,
  :storage_encrypted)
  include Aws::Structure
end

#deletion_protectionBoolean

The deletion protection setting for the new global database. The global database can’t be deleted when this value is set to true.

Returns:

  • (Boolean)


3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
# File 'lib/aws-sdk-rds/types.rb', line 3700

class CreateGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :source_db_cluster_identifier,
  :engine,
  :engine_version,
  :deletion_protection,
  :database_name,
  :storage_encrypted)
  include Aws::Structure
end

#engineString

Provides the name of the database engine to be used for this DB cluster.

Returns:

  • (String)


3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
# File 'lib/aws-sdk-rds/types.rb', line 3700

class CreateGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :source_db_cluster_identifier,
  :engine,
  :engine_version,
  :deletion_protection,
  :database_name,
  :storage_encrypted)
  include Aws::Structure
end

#engine_versionString

The engine version of the Aurora global database.

Returns:

  • (String)


3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
# File 'lib/aws-sdk-rds/types.rb', line 3700

class CreateGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :source_db_cluster_identifier,
  :engine,
  :engine_version,
  :deletion_protection,
  :database_name,
  :storage_encrypted)
  include Aws::Structure
end

#global_cluster_identifierString

The cluster identifier of the new global database cluster.

Returns:

  • (String)


3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
# File 'lib/aws-sdk-rds/types.rb', line 3700

class CreateGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :source_db_cluster_identifier,
  :engine,
  :engine_version,
  :deletion_protection,
  :database_name,
  :storage_encrypted)
  include Aws::Structure
end

#source_db_cluster_identifierString

The Amazon Resource Name (ARN) to use as the primary cluster of the global database. This parameter is optional.

Returns:

  • (String)


3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
# File 'lib/aws-sdk-rds/types.rb', line 3700

class CreateGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :source_db_cluster_identifier,
  :engine,
  :engine_version,
  :deletion_protection,
  :database_name,
  :storage_encrypted)
  include Aws::Structure
end

#storage_encryptedBoolean

The storage encryption setting for the new global database cluster.

Returns:

  • (Boolean)


3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
# File 'lib/aws-sdk-rds/types.rb', line 3700

class CreateGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :source_db_cluster_identifier,
  :engine,
  :engine_version,
  :deletion_protection,
  :database_name,
  :storage_encrypted)
  include Aws::Structure
end