Show / Hide Table of Contents

Class CfnGlobalClusterProps

Properties for defining a CfnGlobalCluster.

Inheritance
System.Object
CfnGlobalClusterProps
Implements
ICfnGlobalClusterProps
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.AWS.RDS.dll
Syntax (csharp)
public class CfnGlobalClusterProps : Object, ICfnGlobalClusterProps
Syntax (vb)
Public Class CfnGlobalClusterProps
    Inherits Object
    Implements ICfnGlobalClusterProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;

var cfnGlobalClusterProps = new CfnGlobalClusterProps {
    DeletionProtection = false,
    Engine = "engine",
    EngineVersion = "engineVersion",
    GlobalClusterIdentifier = "globalClusterIdentifier",
    SourceDbClusterIdentifier = "sourceDbClusterIdentifier",
    StorageEncrypted = false
};

Synopsis

Constructors

CfnGlobalClusterProps()

Properties

DeletionProtection

The deletion protection setting for the new global database.

Engine

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

EngineVersion

The engine version of the Aurora global database.

GlobalClusterIdentifier

The cluster identifier of the global database cluster.

SourceDbClusterIdentifier

The DB cluster identifier or Amazon Resource Name (ARN) to use as the primary cluster of the global database.

StorageEncrypted

The storage encryption setting for the global database cluster.

Constructors

CfnGlobalClusterProps()

public CfnGlobalClusterProps()

Properties

DeletionProtection

The deletion protection setting for the new global database.

public object DeletionProtection { get; set; }
Property Value

System.Object

Remarks

The global database can't be deleted when deletion protection is enabled.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html#cfn-rds-globalcluster-deletionprotection

Engine

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

public string Engine { get; set; }
Property Value

System.String

Remarks

If this property isn't specified, the database engine is derived from the source DB cluster specified by the SourceDBClusterIdentifier property.

If the SourceDBClusterIdentifier property isn't specified, this property is required. If the SourceDBClusterIdentifier property is specified, make sure this property isn't specified.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html#cfn-rds-globalcluster-engine

EngineVersion

The engine version of the Aurora global database.

public string EngineVersion { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html#cfn-rds-globalcluster-engineversion

GlobalClusterIdentifier

The cluster identifier of the global database cluster.

public string GlobalClusterIdentifier { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html#cfn-rds-globalcluster-globalclusteridentifier

SourceDbClusterIdentifier

The DB cluster identifier or Amazon Resource Name (ARN) to use as the primary cluster of the global database.

public string SourceDbClusterIdentifier { get; set; }
Property Value

System.String

Remarks

If the Engine property isn't specified, this property is required. If the Engine property is specified, make sure this property isn't specified.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html#cfn-rds-globalcluster-sourcedbclusteridentifier

StorageEncrypted

The storage encryption setting for the global database cluster.

public object StorageEncrypted { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html#cfn-rds-globalcluster-storageencrypted

Implements

ICfnGlobalClusterProps
Back to top Generated by DocFX