SSOAdmin / Client / list_account_assignment_deletion_status

list_account_assignment_deletion_status#

SSOAdmin.Client.list_account_assignment_deletion_status(**kwargs)#

Lists the status of the Amazon Web Services account assignment deletion requests for a specified IAM Identity Center instance.

See also: AWS API Documentation

Request Syntax

response = client.list_account_assignment_deletion_status(
    Filter={
        'Status': 'IN_PROGRESS'|'FAILED'|'SUCCEEDED'
    },
    InstanceArn='string',
    MaxResults=123,
    NextToken='string'
)
Parameters:
  • Filter (dict) –

    Filters results based on the passed attribute value.

    • Status (string) –

      Filters the list operations result based on the status attribute.

  • InstanceArn (string) –

    [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 (integer) – The maximum number of results to display for the assignment.

  • NextToken (string) – The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.

Return type:

dict

Returns:

Response Syntax

{
    'AccountAssignmentsDeletionStatus': [
        {
            'CreatedDate': datetime(2015, 1, 1),
            'RequestId': 'string',
            'Status': 'IN_PROGRESS'|'FAILED'|'SUCCEEDED'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • AccountAssignmentsDeletionStatus (list) –

      The status object for the account assignment deletion operation.

      • (dict) –

        Provides information about the AccountAssignment creation request.

        • CreatedDate (datetime) –

          The date that the permission set was created.

        • RequestId (string) –

          The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.

        • Status (string) –

          The status of the permission set provisioning process.

    • NextToken (string) –

      The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.

Exceptions