Amazon IAM · Schema

GetGroupResponse

GetGroupResponse schema from AWS IAM API

Access ManagementAuthenticationAuthorizationIdentitySecurity

Properties

Name Type Description
GetGroupResult object
View JSON Schema on GitHub

JSON Schema

amazon-iam-get-group-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam/refs/heads/main/json-schema/amazon-iam-get-group-response-schema.json",
  "title": "GetGroupResponse",
  "description": "GetGroupResponse schema from AWS IAM API",
  "type": "object",
  "properties": {
    "GetGroupResult": {
      "type": "object",
      "properties": {
        "Group": {
          "$ref": "#/components/schemas/Group"
        },
        "Users": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/User"
          }
        },
        "IsTruncated": {
          "type": "boolean"
        },
        "Marker": {
          "type": "string"
        }
      }
    }
  }
}