Amazon IAM Identity Center · Schema
ListGroupsRequest
ListGroupsRequest schema from AWS IAM Identity Center
Access ControlAuthenticationIdentity ManagementSingle Sign-On
Properties
| Name | Type | Description |
|---|---|---|
| IdentityStoreId | object | |
| MaxResults | object | |
| NextToken | object | |
| Filters | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-identity-center/refs/heads/main/json-schema/identitystore-list-groups-request-schema.json",
"title": "ListGroupsRequest",
"description": "ListGroupsRequest schema from AWS IAM Identity Center",
"type": "object",
"properties": {
"IdentityStoreId": {
"allOf": [
{
"$ref": "#/components/schemas/IdentityStoreId"
},
{
"description": "The globally unique identifier for the identity store, such as <code>d-1234567890</code>. In this example, <code>d-</code> is a fixed prefix, and <code>1234567890</code> 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."
}
]
},
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/MaxResults"
},
{
"description": "The maximum number of results to be returned per request. This parameter is used in the <code>ListUsers</code> and <code>ListGroups</code> requests to specify how many results to return in one page. The length limit is 50 characters."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "The pagination token used for the <code>ListUsers</code> and <code>ListGroups</code> API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page."
}
]
},
"Filters": {
"allOf": [
{
"$ref": "#/components/schemas/Filters"
},
{
"deprecated": true,
"description": "A list of <code>Filter</code> objects, which is used in the <code>ListUsers</code> and <code>ListGroups</code> requests.Using filters with ListGroups API is deprecated, please use GetGroupId API instead."
}
]
}
},
"required": [
"IdentityStoreId"
]
}