public static interface CfnSegment.GPSPointProperty
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.pinpoint.*; GPSPointProperty gPSPointProperty = GPSPointProperty.builder() .coordinates(CoordinatesProperty.builder() .latitude(123) .longitude(123) .build()) .rangeInKilometers(123) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnSegment.GPSPointProperty.Builder
A builder for
CfnSegment.GPSPointProperty |
static class |
CfnSegment.GPSPointProperty.Jsii$Proxy
An implementation for
CfnSegment.GPSPointProperty |
Modifier and Type | Method and Description |
---|---|
static CfnSegment.GPSPointProperty.Builder |
builder() |
java.lang.Object |
getCoordinates()
The GPS coordinates to measure distance from.
|
java.lang.Number |
getRangeInKilometers()
The range, in kilometers, from the GPS coordinates.
|
java.lang.Object getCoordinates()
java.lang.Number getRangeInKilometers()
static CfnSegment.GPSPointProperty.Builder builder()