amazonka-identitystore-2.0: gen/Amazonka/IdentityStore/DescribeGroup.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.IdentityStore.DescribeGroup
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Retrieves the group metadata and attributes from @GroupId@ in an
-- identity store.
module Amazonka.IdentityStore.DescribeGroup
( -- * Creating a Request
DescribeGroup (..),
newDescribeGroup,
-- * Request Lenses
describeGroup_identityStoreId,
describeGroup_groupId,
-- * Destructuring the Response
DescribeGroupResponse (..),
newDescribeGroupResponse,
-- * Response Lenses
describeGroupResponse_description,
describeGroupResponse_displayName,
describeGroupResponse_externalIds,
describeGroupResponse_httpStatus,
describeGroupResponse_groupId,
describeGroupResponse_identityStoreId,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.IdentityStore.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newDescribeGroup' smart constructor.
data DescribeGroup = DescribeGroup'
{ -- | The globally unique identifier for the identity store, such as
-- @d-1234567890@. In this example, @d-@ is a fixed prefix, and
-- @1234567890@ is a randomly generated string that contains numbers and
-- lower case letters. This value is generated at the time that a new
-- identity store is created.
identityStoreId :: Prelude.Text,
-- | The identifier for a group in the identity store.
groupId :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DescribeGroup' 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:
--
-- 'identityStoreId', 'describeGroup_identityStoreId' - The globally unique identifier for the identity store, such as
-- @d-1234567890@. In this example, @d-@ is a fixed prefix, and
-- @1234567890@ is a randomly generated string that contains numbers and
-- lower case letters. This value is generated at the time that a new
-- identity store is created.
--
-- 'groupId', 'describeGroup_groupId' - The identifier for a group in the identity store.
newDescribeGroup ::
-- | 'identityStoreId'
Prelude.Text ->
-- | 'groupId'
Prelude.Text ->
DescribeGroup
newDescribeGroup pIdentityStoreId_ pGroupId_ =
DescribeGroup'
{ identityStoreId = pIdentityStoreId_,
groupId = pGroupId_
}
-- | The globally unique identifier for the identity store, such as
-- @d-1234567890@. In this example, @d-@ is a fixed prefix, and
-- @1234567890@ is a randomly generated string that contains numbers and
-- lower case letters. This value is generated at the time that a new
-- identity store is created.
describeGroup_identityStoreId :: Lens.Lens' DescribeGroup Prelude.Text
describeGroup_identityStoreId = Lens.lens (\DescribeGroup' {identityStoreId} -> identityStoreId) (\s@DescribeGroup' {} a -> s {identityStoreId = a} :: DescribeGroup)
-- | The identifier for a group in the identity store.
describeGroup_groupId :: Lens.Lens' DescribeGroup Prelude.Text
describeGroup_groupId = Lens.lens (\DescribeGroup' {groupId} -> groupId) (\s@DescribeGroup' {} a -> s {groupId = a} :: DescribeGroup)
instance Core.AWSRequest DescribeGroup where
type
AWSResponse DescribeGroup =
DescribeGroupResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
DescribeGroupResponse'
Prelude.<$> (x Data..?> "Description")
Prelude.<*> (x Data..?> "DisplayName")
Prelude.<*> (x Data..?> "ExternalIds")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
Prelude.<*> (x Data..:> "GroupId")
Prelude.<*> (x Data..:> "IdentityStoreId")
)
instance Prelude.Hashable DescribeGroup where
hashWithSalt _salt DescribeGroup' {..} =
_salt
`Prelude.hashWithSalt` identityStoreId
`Prelude.hashWithSalt` groupId
instance Prelude.NFData DescribeGroup where
rnf DescribeGroup' {..} =
Prelude.rnf identityStoreId
`Prelude.seq` Prelude.rnf groupId
instance Data.ToHeaders DescribeGroup where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ( "AWSIdentityStore.DescribeGroup" ::
Prelude.ByteString
),
"Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON DescribeGroup where
toJSON DescribeGroup' {..} =
Data.object
( Prelude.catMaybes
[ Prelude.Just
("IdentityStoreId" Data..= identityStoreId),
Prelude.Just ("GroupId" Data..= groupId)
]
)
instance Data.ToPath DescribeGroup where
toPath = Prelude.const "/"
instance Data.ToQuery DescribeGroup where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newDescribeGroupResponse' smart constructor.
data DescribeGroupResponse = DescribeGroupResponse'
{ -- | A string containing a description of the group.
description :: Prelude.Maybe (Data.Sensitive Prelude.Text),
-- | The group’s display name value. The length limit is 1,024 characters.
-- This value can consist of letters, accented characters, symbols,
-- numbers, punctuation, tab, new line, carriage return, space, and
-- nonbreaking space in this attribute. This value is specified at the time
-- that the group is created and stored as an attribute of the group object
-- in the identity store.
displayName :: Prelude.Maybe (Data.Sensitive Prelude.Text),
-- | A list of @ExternalId@ objects that contains the identifiers issued to
-- this resource by an external identity provider.
externalIds :: Prelude.Maybe (Prelude.NonEmpty ExternalId),
-- | The response's http status code.
httpStatus :: Prelude.Int,
-- | The identifier for a group in the identity store.
groupId :: Prelude.Text,
-- | The globally unique identifier for the identity store.
identityStoreId :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DescribeGroupResponse' 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:
--
-- 'description', 'describeGroupResponse_description' - A string containing a description of the group.
--
-- 'displayName', 'describeGroupResponse_displayName' - The group’s display name value. The length limit is 1,024 characters.
-- This value can consist of letters, accented characters, symbols,
-- numbers, punctuation, tab, new line, carriage return, space, and
-- nonbreaking space in this attribute. This value is specified at the time
-- that the group is created and stored as an attribute of the group object
-- in the identity store.
--
-- 'externalIds', 'describeGroupResponse_externalIds' - A list of @ExternalId@ objects that contains the identifiers issued to
-- this resource by an external identity provider.
--
-- 'httpStatus', 'describeGroupResponse_httpStatus' - The response's http status code.
--
-- 'groupId', 'describeGroupResponse_groupId' - The identifier for a group in the identity store.
--
-- 'identityStoreId', 'describeGroupResponse_identityStoreId' - The globally unique identifier for the identity store.
newDescribeGroupResponse ::
-- | 'httpStatus'
Prelude.Int ->
-- | 'groupId'
Prelude.Text ->
-- | 'identityStoreId'
Prelude.Text ->
DescribeGroupResponse
newDescribeGroupResponse
pHttpStatus_
pGroupId_
pIdentityStoreId_ =
DescribeGroupResponse'
{ description =
Prelude.Nothing,
displayName = Prelude.Nothing,
externalIds = Prelude.Nothing,
httpStatus = pHttpStatus_,
groupId = pGroupId_,
identityStoreId = pIdentityStoreId_
}
-- | A string containing a description of the group.
describeGroupResponse_description :: Lens.Lens' DescribeGroupResponse (Prelude.Maybe Prelude.Text)
describeGroupResponse_description = Lens.lens (\DescribeGroupResponse' {description} -> description) (\s@DescribeGroupResponse' {} a -> s {description = a} :: DescribeGroupResponse) Prelude.. Lens.mapping Data._Sensitive
-- | The group’s display name value. The length limit is 1,024 characters.
-- This value can consist of letters, accented characters, symbols,
-- numbers, punctuation, tab, new line, carriage return, space, and
-- nonbreaking space in this attribute. This value is specified at the time
-- that the group is created and stored as an attribute of the group object
-- in the identity store.
describeGroupResponse_displayName :: Lens.Lens' DescribeGroupResponse (Prelude.Maybe Prelude.Text)
describeGroupResponse_displayName = Lens.lens (\DescribeGroupResponse' {displayName} -> displayName) (\s@DescribeGroupResponse' {} a -> s {displayName = a} :: DescribeGroupResponse) Prelude.. Lens.mapping Data._Sensitive
-- | A list of @ExternalId@ objects that contains the identifiers issued to
-- this resource by an external identity provider.
describeGroupResponse_externalIds :: Lens.Lens' DescribeGroupResponse (Prelude.Maybe (Prelude.NonEmpty ExternalId))
describeGroupResponse_externalIds = Lens.lens (\DescribeGroupResponse' {externalIds} -> externalIds) (\s@DescribeGroupResponse' {} a -> s {externalIds = a} :: DescribeGroupResponse) Prelude.. Lens.mapping Lens.coerced
-- | The response's http status code.
describeGroupResponse_httpStatus :: Lens.Lens' DescribeGroupResponse Prelude.Int
describeGroupResponse_httpStatus = Lens.lens (\DescribeGroupResponse' {httpStatus} -> httpStatus) (\s@DescribeGroupResponse' {} a -> s {httpStatus = a} :: DescribeGroupResponse)
-- | The identifier for a group in the identity store.
describeGroupResponse_groupId :: Lens.Lens' DescribeGroupResponse Prelude.Text
describeGroupResponse_groupId = Lens.lens (\DescribeGroupResponse' {groupId} -> groupId) (\s@DescribeGroupResponse' {} a -> s {groupId = a} :: DescribeGroupResponse)
-- | The globally unique identifier for the identity store.
describeGroupResponse_identityStoreId :: Lens.Lens' DescribeGroupResponse Prelude.Text
describeGroupResponse_identityStoreId = Lens.lens (\DescribeGroupResponse' {identityStoreId} -> identityStoreId) (\s@DescribeGroupResponse' {} a -> s {identityStoreId = a} :: DescribeGroupResponse)
instance Prelude.NFData DescribeGroupResponse where
rnf DescribeGroupResponse' {..} =
Prelude.rnf description
`Prelude.seq` Prelude.rnf displayName
`Prelude.seq` Prelude.rnf externalIds
`Prelude.seq` Prelude.rnf httpStatus
`Prelude.seq` Prelude.rnf groupId
`Prelude.seq` Prelude.rnf identityStoreId