interface CfnDiskSnapshotMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lightsail.Mixins.CfnDiskSnapshotMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslightsail/mixins#CfnDiskSnapshotMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.lightsail.mixins.CfnDiskSnapshotMixinProps |
Python | aws_cdk.mixins_preview.aws_lightsail.mixins.CfnDiskSnapshotMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_lightsail » mixins » CfnDiskSnapshotMixinProps |
Properties for CfnDiskSnapshotPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as lightsail_mixins } from '@aws-cdk/mixins-preview/aws-lightsail';
const cfnDiskSnapshotMixinProps: lightsail_mixins.CfnDiskSnapshotMixinProps = {
diskName: 'diskName',
diskSnapshotName: 'diskSnapshotName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| disk | string | The unique name of the disk. |
| disk | string | The name of the disk snapshot ( my-disk-snapshot ). |
| tags? | Cfn[] | The tag keys and optional values for the resource. |
diskName?
Type:
string
(optional)
The unique name of the disk.
diskSnapshotName?
Type:
string
(optional)
The name of the disk snapshot ( my-disk-snapshot ).
tags?
Type:
Cfn[]
(optional)
The tag keys and optional values for the resource.
For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide .

.NET
Go
Java
Python
TypeScript