ProvisionPermissionSetRequest

ProvisionPermissionSetRequest schema from AWS IAM Identity Center

Access ControlAuthenticationIdentity ManagementSingle Sign-On

Properties

Name Type Description
InstanceArn object
PermissionSetArn object
TargetId object
TargetType object
View JSON Schema on GitHub

JSON Schema

sso-admin-provision-permission-set-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/sso-admin-provision-permission-set-request-schema.json",
  "title": "ProvisionPermissionSetRequest",
  "description": "ProvisionPermissionSetRequest schema from AWS IAM Identity Center",
  "type": "object",
  "properties": {
    "InstanceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceArn"
        },
        {
          "description": "The ARN of the IAM Identity Center instance under which the operation will be executed. 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>."
        }
      ]
    },
    "PermissionSetArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PermissionSetArn"
        },
        {
          "description": "The ARN of the permission set."
        }
      ]
    },
    "TargetId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TargetId"
        },
        {
          "description": "TargetID is an AWS account identifier, typically a 10-12 digit string (For example, 123456789012)."
        }
      ]
    },
    "TargetType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProvisionTargetType"
        },
        {
          "description": "The entity type for which the assignment will be created."
        }
      ]
    }
  },
  "required": [
    "InstanceArn",
    "PermissionSetArn",
    "TargetType"
  ]
}