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

.NET
Go
Java
Python
TypeScript