UpdateGroupRequest

UpdateGroupRequest schema from AWS IAM Identity Center

Access ControlAuthenticationIdentity ManagementSingle Sign-On

Properties

Name Type Description
IdentityStoreId object
GroupId object
Operations object
View JSON Schema on GitHub

JSON Schema

identitystore-update-group-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-update-group-request-schema.json",
  "title": "UpdateGroupRequest",
  "description": "UpdateGroupRequest 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."
        }
      ]
    },
    "Operations": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AttributeOperations"
        },
        {
          "description": "A list of <code>AttributeOperation</code> objects to apply to the requested group. These operations might add, replace, or remove an attribute."
        }
      ]
    }
  },
  "required": [
    "IdentityStoreId",
    "GroupId",
    "Operations"
  ]
}