Show / Hide Table of Contents

Class CfnDisk.LocationProperty

The AWS Region and Availability Zone where the disk is located.

Inheritance
object
CfnDisk.LocationProperty
Implements
CfnDisk.ILocationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Lightsail
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDisk.LocationProperty : CfnDisk.ILocationProperty
Syntax (vb)
Public Class CfnDisk.LocationProperty Implements CfnDisk.ILocationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-disk-location.html

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 disk is located.

Properties

AvailabilityZone

The Availability Zone where the disk is located.

RegionName

The AWS Region where the disk is located.

Constructors

LocationProperty()

The AWS Region and Availability Zone where the disk is located.

public LocationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-disk-location.html

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 where the disk is located.

public string? AvailabilityZone { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-disk-location.html#cfn-lightsail-disk-location-availabilityzone

RegionName

The AWS Region where the disk is located.

public string? RegionName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-disk-location.html#cfn-lightsail-disk-location-regionname

Implements

CfnDisk.ILocationProperty
Back to top Generated by DocFX