interface CfnSnapshotMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FSx.Mixins.CfnSnapshotMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfsx/mixins#CfnSnapshotMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.fsx.mixins.CfnSnapshotMixinProps |
Python | aws_cdk.mixins_preview.aws_fsx.mixins.CfnSnapshotMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_fsx » mixins » CfnSnapshotMixinProps |
Properties for CfnSnapshotPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-snapshot.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as fsx_mixins } from '@aws-cdk/mixins-preview/aws-fsx';
const cfnSnapshotMixinProps: fsx_mixins.CfnSnapshotMixinProps = {
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
volumeId: 'volumeId',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the snapshot. |
| tags? | Cfn[] | A list of Tag values, with a maximum of 50 elements. |
| volume | string | The ID of the volume that the snapshot is of. |
name?
Type:
string
(optional)
The name of the snapshot.
tags?
Type:
Cfn[]
(optional)
A list of Tag values, with a maximum of 50 elements.
volumeId?
Type:
string
(optional)
The ID of the volume that the snapshot is of.

.NET
Go
Java
Python
TypeScript