Amazon IAM Identity Center · JSON Structure

Identitystore Describe Group Membership Response Structure

DescribeGroupMembershipResponse schema from AWS IAM Identity Center

Type: object Properties: 4 Required: 4
Access ControlAuthenticationIdentity ManagementSingle Sign-On

DescribeGroupMembershipResponse is a JSON Structure definition published by Amazon IAM Identity Center, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

IdentityStoreId MembershipId GroupId MemberId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-identity-center/refs/heads/main/json-structure/identitystore-describe-group-membership-response-structure.json",
  "name": "DescribeGroupMembershipResponse",
  "description": "DescribeGroupMembershipResponse schema from AWS IAM Identity Center",
  "type": "object",
  "properties": {
    "IdentityStoreId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityStoreId"
        },
        {
          "description": "The globally unique identifier for the identity store."
        }
      ]
    },
    "MembershipId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceId"
        },
        {
          "description": "The identifier for a <code>GroupMembership</code> in an identity store."
        }
      ]
    },
    "GroupId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceId"
        },
        {
          "description": "The identifier for a group in the identity store."
        }
      ]
    },
    "MemberId": {
      "type": "object",
      "properties": {
        "UserId": {
          "allOf": [
            {
              "$ref": "#/components/schemas/ResourceId"
            },
            {
              "description": "An object containing the identifiers of resources that can be members."
            }
          ]
        }
      },
      "description": "An object containing the identifier of a group member."
    }
  },
  "required": [
    "IdentityStoreId",
    "MembershipId",
    "GroupId",
    "MemberId"
  ]
}