Describe Group
identitystore_describe_group | R Documentation |
Retrieves the group metadata and attributes from GroupId in an identity store¶
Description¶
Retrieves the group metadata and attributes from GroupId
in an
identity store.
If you have administrator access to a member account, you can use this API from the member account. Read about member accounts in the Organizations User Guide.
Usage¶
identitystore_describe_group(IdentityStoreId, GroupId)
Arguments¶
IdentityStoreId |
[required] The globally unique identifier for the identity store,
such as |
GroupId |
[required] The identifier for a group in the identity store. |
Value¶
A list with the following syntax:
list(
GroupId = "string",
DisplayName = "string",
ExternalIds = list(
list(
Issuer = "string",
Id = "string"
)
),
Description = "string",
IdentityStoreId = "string"
)
Request syntax¶
svc$describe_group(
IdentityStoreId = "string",
GroupId = "string"
)