Skip to content

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(
  AccountAssignmentCreationRequestId, InstanceArn)

Arguments

AccountAssignmentCreationRequestId

[required] The identifier that is used to track the request operation progress.

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.

Value

A list with the following syntax:

list(
  AccountAssignmentCreationStatus = list(
    CreatedDate = as.POSIXct(
      "2015-01-01"
    ),
    FailureReason = "string",
    PermissionSetArn = "string",
    PrincipalId = "string",
    PrincipalType = "USER"|"GROUP",
    RequestId = "string",
    Status = "IN_PROGRESS"|"FAILED"|"SUCCEEDED",
    TargetId = "string",
    TargetType = "AWS_ACCOUNT"
  )
)

Request syntax

svc$describe_account_assignment_creation_status(
  AccountAssignmentCreationRequestId = "string",
  InstanceArn = "string"
)