Interface CfnSegment.GPSPointProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSegment.GPSPointProperty.Jsii$Proxy
- Enclosing class:
- CfnSegment
@Stability(Stable)
public static interface CfnSegment.GPSPointProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the GPS coordinates of the endpoint 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.pinpoint.*;
GPSPointProperty gPSPointProperty = GPSPointProperty.builder()
.coordinates(CoordinatesProperty.builder()
.latitude(123)
.longitude(123)
.build())
.rangeInKilometers(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSegment.GPSPointPropertystatic final classAn implementation forCfnSegment.GPSPointProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The GPS coordinates to measure distance from.The range, in kilometers, from the GPS coordinates.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCoordinates
The GPS coordinates to measure distance from. -
getRangeInKilometers
The range, in kilometers, from the GPS coordinates. -
builder
-