amazonka-iot-2.0: gen/Amazonka/IoT/CreateDynamicThingGroup.hs
{-# 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.IoT.CreateDynamicThingGroup
-- 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 dynamic thing group.
--
-- Requires permission to access the
-- <https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions CreateDynamicThingGroup>
-- action.
module Amazonka.IoT.CreateDynamicThingGroup
( -- * Creating a Request
CreateDynamicThingGroup (..),
newCreateDynamicThingGroup,
-- * Request Lenses
createDynamicThingGroup_indexName,
createDynamicThingGroup_queryVersion,
createDynamicThingGroup_tags,
createDynamicThingGroup_thingGroupProperties,
createDynamicThingGroup_thingGroupName,
createDynamicThingGroup_queryString,
-- * Destructuring the Response
CreateDynamicThingGroupResponse (..),
newCreateDynamicThingGroupResponse,
-- * Response Lenses
createDynamicThingGroupResponse_indexName,
createDynamicThingGroupResponse_queryString,
createDynamicThingGroupResponse_queryVersion,
createDynamicThingGroupResponse_thingGroupArn,
createDynamicThingGroupResponse_thingGroupId,
createDynamicThingGroupResponse_thingGroupName,
createDynamicThingGroupResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.IoT.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newCreateDynamicThingGroup' smart constructor.
data CreateDynamicThingGroup = CreateDynamicThingGroup'
{ -- | The dynamic thing group index name.
--
-- Currently one index is supported: @AWS_Things@.
indexName :: Prelude.Maybe Prelude.Text,
-- | The dynamic thing group query version.
--
-- Currently one query version is supported: \"2017-09-30\". If not
-- specified, the query version defaults to this value.
queryVersion :: Prelude.Maybe Prelude.Text,
-- | Metadata which can be used to manage the dynamic thing group.
tags :: Prelude.Maybe [Tag],
-- | The dynamic thing group properties.
thingGroupProperties :: Prelude.Maybe ThingGroupProperties,
-- | The dynamic thing group name to create.
thingGroupName :: Prelude.Text,
-- | The dynamic thing group search query string.
--
-- See
-- <https://docs.aws.amazon.com/iot/latest/developerguide/query-syntax.html Query Syntax>
-- for information about query string syntax.
queryString :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'CreateDynamicThingGroup' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'indexName', 'createDynamicThingGroup_indexName' - The dynamic thing group index name.
--
-- Currently one index is supported: @AWS_Things@.
--
-- 'queryVersion', 'createDynamicThingGroup_queryVersion' - The dynamic thing group query version.
--
-- Currently one query version is supported: \"2017-09-30\". If not
-- specified, the query version defaults to this value.
--
-- 'tags', 'createDynamicThingGroup_tags' - Metadata which can be used to manage the dynamic thing group.
--
-- 'thingGroupProperties', 'createDynamicThingGroup_thingGroupProperties' - The dynamic thing group properties.
--
-- 'thingGroupName', 'createDynamicThingGroup_thingGroupName' - The dynamic thing group name to create.
--
-- 'queryString', 'createDynamicThingGroup_queryString' - The dynamic thing group search query string.
--
-- See
-- <https://docs.aws.amazon.com/iot/latest/developerguide/query-syntax.html Query Syntax>
-- for information about query string syntax.
newCreateDynamicThingGroup ::
-- | 'thingGroupName'
Prelude.Text ->
-- | 'queryString'
Prelude.Text ->
CreateDynamicThingGroup
newCreateDynamicThingGroup
pThingGroupName_
pQueryString_ =
CreateDynamicThingGroup'
{ indexName =
Prelude.Nothing,
queryVersion = Prelude.Nothing,
tags = Prelude.Nothing,
thingGroupProperties = Prelude.Nothing,
thingGroupName = pThingGroupName_,
queryString = pQueryString_
}
-- | The dynamic thing group index name.
--
-- Currently one index is supported: @AWS_Things@.
createDynamicThingGroup_indexName :: Lens.Lens' CreateDynamicThingGroup (Prelude.Maybe Prelude.Text)
createDynamicThingGroup_indexName = Lens.lens (\CreateDynamicThingGroup' {indexName} -> indexName) (\s@CreateDynamicThingGroup' {} a -> s {indexName = a} :: CreateDynamicThingGroup)
-- | The dynamic thing group query version.
--
-- Currently one query version is supported: \"2017-09-30\". If not
-- specified, the query version defaults to this value.
createDynamicThingGroup_queryVersion :: Lens.Lens' CreateDynamicThingGroup (Prelude.Maybe Prelude.Text)
createDynamicThingGroup_queryVersion = Lens.lens (\CreateDynamicThingGroup' {queryVersion} -> queryVersion) (\s@CreateDynamicThingGroup' {} a -> s {queryVersion = a} :: CreateDynamicThingGroup)
-- | Metadata which can be used to manage the dynamic thing group.
createDynamicThingGroup_tags :: Lens.Lens' CreateDynamicThingGroup (Prelude.Maybe [Tag])
createDynamicThingGroup_tags = Lens.lens (\CreateDynamicThingGroup' {tags} -> tags) (\s@CreateDynamicThingGroup' {} a -> s {tags = a} :: CreateDynamicThingGroup) Prelude.. Lens.mapping Lens.coerced
-- | The dynamic thing group properties.
createDynamicThingGroup_thingGroupProperties :: Lens.Lens' CreateDynamicThingGroup (Prelude.Maybe ThingGroupProperties)
createDynamicThingGroup_thingGroupProperties = Lens.lens (\CreateDynamicThingGroup' {thingGroupProperties} -> thingGroupProperties) (\s@CreateDynamicThingGroup' {} a -> s {thingGroupProperties = a} :: CreateDynamicThingGroup)
-- | The dynamic thing group name to create.
createDynamicThingGroup_thingGroupName :: Lens.Lens' CreateDynamicThingGroup Prelude.Text
createDynamicThingGroup_thingGroupName = Lens.lens (\CreateDynamicThingGroup' {thingGroupName} -> thingGroupName) (\s@CreateDynamicThingGroup' {} a -> s {thingGroupName = a} :: CreateDynamicThingGroup)
-- | The dynamic thing group search query string.
--
-- See
-- <https://docs.aws.amazon.com/iot/latest/developerguide/query-syntax.html Query Syntax>
-- for information about query string syntax.
createDynamicThingGroup_queryString :: Lens.Lens' CreateDynamicThingGroup Prelude.Text
createDynamicThingGroup_queryString = Lens.lens (\CreateDynamicThingGroup' {queryString} -> queryString) (\s@CreateDynamicThingGroup' {} a -> s {queryString = a} :: CreateDynamicThingGroup)
instance Core.AWSRequest CreateDynamicThingGroup where
type
AWSResponse CreateDynamicThingGroup =
CreateDynamicThingGroupResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
CreateDynamicThingGroupResponse'
Prelude.<$> (x Data..?> "indexName")
Prelude.<*> (x Data..?> "queryString")
Prelude.<*> (x Data..?> "queryVersion")
Prelude.<*> (x Data..?> "thingGroupArn")
Prelude.<*> (x Data..?> "thingGroupId")
Prelude.<*> (x Data..?> "thingGroupName")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable CreateDynamicThingGroup where
hashWithSalt _salt CreateDynamicThingGroup' {..} =
_salt
`Prelude.hashWithSalt` indexName
`Prelude.hashWithSalt` queryVersion
`Prelude.hashWithSalt` tags
`Prelude.hashWithSalt` thingGroupProperties
`Prelude.hashWithSalt` thingGroupName
`Prelude.hashWithSalt` queryString
instance Prelude.NFData CreateDynamicThingGroup where
rnf CreateDynamicThingGroup' {..} =
Prelude.rnf indexName
`Prelude.seq` Prelude.rnf queryVersion
`Prelude.seq` Prelude.rnf tags
`Prelude.seq` Prelude.rnf thingGroupProperties
`Prelude.seq` Prelude.rnf thingGroupName
`Prelude.seq` Prelude.rnf queryString
instance Data.ToHeaders CreateDynamicThingGroup where
toHeaders = Prelude.const Prelude.mempty
instance Data.ToJSON CreateDynamicThingGroup where
toJSON CreateDynamicThingGroup' {..} =
Data.object
( Prelude.catMaybes
[ ("indexName" Data..=) Prelude.<$> indexName,
("queryVersion" Data..=) Prelude.<$> queryVersion,
("tags" Data..=) Prelude.<$> tags,
("thingGroupProperties" Data..=)
Prelude.<$> thingGroupProperties,
Prelude.Just ("queryString" Data..= queryString)
]
)
instance Data.ToPath CreateDynamicThingGroup where
toPath CreateDynamicThingGroup' {..} =
Prelude.mconcat
["/dynamic-thing-groups/", Data.toBS thingGroupName]
instance Data.ToQuery CreateDynamicThingGroup where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newCreateDynamicThingGroupResponse' smart constructor.
data CreateDynamicThingGroupResponse = CreateDynamicThingGroupResponse'
{ -- | The dynamic thing group index name.
indexName :: Prelude.Maybe Prelude.Text,
-- | The dynamic thing group search query string.
queryString :: Prelude.Maybe Prelude.Text,
-- | The dynamic thing group query version.
queryVersion :: Prelude.Maybe Prelude.Text,
-- | The dynamic thing group ARN.
thingGroupArn :: Prelude.Maybe Prelude.Text,
-- | The dynamic thing group ID.
thingGroupId :: Prelude.Maybe Prelude.Text,
-- | The dynamic thing group name.
thingGroupName :: Prelude.Maybe Prelude.Text,
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'CreateDynamicThingGroupResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'indexName', 'createDynamicThingGroupResponse_indexName' - The dynamic thing group index name.
--
-- 'queryString', 'createDynamicThingGroupResponse_queryString' - The dynamic thing group search query string.
--
-- 'queryVersion', 'createDynamicThingGroupResponse_queryVersion' - The dynamic thing group query version.
--
-- 'thingGroupArn', 'createDynamicThingGroupResponse_thingGroupArn' - The dynamic thing group ARN.
--
-- 'thingGroupId', 'createDynamicThingGroupResponse_thingGroupId' - The dynamic thing group ID.
--
-- 'thingGroupName', 'createDynamicThingGroupResponse_thingGroupName' - The dynamic thing group name.
--
-- 'httpStatus', 'createDynamicThingGroupResponse_httpStatus' - The response's http status code.
newCreateDynamicThingGroupResponse ::
-- | 'httpStatus'
Prelude.Int ->
CreateDynamicThingGroupResponse
newCreateDynamicThingGroupResponse pHttpStatus_ =
CreateDynamicThingGroupResponse'
{ indexName =
Prelude.Nothing,
queryString = Prelude.Nothing,
queryVersion = Prelude.Nothing,
thingGroupArn = Prelude.Nothing,
thingGroupId = Prelude.Nothing,
thingGroupName = Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | The dynamic thing group index name.
createDynamicThingGroupResponse_indexName :: Lens.Lens' CreateDynamicThingGroupResponse (Prelude.Maybe Prelude.Text)
createDynamicThingGroupResponse_indexName = Lens.lens (\CreateDynamicThingGroupResponse' {indexName} -> indexName) (\s@CreateDynamicThingGroupResponse' {} a -> s {indexName = a} :: CreateDynamicThingGroupResponse)
-- | The dynamic thing group search query string.
createDynamicThingGroupResponse_queryString :: Lens.Lens' CreateDynamicThingGroupResponse (Prelude.Maybe Prelude.Text)
createDynamicThingGroupResponse_queryString = Lens.lens (\CreateDynamicThingGroupResponse' {queryString} -> queryString) (\s@CreateDynamicThingGroupResponse' {} a -> s {queryString = a} :: CreateDynamicThingGroupResponse)
-- | The dynamic thing group query version.
createDynamicThingGroupResponse_queryVersion :: Lens.Lens' CreateDynamicThingGroupResponse (Prelude.Maybe Prelude.Text)
createDynamicThingGroupResponse_queryVersion = Lens.lens (\CreateDynamicThingGroupResponse' {queryVersion} -> queryVersion) (\s@CreateDynamicThingGroupResponse' {} a -> s {queryVersion = a} :: CreateDynamicThingGroupResponse)
-- | The dynamic thing group ARN.
createDynamicThingGroupResponse_thingGroupArn :: Lens.Lens' CreateDynamicThingGroupResponse (Prelude.Maybe Prelude.Text)
createDynamicThingGroupResponse_thingGroupArn = Lens.lens (\CreateDynamicThingGroupResponse' {thingGroupArn} -> thingGroupArn) (\s@CreateDynamicThingGroupResponse' {} a -> s {thingGroupArn = a} :: CreateDynamicThingGroupResponse)
-- | The dynamic thing group ID.
createDynamicThingGroupResponse_thingGroupId :: Lens.Lens' CreateDynamicThingGroupResponse (Prelude.Maybe Prelude.Text)
createDynamicThingGroupResponse_thingGroupId = Lens.lens (\CreateDynamicThingGroupResponse' {thingGroupId} -> thingGroupId) (\s@CreateDynamicThingGroupResponse' {} a -> s {thingGroupId = a} :: CreateDynamicThingGroupResponse)
-- | The dynamic thing group name.
createDynamicThingGroupResponse_thingGroupName :: Lens.Lens' CreateDynamicThingGroupResponse (Prelude.Maybe Prelude.Text)
createDynamicThingGroupResponse_thingGroupName = Lens.lens (\CreateDynamicThingGroupResponse' {thingGroupName} -> thingGroupName) (\s@CreateDynamicThingGroupResponse' {} a -> s {thingGroupName = a} :: CreateDynamicThingGroupResponse)
-- | The response's http status code.
createDynamicThingGroupResponse_httpStatus :: Lens.Lens' CreateDynamicThingGroupResponse Prelude.Int
createDynamicThingGroupResponse_httpStatus = Lens.lens (\CreateDynamicThingGroupResponse' {httpStatus} -> httpStatus) (\s@CreateDynamicThingGroupResponse' {} a -> s {httpStatus = a} :: CreateDynamicThingGroupResponse)
instance
Prelude.NFData
CreateDynamicThingGroupResponse
where
rnf CreateDynamicThingGroupResponse' {..} =
Prelude.rnf indexName
`Prelude.seq` Prelude.rnf queryString
`Prelude.seq` Prelude.rnf queryVersion
`Prelude.seq` Prelude.rnf thingGroupArn
`Prelude.seq` Prelude.rnf thingGroupId
`Prelude.seq` Prelude.rnf thingGroupName
`Prelude.seq` Prelude.rnf httpStatus