{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.Location.CreateGeofenceCollection -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Creates a geofence collection, which manages and stores geofences. module Amazonka.Location.CreateGeofenceCollection ( -- * Creating a Request CreateGeofenceCollection (..), newCreateGeofenceCollection, -- * Request Lenses createGeofenceCollection_description, createGeofenceCollection_kmsKeyId, createGeofenceCollection_pricingPlan, createGeofenceCollection_pricingPlanDataSource, createGeofenceCollection_tags, createGeofenceCollection_collectionName, -- * Destructuring the Response CreateGeofenceCollectionResponse (..), newCreateGeofenceCollectionResponse, -- * Response Lenses createGeofenceCollectionResponse_httpStatus, createGeofenceCollectionResponse_collectionArn, createGeofenceCollectionResponse_collectionName, createGeofenceCollectionResponse_createTime, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.Location.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newCreateGeofenceCollection' smart constructor. data CreateGeofenceCollection = CreateGeofenceCollection' { -- | An optional description for the geofence collection. description :: Prelude.Maybe Prelude.Text, -- | A key identifier for an -- . -- Enter a key ID, key ARN, alias name, or alias ARN. kmsKeyId :: Prelude.Maybe Prelude.Text, -- | No longer used. If included, the only allowed value is -- @RequestBasedUsage@. pricingPlan :: Prelude.Maybe PricingPlan, -- | This parameter is no longer used. pricingPlanDataSource :: Prelude.Maybe Prelude.Text, -- | Applies one or more tags to the geofence collection. A tag is a -- key-value pair helps manage, identify, search, and filter your resources -- by labelling them. -- -- Format: @\"key\" : \"value\"@ -- -- Restrictions: -- -- - Maximum 50 tags per resource -- -- - Each resource tag must be unique with a maximum of one value. -- -- - Maximum key length: 128 Unicode characters in UTF-8 -- -- - Maximum value length: 256 Unicode characters in UTF-8 -- -- - Can use alphanumeric characters (A–Z, a–z, 0–9), and the following -- characters: + - = . _ : \/ \@. -- -- - Cannot use \"aws:\" as a prefix for a key. tags :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text), -- | A custom name for the geofence collection. -- -- Requirements: -- -- - Contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), -- periods (.), and underscores (_). -- -- - Must be a unique geofence collection name. -- -- - No spaces allowed. For example, @ExampleGeofenceCollection@. collectionName :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CreateGeofenceCollection' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'description', 'createGeofenceCollection_description' - An optional description for the geofence collection. -- -- 'kmsKeyId', 'createGeofenceCollection_kmsKeyId' - A key identifier for an -- . -- Enter a key ID, key ARN, alias name, or alias ARN. -- -- 'pricingPlan', 'createGeofenceCollection_pricingPlan' - No longer used. If included, the only allowed value is -- @RequestBasedUsage@. -- -- 'pricingPlanDataSource', 'createGeofenceCollection_pricingPlanDataSource' - This parameter is no longer used. -- -- 'tags', 'createGeofenceCollection_tags' - Applies one or more tags to the geofence collection. A tag is a -- key-value pair helps manage, identify, search, and filter your resources -- by labelling them. -- -- Format: @\"key\" : \"value\"@ -- -- Restrictions: -- -- - Maximum 50 tags per resource -- -- - Each resource tag must be unique with a maximum of one value. -- -- - Maximum key length: 128 Unicode characters in UTF-8 -- -- - Maximum value length: 256 Unicode characters in UTF-8 -- -- - Can use alphanumeric characters (A–Z, a–z, 0–9), and the following -- characters: + - = . _ : \/ \@. -- -- - Cannot use \"aws:\" as a prefix for a key. -- -- 'collectionName', 'createGeofenceCollection_collectionName' - A custom name for the geofence collection. -- -- Requirements: -- -- - Contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), -- periods (.), and underscores (_). -- -- - Must be a unique geofence collection name. -- -- - No spaces allowed. For example, @ExampleGeofenceCollection@. newCreateGeofenceCollection :: -- | 'collectionName' Prelude.Text -> CreateGeofenceCollection newCreateGeofenceCollection pCollectionName_ = CreateGeofenceCollection' { description = Prelude.Nothing, kmsKeyId = Prelude.Nothing, pricingPlan = Prelude.Nothing, pricingPlanDataSource = Prelude.Nothing, tags = Prelude.Nothing, collectionName = pCollectionName_ } -- | An optional description for the geofence collection. createGeofenceCollection_description :: Lens.Lens' CreateGeofenceCollection (Prelude.Maybe Prelude.Text) createGeofenceCollection_description = Lens.lens (\CreateGeofenceCollection' {description} -> description) (\s@CreateGeofenceCollection' {} a -> s {description = a} :: CreateGeofenceCollection) -- | A key identifier for an -- . -- Enter a key ID, key ARN, alias name, or alias ARN. createGeofenceCollection_kmsKeyId :: Lens.Lens' CreateGeofenceCollection (Prelude.Maybe Prelude.Text) createGeofenceCollection_kmsKeyId = Lens.lens (\CreateGeofenceCollection' {kmsKeyId} -> kmsKeyId) (\s@CreateGeofenceCollection' {} a -> s {kmsKeyId = a} :: CreateGeofenceCollection) -- | No longer used. If included, the only allowed value is -- @RequestBasedUsage@. createGeofenceCollection_pricingPlan :: Lens.Lens' CreateGeofenceCollection (Prelude.Maybe PricingPlan) createGeofenceCollection_pricingPlan = Lens.lens (\CreateGeofenceCollection' {pricingPlan} -> pricingPlan) (\s@CreateGeofenceCollection' {} a -> s {pricingPlan = a} :: CreateGeofenceCollection) -- | This parameter is no longer used. createGeofenceCollection_pricingPlanDataSource :: Lens.Lens' CreateGeofenceCollection (Prelude.Maybe Prelude.Text) createGeofenceCollection_pricingPlanDataSource = Lens.lens (\CreateGeofenceCollection' {pricingPlanDataSource} -> pricingPlanDataSource) (\s@CreateGeofenceCollection' {} a -> s {pricingPlanDataSource = a} :: CreateGeofenceCollection) -- | Applies one or more tags to the geofence collection. A tag is a -- key-value pair helps manage, identify, search, and filter your resources -- by labelling them. -- -- Format: @\"key\" : \"value\"@ -- -- Restrictions: -- -- - Maximum 50 tags per resource -- -- - Each resource tag must be unique with a maximum of one value. -- -- - Maximum key length: 128 Unicode characters in UTF-8 -- -- - Maximum value length: 256 Unicode characters in UTF-8 -- -- - Can use alphanumeric characters (A–Z, a–z, 0–9), and the following -- characters: + - = . _ : \/ \@. -- -- - Cannot use \"aws:\" as a prefix for a key. createGeofenceCollection_tags :: Lens.Lens' CreateGeofenceCollection (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text)) createGeofenceCollection_tags = Lens.lens (\CreateGeofenceCollection' {tags} -> tags) (\s@CreateGeofenceCollection' {} a -> s {tags = a} :: CreateGeofenceCollection) Prelude.. Lens.mapping Lens.coerced -- | A custom name for the geofence collection. -- -- Requirements: -- -- - Contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), -- periods (.), and underscores (_). -- -- - Must be a unique geofence collection name. -- -- - No spaces allowed. For example, @ExampleGeofenceCollection@. createGeofenceCollection_collectionName :: Lens.Lens' CreateGeofenceCollection Prelude.Text createGeofenceCollection_collectionName = Lens.lens (\CreateGeofenceCollection' {collectionName} -> collectionName) (\s@CreateGeofenceCollection' {} a -> s {collectionName = a} :: CreateGeofenceCollection) instance Core.AWSRequest CreateGeofenceCollection where type AWSResponse CreateGeofenceCollection = CreateGeofenceCollectionResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> CreateGeofenceCollectionResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) Prelude.<*> (x Data..:> "CollectionArn") Prelude.<*> (x Data..:> "CollectionName") Prelude.<*> (x Data..:> "CreateTime") ) instance Prelude.Hashable CreateGeofenceCollection where hashWithSalt _salt CreateGeofenceCollection' {..} = _salt `Prelude.hashWithSalt` description `Prelude.hashWithSalt` kmsKeyId `Prelude.hashWithSalt` pricingPlan `Prelude.hashWithSalt` pricingPlanDataSource `Prelude.hashWithSalt` tags `Prelude.hashWithSalt` collectionName instance Prelude.NFData CreateGeofenceCollection where rnf CreateGeofenceCollection' {..} = Prelude.rnf description `Prelude.seq` Prelude.rnf kmsKeyId `Prelude.seq` Prelude.rnf pricingPlan `Prelude.seq` Prelude.rnf pricingPlanDataSource `Prelude.seq` Prelude.rnf tags `Prelude.seq` Prelude.rnf collectionName instance Data.ToHeaders CreateGeofenceCollection where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON CreateGeofenceCollection where toJSON CreateGeofenceCollection' {..} = Data.object ( Prelude.catMaybes [ ("Description" Data..=) Prelude.<$> description, ("KmsKeyId" Data..=) Prelude.<$> kmsKeyId, ("PricingPlan" Data..=) Prelude.<$> pricingPlan, ("PricingPlanDataSource" Data..=) Prelude.<$> pricingPlanDataSource, ("Tags" Data..=) Prelude.<$> tags, Prelude.Just ("CollectionName" Data..= collectionName) ] ) instance Data.ToPath CreateGeofenceCollection where toPath = Prelude.const "/geofencing/v0/collections" instance Data.ToQuery CreateGeofenceCollection where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newCreateGeofenceCollectionResponse' smart constructor. data CreateGeofenceCollectionResponse = CreateGeofenceCollectionResponse' { -- | The response's http status code. httpStatus :: Prelude.Int, -- | The Amazon Resource Name (ARN) for the geofence collection resource. -- Used when you need to specify a resource across all AWS. -- -- - Format example: -- @arn:aws:geo:region:account-id:geofence-collection\/ExampleGeofenceCollection@ collectionArn :: Prelude.Text, -- | The name for the geofence collection. collectionName :: Prelude.Text, -- | The timestamp for when the geofence collection was created in -- -- format: @YYYY-MM-DDThh:mm:ss.sssZ@ createTime :: Data.ISO8601 } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CreateGeofenceCollectionResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'httpStatus', 'createGeofenceCollectionResponse_httpStatus' - The response's http status code. -- -- 'collectionArn', 'createGeofenceCollectionResponse_collectionArn' - The Amazon Resource Name (ARN) for the geofence collection resource. -- Used when you need to specify a resource across all AWS. -- -- - Format example: -- @arn:aws:geo:region:account-id:geofence-collection\/ExampleGeofenceCollection@ -- -- 'collectionName', 'createGeofenceCollectionResponse_collectionName' - The name for the geofence collection. -- -- 'createTime', 'createGeofenceCollectionResponse_createTime' - The timestamp for when the geofence collection was created in -- -- format: @YYYY-MM-DDThh:mm:ss.sssZ@ newCreateGeofenceCollectionResponse :: -- | 'httpStatus' Prelude.Int -> -- | 'collectionArn' Prelude.Text -> -- | 'collectionName' Prelude.Text -> -- | 'createTime' Prelude.UTCTime -> CreateGeofenceCollectionResponse newCreateGeofenceCollectionResponse pHttpStatus_ pCollectionArn_ pCollectionName_ pCreateTime_ = CreateGeofenceCollectionResponse' { httpStatus = pHttpStatus_, collectionArn = pCollectionArn_, collectionName = pCollectionName_, createTime = Data._Time Lens.# pCreateTime_ } -- | The response's http status code. createGeofenceCollectionResponse_httpStatus :: Lens.Lens' CreateGeofenceCollectionResponse Prelude.Int createGeofenceCollectionResponse_httpStatus = Lens.lens (\CreateGeofenceCollectionResponse' {httpStatus} -> httpStatus) (\s@CreateGeofenceCollectionResponse' {} a -> s {httpStatus = a} :: CreateGeofenceCollectionResponse) -- | The Amazon Resource Name (ARN) for the geofence collection resource. -- Used when you need to specify a resource across all AWS. -- -- - Format example: -- @arn:aws:geo:region:account-id:geofence-collection\/ExampleGeofenceCollection@ createGeofenceCollectionResponse_collectionArn :: Lens.Lens' CreateGeofenceCollectionResponse Prelude.Text createGeofenceCollectionResponse_collectionArn = Lens.lens (\CreateGeofenceCollectionResponse' {collectionArn} -> collectionArn) (\s@CreateGeofenceCollectionResponse' {} a -> s {collectionArn = a} :: CreateGeofenceCollectionResponse) -- | The name for the geofence collection. createGeofenceCollectionResponse_collectionName :: Lens.Lens' CreateGeofenceCollectionResponse Prelude.Text createGeofenceCollectionResponse_collectionName = Lens.lens (\CreateGeofenceCollectionResponse' {collectionName} -> collectionName) (\s@CreateGeofenceCollectionResponse' {} a -> s {collectionName = a} :: CreateGeofenceCollectionResponse) -- | The timestamp for when the geofence collection was created in -- -- format: @YYYY-MM-DDThh:mm:ss.sssZ@ createGeofenceCollectionResponse_createTime :: Lens.Lens' CreateGeofenceCollectionResponse Prelude.UTCTime createGeofenceCollectionResponse_createTime = Lens.lens (\CreateGeofenceCollectionResponse' {createTime} -> createTime) (\s@CreateGeofenceCollectionResponse' {} a -> s {createTime = a} :: CreateGeofenceCollectionResponse) Prelude.. Data._Time instance Prelude.NFData CreateGeofenceCollectionResponse where rnf CreateGeofenceCollectionResponse' {..} = Prelude.rnf httpStatus `Prelude.seq` Prelude.rnf collectionArn `Prelude.seq` Prelude.rnf collectionName `Prelude.seq` Prelude.rnf createTime