Create Group
| identitystore_create_group | R Documentation | 
Creates a group within the specified identity store¶
Description¶
Creates a group within the specified identity store.
Usage¶
identitystore_create_group(IdentityStoreId, DisplayName, Description)
Arguments¶
| IdentityStoreId | [required] The globally unique identifier for the identity store. | 
| DisplayName | A string containing the name of the group. This value is commonly
displayed when the group is referenced.  | 
| Description | A string containing the description of the group. | 
Value¶
A list with the following syntax:
list(
  GroupId = "string",
  IdentityStoreId = "string"
)
Request syntax¶
svc$create_group(
  IdentityStoreId = "string",
  DisplayName = "string",
  Description = "string"
)