Modify a setting for an Amazon Aurora global cluster. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. For more information on Amazon Aurora, see What Is Amazon Aurora? in the Amazon Aurora User Guide.
This action only applies to Aurora DB clusters.
rds_modify_global_cluster(GlobalClusterIdentifier,
NewGlobalClusterIdentifier, DeletionProtection)
A list with the following syntax:
list(
GlobalCluster = list(
GlobalClusterIdentifier = "string",
GlobalClusterResourceId = "string",
GlobalClusterArn = "string",
Status = "string",
Engine = "string",
EngineVersion = "string",
DatabaseName = "string",
StorageEncrypted = TRUE|FALSE,
DeletionProtection = TRUE|FALSE,
GlobalClusterMembers = list(
list(
DBClusterArn = "string",
Readers = list(
"string"
),
IsWriter = TRUE|FALSE,
GlobalWriteForwardingStatus = "enabled"|"disabled"|"enabling"|"disabling"|"unknown"
)
)
)
)
The DB cluster identifier for the global cluster being modified. This parameter isn't case-sensitive.
Constraints:
Must match the identifier of an existing global database cluster.
The new cluster identifier for the global database cluster when modifying a global database cluster. This value is stored as a lowercase string.
Constraints:
Must contain from 1 to 63 letters, numbers, or hyphens
The first character must be a letter
Can't end with a hyphen or contain two consecutive hyphens
Example: my-cluster2
Indicates if the global database cluster has deletion protection enabled. The global database cluster can't be deleted when deletion protection is enabled.
svc$modify_global_cluster(
GlobalClusterIdentifier = "string",
NewGlobalClusterIdentifier = "string",
DeletionProtection = TRUE|FALSE
)