interface DiskSnapshotReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Lightsail.DiskSnapshotReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslightsail#DiskSnapshotReference |
Java | software.amazon.awscdk.interfaces.lightsail.DiskSnapshotReference |
Python | aws_cdk.interfaces.aws_lightsail.DiskSnapshotReference |
TypeScript | aws-cdk-lib » interfaces » aws_lightsail » DiskSnapshotReference |
A reference to a DiskSnapshot resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lightsail as interfaces_aws_lightsail } from 'aws-cdk-lib/interfaces';
const diskSnapshotReference: interfaces_aws_lightsail.DiskSnapshotReference = {
diskSnapshotArn: 'diskSnapshotArn',
diskSnapshotName: 'diskSnapshotName',
};
Properties
| Name | Type | Description |
|---|---|---|
| disk | string | The ARN of the DiskSnapshot resource. |
| disk | string | The DiskSnapshotName of the DiskSnapshot resource. |
diskSnapshotArn
Type:
string
The ARN of the DiskSnapshot resource.
diskSnapshotName
Type:
string
The DiskSnapshotName of the DiskSnapshot resource.

.NET
Go
Java
Python
TypeScript