interface LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lightsail.Mixins.CfnDiskPropsMixin.LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslightsail/mixins#CfnDiskPropsMixin_LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.lightsail.mixins.CfnDiskPropsMixin.LocationProperty |
Python | aws_cdk.mixins_preview.aws_lightsail.mixins.CfnDiskPropsMixin.LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lightsail » mixins » CfnDiskPropsMixin » LocationProperty |
The AWS Region and Availability Zone where the disk is located.
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 locationProperty: lightsail_mixins.CfnDiskPropsMixin.LocationProperty = {
availabilityZone: 'availabilityZone',
regionName: 'regionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string | The Availability Zone where the disk is located. |
| region | string | The AWS Region where the disk is located. |
availabilityZone?
Type:
string
(optional)
The Availability Zone where the disk is located.
regionName?
Type:
string
(optional)
The AWS Region where the disk is located.

.NET
Go
Java
Python
TypeScript