Interface CfnDevice.LocationProperty

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

@Stability(Stable) public static interface CfnDevice.LocationProperty extends software.amazon.jsii.JsiiSerializable
Describes a location.

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.networkmanager.*;
 LocationProperty locationProperty = LocationProperty.builder()
         .address("address")
         .latitude("latitude")
         .longitude("longitude")
         .build();