ListGroupMembershipsRequest

ListGroupMembershipsRequest schema from AWS IAM Identity Center

Access ControlAuthenticationIdentity ManagementSingle Sign-On

Properties

Name Type Description
IdentityStoreId object
GroupId object
MaxResults object
NextToken object
View JSON Schema on GitHub

JSON Schema

identitystore-list-group-memberships-request-schema.json Raw ↑
{
  "$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-group-memberships-request-schema.json",
  "title": "ListGroupMembershipsRequest",
  "description": "ListGroupMembershipsRequest schema from AWS IAM Identity Center",
  "type": "object",
  "properties": {
    "IdentityStoreId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityStoreId"
        },
        {
          "description": "The globally unique identifier for the identity store."
        }
      ]
    },
    "GroupId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceId"
        },
        {
          "description": "The identifier for a group in the identity store."
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaxResults"
        },
        {
          "description": "The maximum number of results to be returned per request. This parameter is used in all <code>List</code> requests to specify how many results to return in one page."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "The pagination token used for the <code>ListUsers</code>, <code>ListGroups</code> and <code>ListGroupMemberships</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."
        }
      ]
    }
  },
  "required": [
    "IdentityStoreId",
    "GroupId"
  ]
}