Skip to content

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

[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"
)