Show / Hide Table of Contents

Class CfnDBSnapshotMixinProps

Properties for CfnDBSnapshotPropsMixin.

Inheritance
object
CfnDBSnapshotMixinProps
Implements
ICfnDBSnapshotMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

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

DbSnapshotIdentifier

The identifier for the DB snapshot.

public string? DbSnapshotIdentifier { get; set; }
Property Value

string

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.

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

Tags

The tags to be assigned to the DB snapshot.

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

ICfnTag[]

Remarks

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

Implements

ICfnDBSnapshotMixinProps
Back to top Generated by DocFX