Describe Account Assignment Creation Status
| ssoadmin_describe_account_assignment_creation_status | R Documentation | 
Describes the status of the assignment creation request¶
Description¶
Describes the status of the assignment creation request.
Usage¶
ssoadmin_describe_account_assignment_creation_status(InstanceArn,
  AccountAssignmentCreationRequestId)
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. | 
| AccountAssignmentCreationRequestId | [required] The identifier that is used to track the request operation progress. | 
Value¶
A list with the following syntax:
list(
  AccountAssignmentCreationStatus = list(
    Status = "IN_PROGRESS"|"FAILED"|"SUCCEEDED",
    RequestId = "string",
    FailureReason = "string",
    TargetId = "string",
    TargetType = "AWS_ACCOUNT",
    PermissionSetArn = "string",
    PrincipalType = "USER"|"GROUP",
    PrincipalId = "string",
    CreatedDate = as.POSIXct(
      "2015-01-01"
    )
  )
)
Request syntax¶
svc$describe_account_assignment_creation_status(
  InstanceArn = "string",
  AccountAssignmentCreationRequestId = "string"
)