List Account Assignment Deletion Status
ssoadmin_list_account_assignment_deletion_status | R Documentation |
Lists the status of the Amazon Web Services account assignment deletion requests for a specified IAM Identity Center instance¶
Description¶
Lists the status of the Amazon Web Services account assignment deletion requests for a specified IAM Identity Center instance.
Usage¶
ssoadmin_list_account_assignment_deletion_status(Filter, InstanceArn,
MaxResults, NextToken)
Arguments¶
Filter |
Filters results based on the passed attribute value. |
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. |
MaxResults |
The maximum number of results to display for the assignment. |
NextToken |
The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls. |
Value¶
A list with the following syntax:
list(
AccountAssignmentsDeletionStatus = list(
list(
CreatedDate = as.POSIXct(
"2015-01-01"
),
RequestId = "string",
Status = "IN_PROGRESS"|"FAILED"|"SUCCEEDED"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_account_assignment_deletion_status(
Filter = list(
Status = "IN_PROGRESS"|"FAILED"|"SUCCEEDED"
),
InstanceArn = "string",
MaxResults = 123,
NextToken = "string"
)