@Stability(value=Stable)
public static interface CfnSegment.GPSPointProperty
extends software.amazon.jsii.JsiiSerializable
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() |
Object |
getCoordinates()
The GPS coordinates to measure distance from.
|
Number |
getRangeInKilometers()
The range, in kilometers, from the GPS coordinates.
|
@Stability(value=Stable) @NotNull Object getCoordinates()
@Stability(value=Stable) @NotNull Number getRangeInKilometers()
@Stability(value=Stable) static CfnSegment.GPSPointProperty.Builder builder()
Copyright © 2022. All rights reserved.