interface SnapshotReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.FSx.SnapshotReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsfsx#SnapshotReference |
Java | software.amazon.awscdk.interfaces.fsx.SnapshotReference |
Python | aws_cdk.interfaces.aws_fsx.SnapshotReference |
TypeScript | aws-cdk-lib » interfaces » aws_fsx » SnapshotReference |
A reference to a Snapshot resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_fsx as interfaces_aws_fsx } from 'aws-cdk-lib/interfaces';
const snapshotReference: interfaces_aws_fsx.SnapshotReference = {
snapshotId: 'snapshotId',
};
Properties
| Name | Type | Description |
|---|---|---|
| snapshot | string | The Id of the Snapshot resource. |
snapshotId
Type:
string
The Id of the Snapshot resource.

.NET
Go
Java
Python
TypeScript