You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Pinpoint::Types::SegmentLocation

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing SegmentLocation as input to an Aws::Client method, you can use a vanilla Hash:

{
  country: {
    dimension_type: "INCLUSIVE", # accepts INCLUSIVE, EXCLUSIVE
    values: ["__string"], # required
  },
  gps_point: {
    coordinates: { # required
      latitude: 1.0, # required
      longitude: 1.0, # required
    },
    range_in_kilometers: 1.0,
  },
}

Specifies geographical dimension settings for a segment.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#countryTypes::SetDimension

The country or region code, in ISO 3166-1 alpha-2 format, for the segment.

Returns:

  • (Types::SetDimension)

    The country or region code, in ISO 3166-1 alpha-2 format, for the segment.

#gps_pointTypes::GPSPointDimension

The GPS location and range for the segment.

Returns: