Class CfnClusterSnapshotProps
Properties for defining a CfnClusterSnapshot.
Implements
Inherited Members
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 |
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
Remarks
DbClusterSnapshotIdentifier
The identifier for the DB cluster snapshot.
public string DbClusterSnapshotIdentifier { get; set; }
Property Value
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.
Tags
The tags to be assigned to the DB cluster snapshot.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]