public static interface CfnSegment.LocationProperty
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 java.lang.Object |
getCountry()
The country or region code, in ISO 3166-1 alpha-2 format, for the segment.
|
default java.lang.Object |
getGpsPoint()
The GPS point dimension for the segment.
|
default java.lang.Object getCountry()
default java.lang.Object getGpsPoint()
static CfnSegment.LocationProperty.Builder builder()