AccountAssignmentOperationStatusMetadata

Provides information about the AccountAssignment creation request.

Access ControlAuthenticationIdentity ManagementSingle Sign-On

Properties

Name Type Description
Status object
RequestId object
CreatedDate object
View JSON Schema on GitHub

JSON Schema

sso-admin-account-assignment-operation-status-metadata-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/sso-admin-account-assignment-operation-status-metadata-schema.json",
  "title": "AccountAssignmentOperationStatusMetadata",
  "description": "Provides information about the <a>AccountAssignment</a> creation request.",
  "type": "object",
  "properties": {
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StatusValues"
        },
        {
          "description": "The status of the permission set provisioning process."
        }
      ]
    },
    "RequestId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UUId"
        },
        {
          "description": "The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow."
        }
      ]
    },
    "CreatedDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Date"
        },
        {
          "description": "The date that the permission set was created."
        }
      ]
    }
  }
}