PermissionSetProvisioningStatus

A structure that is used to provide the status of the provisioning operation for a specified permission set.

Access ControlAuthenticationIdentity ManagementSingle Sign-On

Properties

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

JSON Schema

sso-admin-permission-set-provisioning-status-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-permission-set-provisioning-status-schema.json",
  "title": "PermissionSetProvisioningStatus",
  "description": "A structure that is used to provide the status of the provisioning operation for a specified permission set.",
  "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."
        }
      ]
    },
    "AccountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "description": "The identifier of the AWS account from which to list the assignments."
        }
      ]
    },
    "PermissionSetArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PermissionSetArn"
        },
        {
          "description": "The ARN of the permission set that is being provisioned. For more information about ARNs, see <a href=\"/general/latest/gr/aws-arns-and-namespaces.html\">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>."
        }
      ]
    },
    "FailureReason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Reason"
        },
        {
          "description": "The message that contains an error or exception in case of an operation failure."
        }
      ]
    },
    "CreatedDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Date"
        },
        {
          "description": "The date that the permission set was created."
        }
      ]
    }
  }
}