Class CfnDBSnapshotMixinProps
Properties for CfnDBSnapshotPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.RDS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDBSnapshotMixinProps : ICfnDBSnapshotMixinProps
Syntax (vb)
Public Class CfnDBSnapshotMixinProps Implements ICfnDBSnapshotMixinProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsnapshot.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.CfnPropertyMixins.AWS.RDS;
var cfnDBSnapshotMixinProps = new CfnDBSnapshotMixinProps {
DbInstanceIdentifier = "dbInstanceIdentifier",
DbSnapshotIdentifier = "dbSnapshotIdentifier",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnDBSnapshotMixinProps() | Properties for CfnDBSnapshotPropsMixin. |
Properties
| DbInstanceIdentifier | The identifier of the DB instance that you want to create the snapshot of. |
| DbSnapshotIdentifier | The identifier for the DB snapshot. |
| Tags | The tags to be assigned to the DB snapshot. |
Constructors
CfnDBSnapshotMixinProps()
Properties for CfnDBSnapshotPropsMixin.
public CfnDBSnapshotMixinProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsnapshot.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.CfnPropertyMixins.AWS.RDS;
var cfnDBSnapshotMixinProps = new CfnDBSnapshotMixinProps {
DbInstanceIdentifier = "dbInstanceIdentifier",
DbSnapshotIdentifier = "dbSnapshotIdentifier",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
DbInstanceIdentifier
The identifier of the DB instance that you want to create the snapshot of.
public string? DbInstanceIdentifier { get; set; }
Property Value
Remarks
DbSnapshotIdentifier
The identifier for the DB snapshot.
public string? DbSnapshotIdentifier { get; set; }
Property Value
Remarks
Must contain from 1 to 255 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 snapshot.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]