Interface CfnInstance.LocationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnInstance.LocationProperty.Jsii$Proxy
Enclosing class:
CfnInstance

@Stability(Stable) public static interface CfnInstance.LocationProperty extends software.amazon.jsii.JsiiSerializable
Location is a property of the AWS::Lightsail::Instance resource. It describes the location for an instance.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lightsail.*;
 LocationProperty locationProperty = LocationProperty.builder()
         .availabilityZone("availabilityZone")
         .regionName("regionName")
         .build();