Class CfnDomain.LocationProperty
The AWS Region and Availability Zone where the domain was created (read-only).
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Lightsail
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDomain.LocationProperty : CfnDomain.ILocationProperty
Syntax (vb)
Public Class CfnDomain.LocationProperty Implements CfnDomain.ILocationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Lightsail;
var locationProperty = new LocationProperty {
AvailabilityZone = "availabilityZone",
RegionName = "regionName"
};
Synopsis
Constructors
LocationProperty() | The AWS Region and Availability Zone where the domain was created (read-only). |
Properties
AvailabilityZone | The Availability Zone. |
RegionName | The AWS Region name. |
Constructors
LocationProperty()
The AWS Region and Availability Zone where the domain was created (read-only).
public LocationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Lightsail;
var locationProperty = new LocationProperty {
AvailabilityZone = "availabilityZone",
RegionName = "regionName"
};
Properties
AvailabilityZone
The Availability Zone.
public string? AvailabilityZone { get; set; }
Property Value
Remarks
RegionName
The AWS Region name.
public string? RegionName { get; set; }