amazonka-location-2.0: Amazon Location Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Location.Types.BatchPutGeofenceRequestEntry

Description

 
Synopsis

Documentation

data BatchPutGeofenceRequestEntry Source #

Contains geofence geometry details.

See: newBatchPutGeofenceRequestEntry smart constructor.

Constructors

BatchPutGeofenceRequestEntry' 

Fields

  • geofenceId :: Text

    The identifier for the geofence to be stored in a given geofence collection.

  • geometry :: GeofenceGeometry

    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.

Instances

Instances details
ToJSON BatchPutGeofenceRequestEntry Source # 
Instance details

Defined in Amazonka.Location.Types.BatchPutGeofenceRequestEntry

Generic BatchPutGeofenceRequestEntry Source # 
Instance details

Defined in Amazonka.Location.Types.BatchPutGeofenceRequestEntry

Associated Types

type Rep BatchPutGeofenceRequestEntry :: Type -> Type #

Show BatchPutGeofenceRequestEntry Source # 
Instance details

Defined in Amazonka.Location.Types.BatchPutGeofenceRequestEntry

NFData BatchPutGeofenceRequestEntry Source # 
Instance details

Defined in Amazonka.Location.Types.BatchPutGeofenceRequestEntry

Eq BatchPutGeofenceRequestEntry Source # 
Instance details

Defined in Amazonka.Location.Types.BatchPutGeofenceRequestEntry

Hashable BatchPutGeofenceRequestEntry Source # 
Instance details

Defined in Amazonka.Location.Types.BatchPutGeofenceRequestEntry

type Rep BatchPutGeofenceRequestEntry Source # 
Instance details

Defined in Amazonka.Location.Types.BatchPutGeofenceRequestEntry

type Rep BatchPutGeofenceRequestEntry = D1 ('MetaData "BatchPutGeofenceRequestEntry" "Amazonka.Location.Types.BatchPutGeofenceRequestEntry" "amazonka-location-2.0-4NLaYgEbMXwF6j2j7LAFNb" 'False) (C1 ('MetaCons "BatchPutGeofenceRequestEntry'" 'PrefixI 'True) (S1 ('MetaSel ('Just "geofenceId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "geometry") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 GeofenceGeometry)))

newBatchPutGeofenceRequestEntry Source #

Create a value of BatchPutGeofenceRequestEntry with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:geofenceId:BatchPutGeofenceRequestEntry', batchPutGeofenceRequestEntry_geofenceId - The identifier for the geofence to be stored in a given geofence collection.

$sel:geometry:BatchPutGeofenceRequestEntry', batchPutGeofenceRequestEntry_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.

batchPutGeofenceRequestEntry_geofenceId :: Lens' BatchPutGeofenceRequestEntry Text Source #

The identifier for the geofence to be stored in a given geofence collection.

batchPutGeofenceRequestEntry_geometry :: Lens' BatchPutGeofenceRequestEntry GeofenceGeometry Source #

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.