/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains geofence geometry details. See Also:
AWS
* API Reference
The identifier for the geofence to be stored in a given geofence * collection.
*/ inline const Aws::String& GetGeofenceId() const{ return m_geofenceId; } /** *The identifier for the geofence to be stored in a given geofence * collection.
*/ inline bool GeofenceIdHasBeenSet() const { return m_geofenceIdHasBeenSet; } /** *The identifier for the geofence to be stored in a given geofence * collection.
*/ inline void SetGeofenceId(const Aws::String& value) { m_geofenceIdHasBeenSet = true; m_geofenceId = value; } /** *The identifier for the geofence to be stored in a given geofence * collection.
*/ inline void SetGeofenceId(Aws::String&& value) { m_geofenceIdHasBeenSet = true; m_geofenceId = std::move(value); } /** *The identifier for the geofence to be stored in a given geofence * collection.
*/ inline void SetGeofenceId(const char* value) { m_geofenceIdHasBeenSet = true; m_geofenceId.assign(value); } /** *The identifier for the geofence to be stored in a given geofence * collection.
*/ inline BatchPutGeofenceRequestEntry& WithGeofenceId(const Aws::String& value) { SetGeofenceId(value); return *this;} /** *The identifier for the geofence to be stored in a given geofence * collection.
*/ inline BatchPutGeofenceRequestEntry& WithGeofenceId(Aws::String&& value) { SetGeofenceId(std::move(value)); return *this;} /** *The identifier for the geofence to be stored in a given geofence * collection.
*/ inline BatchPutGeofenceRequestEntry& WithGeofenceId(const char* value) { SetGeofenceId(value); return *this;} /** *Associates one of more properties with the geofence. A property is a * key-value pair stored with the geofence and added to any geofence event * triggered with that geofence.
Format: "key" : "value"
Associates one of more properties with the geofence. A property is a * key-value pair stored with the geofence and added to any geofence event * triggered with that geofence.
Format: "key" : "value"
Associates one of more properties with the geofence. A property is a * key-value pair stored with the geofence and added to any geofence event * triggered with that geofence.
Format: "key" : "value"
Associates one of more properties with the geofence. A property is a * key-value pair stored with the geofence and added to any geofence event * triggered with that geofence.
Format: "key" : "value"
Associates one of more properties with the geofence. A property is a * key-value pair stored with the geofence and added to any geofence event * triggered with that geofence.
Format: "key" : "value"
Associates one of more properties with the geofence. A property is a * key-value pair stored with the geofence and added to any geofence event * triggered with that geofence.
Format: "key" : "value"
Associates one of more properties with the geofence. A property is a * key-value pair stored with the geofence and added to any geofence event * triggered with that geofence.
Format: "key" : "value"
Associates one of more properties with the geofence. A property is a * key-value pair stored with the geofence and added to any geofence event * triggered with that geofence.
Format: "key" : "value"
Associates one of more properties with the geofence. A property is a * key-value pair stored with the geofence and added to any geofence event * triggered with that geofence.
Format: "key" : "value"
Associates one of more properties with the geofence. A property is a * key-value pair stored with the geofence and added to any geofence event * triggered with that geofence.
Format: "key" : "value"
Associates one of more properties with the geofence. A property is a * key-value pair stored with the geofence and added to any geofence event * triggered with that geofence.
Format: "key" : "value"
Associates one of more properties with the geofence. A property is a * key-value pair stored with the geofence and added to any geofence event * triggered with that geofence.
Format: "key" : "value"
Associates one of more properties with the geofence. A property is a * key-value pair stored with the geofence and added to any geofence event * triggered with that geofence.
Format: "key" : "value"
Contains the details of the position of the geofence. Can be either a polygon * or a circle. Including both will return a validation error.
Each * * geofence polygon can have a maximum of 1,000 vertices.
*/ inline const GeofenceGeometry& GetGeometry() const{ return m_geometry; } /** *Contains the details of the position of the geofence. Can be either a polygon * or a circle. Including both will return a validation error.
Each * * geofence polygon can have a maximum of 1,000 vertices.
*/ inline bool GeometryHasBeenSet() const { return m_geometryHasBeenSet; } /** *Contains the details of the position of the geofence. Can be either a polygon * or a circle. Including both will return a validation error.
Each * * geofence polygon can have a maximum of 1,000 vertices.
*/ inline void SetGeometry(const GeofenceGeometry& value) { m_geometryHasBeenSet = true; m_geometry = value; } /** *Contains the details of the position of the geofence. Can be either a polygon * or a circle. Including both will return a validation error.
Each * * geofence polygon can have a maximum of 1,000 vertices.
*/ inline void SetGeometry(GeofenceGeometry&& value) { m_geometryHasBeenSet = true; m_geometry = std::move(value); } /** *Contains the details of the position of the geofence. Can be either a polygon * or a circle. Including both will return a validation error.
Each * * geofence polygon can have a maximum of 1,000 vertices.
*/ inline BatchPutGeofenceRequestEntry& WithGeometry(const GeofenceGeometry& value) { SetGeometry(value); return *this;} /** *Contains the details of the position of the geofence. Can be either a polygon * or a circle. Including both will return a validation error.
Each * * geofence polygon can have a maximum of 1,000 vertices.
*/ inline BatchPutGeofenceRequestEntry& WithGeometry(GeofenceGeometry&& value) { SetGeometry(std::move(value)); return *this;} private: Aws::String m_geofenceId; bool m_geofenceIdHasBeenSet = false; Aws::Map