Show / Hide Table of Contents

Class CfnClusterSnapshotProps

Properties for defining a CfnClusterSnapshot.

Inheritance
object
CfnClusterSnapshotProps
Implements
ICfnClusterSnapshotProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnClusterSnapshotProps : ICfnClusterSnapshotProps
Syntax (vb)
Public Class CfnClusterSnapshotProps Implements ICfnClusterSnapshotProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-clustersnapshot.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 cfnClusterSnapshotProps = new CfnClusterSnapshotProps {
                 DbClusterIdentifier = "dbClusterIdentifier",
                 DbClusterSnapshotIdentifier = "dbClusterSnapshotIdentifier",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnClusterSnapshotProps()

Properties for defining a CfnClusterSnapshot.

Properties

DbClusterIdentifier

The identifier of the DB cluster to create a snapshot for.

DbClusterSnapshotIdentifier

The identifier for the DB cluster snapshot.

Tags

The tags to be assigned to the DB cluster snapshot.

Constructors

CfnClusterSnapshotProps()

Properties for defining a CfnClusterSnapshot.

public CfnClusterSnapshotProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-clustersnapshot.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 cfnClusterSnapshotProps = new CfnClusterSnapshotProps {
                 DbClusterIdentifier = "dbClusterIdentifier",
                 DbClusterSnapshotIdentifier = "dbClusterSnapshotIdentifier",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

DbClusterIdentifier

The identifier of the DB cluster to create a snapshot for.

public string DbClusterIdentifier { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-clustersnapshot.html#cfn-rds-clustersnapshot-dbclusteridentifier

DbClusterSnapshotIdentifier

The identifier for the DB cluster snapshot.

public string DbClusterSnapshotIdentifier { get; set; }
Property Value

string

Remarks

Must contain from 1 to 63 letters, numbers, or hyphens. First character must be a letter. Can't end with a hyphen or contain two consecutive hyphens.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-clustersnapshot.html#cfn-rds-clustersnapshot-dbclustersnapshotidentifier

Tags

The tags to be assigned to the DB cluster snapshot.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-clustersnapshot.html#cfn-rds-clustersnapshot-tags

Implements

ICfnClusterSnapshotProps
Back to top Generated by DocFX