@Stability(value=Stable)
public static interface CfnSegment.LocationProperty
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.*;
LocationProperty locationProperty = LocationProperty.builder()
.country(SetDimensionProperty.builder()
.dimensionType("dimensionType")
.values(List.of("values"))
.build())
.gpsPoint(GPSPointProperty.builder()
.coordinates(CoordinatesProperty.builder()
.latitude(123)
.longitude(123)
.build())
.rangeInKilometers(123)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSegment.LocationProperty.Builder
A builder for
CfnSegment.LocationProperty |
static class |
CfnSegment.LocationProperty.Jsii$Proxy
An implementation for
CfnSegment.LocationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnSegment.LocationProperty.Builder |
builder() |
default Object |
getCountry()
The country or region code, in ISO 3166-1 alpha-2 format, for the segment.
|
default Object |
getGpsPoint()
The GPS point dimension for the segment.
|
@Stability(value=Stable) @Nullable default Object getCountry()
@Stability(value=Stable) @Nullable default Object getGpsPoint()
@Stability(value=Stable) static CfnSegment.LocationProperty.Builder builder()
Copyright © 2022. All rights reserved.