Amazon Cognito · Schema

GetGroupRequest

GetGroupRequest schema from Amazon Cognito

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
GroupName object
UserPoolId object
View JSON Schema on GitHub

JSON Schema

cognito-idp-get-group-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "GroupName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GroupNameType"
        },
        {
          "description": "The name of the group."
        }
      ]
    },
    "UserPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserPoolIdType"
        },
        {
          "description": "The user pool ID for the user pool."
        }
      ]
    }
  },
  "required": [
    "GroupName",
    "UserPoolId"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-idp-get-group-request-schema.json",
  "title": "GetGroupRequest",
  "description": "GetGroupRequest schema from Amazon Cognito"
}