interface DiskReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lightsail.DiskReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslightsail#DiskReference |
Java | software.amazon.awscdk.services.lightsail.DiskReference |
Python | aws_cdk.aws_lightsail.DiskReference |
TypeScript | aws-cdk-lib » aws_lightsail » DiskReference |
A reference to a Disk 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 lightsail } from 'aws-cdk-lib';
const diskReference: lightsail.DiskReference = {
diskArn: 'diskArn',
diskName: 'diskName',
};
Properties
| Name | Type | Description |
|---|---|---|
| disk | string | The ARN of the Disk resource. |
| disk | string | The DiskName of the Disk resource. |
diskArn
Type:
string
The ARN of the Disk resource.
diskName
Type:
string
The DiskName of the Disk resource.

.NET
Go
Java
Python
TypeScript