interface LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lightsail.CfnDomainPropsMixin.LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslightsail#CfnDomainPropsMixin_LocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lightsail.CfnDomainPropsMixin.LocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_lightsail.CfnDomainPropsMixin.LocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lightsail » 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 { aws_lightsail as lightsail } from '@aws-cdk/cfn-property-mixins';
const locationProperty: lightsail.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