amazonka-identitystore-2.0: Amazon SSO Identity Store 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.IdentityStore.DescribeGroup

Description

Retrieves the group metadata and attributes from GroupId in an identity store.

Synopsis

Creating a Request

data DescribeGroup Source #

See: newDescribeGroup smart constructor.

Constructors

DescribeGroup' 

Fields

  • identityStoreId :: Text

    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 :: Text

    The identifier for a group in the identity store.

Instances

Instances details
ToJSON DescribeGroup Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

ToHeaders DescribeGroup Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

ToPath DescribeGroup Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

ToQuery DescribeGroup Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

AWSRequest DescribeGroup Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

Associated Types

type AWSResponse DescribeGroup #

Generic DescribeGroup Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

Associated Types

type Rep DescribeGroup :: Type -> Type #

Read DescribeGroup Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

Show DescribeGroup Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

NFData DescribeGroup Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

Methods

rnf :: DescribeGroup -> () #

Eq DescribeGroup Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

Hashable DescribeGroup Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

type AWSResponse DescribeGroup Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

type Rep DescribeGroup Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

type Rep DescribeGroup = D1 ('MetaData "DescribeGroup" "Amazonka.IdentityStore.DescribeGroup" "amazonka-identitystore-2.0-FD6RUaLi6gx9YE16ATGTMj" 'False) (C1 ('MetaCons "DescribeGroup'" 'PrefixI 'True) (S1 ('MetaSel ('Just "identityStoreId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "groupId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDescribeGroup Source #

Create a value of DescribeGroup 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:

DescribeGroup, 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.

DescribeGroup, describeGroup_groupId - The identifier for a group in the identity store.

Request Lenses

describeGroup_identityStoreId :: Lens' DescribeGroup Text Source #

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_groupId :: Lens' DescribeGroup Text Source #

The identifier for a group in the identity store.

Destructuring the Response

data DescribeGroupResponse Source #

See: newDescribeGroupResponse smart constructor.

Constructors

DescribeGroupResponse' 

Fields

  • description :: Maybe (Sensitive Text)

    A string containing a description of the group.

  • displayName :: Maybe (Sensitive 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.

  • externalIds :: Maybe (NonEmpty ExternalId)

    A list of ExternalId objects that contains the identifiers issued to this resource by an external identity provider.

  • httpStatus :: Int

    The response's http status code.

  • groupId :: Text

    The identifier for a group in the identity store.

  • identityStoreId :: Text

    The globally unique identifier for the identity store.

Instances

Instances details
Generic DescribeGroupResponse Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

Associated Types

type Rep DescribeGroupResponse :: Type -> Type #

Show DescribeGroupResponse Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

NFData DescribeGroupResponse Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

Methods

rnf :: DescribeGroupResponse -> () #

Eq DescribeGroupResponse Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

type Rep DescribeGroupResponse Source # 
Instance details

Defined in Amazonka.IdentityStore.DescribeGroup

type Rep DescribeGroupResponse = D1 ('MetaData "DescribeGroupResponse" "Amazonka.IdentityStore.DescribeGroup" "amazonka-identitystore-2.0-FD6RUaLi6gx9YE16ATGTMj" 'False) (C1 ('MetaCons "DescribeGroupResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "displayName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "externalIds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty ExternalId))))) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: (S1 ('MetaSel ('Just "groupId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "identityStoreId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newDescribeGroupResponse Source #

Create a value of DescribeGroupResponse 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:

DescribeGroupResponse, describeGroupResponse_description - A string containing a description of the group.

DescribeGroupResponse, 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.

DescribeGroupResponse, describeGroupResponse_externalIds - A list of ExternalId objects that contains the identifiers issued to this resource by an external identity provider.

$sel:httpStatus:DescribeGroupResponse', describeGroupResponse_httpStatus - The response's http status code.

DescribeGroup, describeGroupResponse_groupId - The identifier for a group in the identity store.

DescribeGroup, describeGroupResponse_identityStoreId - The globally unique identifier for the identity store.

Response Lenses

describeGroupResponse_description :: Lens' DescribeGroupResponse (Maybe Text) Source #

A string containing a description of the group.

describeGroupResponse_displayName :: Lens' DescribeGroupResponse (Maybe Text) Source #

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_externalIds :: Lens' DescribeGroupResponse (Maybe (NonEmpty ExternalId)) Source #

A list of ExternalId objects that contains the identifiers issued to this resource by an external identity provider.

describeGroupResponse_groupId :: Lens' DescribeGroupResponse Text Source #

The identifier for a group in the identity store.

describeGroupResponse_identityStoreId :: Lens' DescribeGroupResponse Text Source #

The globally unique identifier for the identity store.