interface CfnSnapshotProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.FSx.CfnSnapshotProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#CfnSnapshotProps |
![]() | software.amazon.awscdk.services.fsx.CfnSnapshotProps |
![]() | aws_cdk.aws_fsx.CfnSnapshotProps |
![]() | aws-cdk-lib » aws_fsx » CfnSnapshotProps |
Properties for defining a CfnSnapshot
.
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 { aws_fsx as fsx } from 'aws-cdk-lib';
const cfnSnapshotProps: fsx.CfnSnapshotProps = {
name: 'name',
volumeId: 'volumeId',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name of the snapshot. |
volume | string | The ID of the volume that the snapshot is of. |
tags? | Cfn [] | A list of Tag values, with a maximum of 50 elements. |
name
Type:
string
The name of the snapshot.
volumeId
Type:
string
The ID of the volume that the snapshot is of.
tags?
Type:
Cfn
[]
(optional)
A list of Tag
values, with a maximum of 50 elements.