Class CfnSnapshotMixinProps
Properties for CfnSnapshotPropsMixin.
Implements
Inherited Members
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 |
| 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
Remarks
Tags
A list of Tag values, with a maximum of 50 elements.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
VolumeId
The ID of the volume that the snapshot is of.
public string? VolumeId { get; set; }