Skip to content

Provision Permission Set

ssoadmin_provision_permission_set R Documentation

The process by which a specified permission set is provisioned to the specified target

Description

The process by which a specified permission set is provisioned to the specified target.

Usage

ssoadmin_provision_permission_set(InstanceArn, PermissionSetArn,
  TargetId, TargetType)

Arguments

InstanceArn

[required] The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.

PermissionSetArn

[required] The ARN of the permission set.

TargetId

TargetID is an Amazon Web Services account identifier, (For example, 123456789012).

TargetType

[required] The entity type for which the assignment will be created.

Value

A list with the following syntax:

list(
  PermissionSetProvisioningStatus = list(
    AccountId = "string",
    CreatedDate = as.POSIXct(
      "2015-01-01"
    ),
    FailureReason = "string",
    PermissionSetArn = "string",
    RequestId = "string",
    Status = "IN_PROGRESS"|"FAILED"|"SUCCEEDED"
  )
)

Request syntax

svc$provision_permission_set(
  InstanceArn = "string",
  PermissionSetArn = "string",
  TargetId = "string",
  TargetType = "AWS_ACCOUNT"|"ALL_PROVISIONED_ACCOUNTS"
)