Show / Hide Table of Contents

Class CfnSnapshotMixinProps

Properties for CfnSnapshotPropsMixin.

Inheritance
object
CfnSnapshotMixinProps
Implements
ICfnSnapshotMixinProps
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.FSx
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnSnapshotMixinProps : ICfnSnapshotMixinProps
Syntax (vb)
Public Class CfnSnapshotMixinProps Implements ICfnSnapshotMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-snapshot.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.FSx;

             var cfnSnapshotMixinProps = new CfnSnapshotMixinProps {
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 VolumeId = "volumeId"
             };

Synopsis

Constructors

CfnSnapshotMixinProps()

Properties for CfnSnapshotPropsMixin.

Properties

Name

The name of the snapshot.

Tags

A list of Tag values, with a maximum of 50 elements.

VolumeId

The ID of the volume that the snapshot is of.

Constructors

CfnSnapshotMixinProps()

Properties for CfnSnapshotPropsMixin.

public CfnSnapshotMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-snapshot.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.FSx;

             var cfnSnapshotMixinProps = new CfnSnapshotMixinProps {
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 VolumeId = "volumeId"
             };

Properties

Name

The name of the snapshot.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-snapshot.html#cfn-fsx-snapshot-name

Tags

A list of Tag values, with a maximum of 50 elements.

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

ICfnTag[]

Remarks

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

VolumeId

The ID of the volume that the snapshot is of.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-snapshot.html#cfn-fsx-snapshot-volumeid

Implements

ICfnSnapshotMixinProps
Back to top Generated by DocFX