Class: Aws::RDS::Types::CreateGlobalClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::CreateGlobalClusterMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#database_name ⇒ String
The name for your database of up to 64 alphanumeric characters.
-
#deletion_protection ⇒ Boolean
Specifies whether to enable deletion protection for the new global database cluster.
-
#engine ⇒ String
The database engine to use for this global database cluster.
-
#engine_version ⇒ String
The engine version to use for this global database cluster.
-
#global_cluster_identifier ⇒ String
The cluster identifier for this global database cluster.
-
#source_db_cluster_identifier ⇒ String
The Amazon Resource Name (ARN) to use as the primary cluster of the global database.
-
#storage_encrypted ⇒ Boolean
Specifies whether to enable storage encryption for the new global database cluster.
Instance Attribute Details
#database_name ⇒ String
The name for your database of up to 64 alphanumeric characters. If you don’t specify a name, Amazon Aurora doesn’t create a database in the global database cluster.
Constraints:
-
Can’t be specified if ‘SourceDBClusterIdentifier` is specified. In this case, Amazon Aurora uses the database name from the source DB cluster.
^
5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 |
# File 'lib/aws-sdk-rds/types.rb', line 5778 class CreateGlobalClusterMessage < Struct.new( :global_cluster_identifier, :source_db_cluster_identifier, :engine, :engine_version, :deletion_protection, :database_name, :storage_encrypted) SENSITIVE = [] include Aws::Structure end |
#deletion_protection ⇒ Boolean
Specifies whether to enable deletion protection for the new global database cluster. The global database can’t be deleted when deletion protection is enabled.
5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 |
# File 'lib/aws-sdk-rds/types.rb', line 5778 class CreateGlobalClusterMessage < Struct.new( :global_cluster_identifier, :source_db_cluster_identifier, :engine, :engine_version, :deletion_protection, :database_name, :storage_encrypted) SENSITIVE = [] include Aws::Structure end |
#engine ⇒ String
The database engine to use for this global database cluster.
Valid Values: ‘aurora-mysql | aurora-postgresql`
Constraints:
-
Can’t be specified if ‘SourceDBClusterIdentifier` is specified. In this case, Amazon Aurora uses the engine of the source DB cluster.
^
5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 |
# File 'lib/aws-sdk-rds/types.rb', line 5778 class CreateGlobalClusterMessage < Struct.new( :global_cluster_identifier, :source_db_cluster_identifier, :engine, :engine_version, :deletion_protection, :database_name, :storage_encrypted) SENSITIVE = [] include Aws::Structure end |
#engine_version ⇒ String
The engine version to use for this global database cluster.
Constraints:
-
Can’t be specified if ‘SourceDBClusterIdentifier` is specified. In this case, Amazon Aurora uses the engine version of the source DB cluster.
^
5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 |
# File 'lib/aws-sdk-rds/types.rb', line 5778 class CreateGlobalClusterMessage < Struct.new( :global_cluster_identifier, :source_db_cluster_identifier, :engine, :engine_version, :deletion_protection, :database_name, :storage_encrypted) SENSITIVE = [] include Aws::Structure end |
#global_cluster_identifier ⇒ String
The cluster identifier for this global database cluster. This parameter is stored as a lowercase string.
5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 |
# File 'lib/aws-sdk-rds/types.rb', line 5778 class CreateGlobalClusterMessage < Struct.new( :global_cluster_identifier, :source_db_cluster_identifier, :engine, :engine_version, :deletion_protection, :database_name, :storage_encrypted) SENSITIVE = [] include Aws::Structure end |
#source_db_cluster_identifier ⇒ String
The Amazon Resource Name (ARN) to use as the primary cluster of the global database.
If you provide a value for this parameter, don’t specify values for the following settings because Amazon Aurora uses the values from the specified source DB cluster:
-
‘DatabaseName`
-
‘Engine`
-
‘EngineVersion`
-
‘StorageEncrypted`
5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 |
# File 'lib/aws-sdk-rds/types.rb', line 5778 class CreateGlobalClusterMessage < Struct.new( :global_cluster_identifier, :source_db_cluster_identifier, :engine, :engine_version, :deletion_protection, :database_name, :storage_encrypted) SENSITIVE = [] include Aws::Structure end |
#storage_encrypted ⇒ Boolean
Specifies whether to enable storage encryption for the new global database cluster.
Constraints:
-
Can’t be specified if ‘SourceDBClusterIdentifier` is specified. In this case, Amazon Aurora uses the setting from the source DB cluster.
^
5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 |
# File 'lib/aws-sdk-rds/types.rb', line 5778 class CreateGlobalClusterMessage < Struct.new( :global_cluster_identifier, :source_db_cluster_identifier, :engine, :engine_version, :deletion_protection, :database_name, :storage_encrypted) SENSITIVE = [] include Aws::Structure end |