Skip to main content

account_assignment_deletion_status

Creates, updates, deletes, gets or lists an account_assignment_deletion_status resource.

Overview

Nameaccount_assignment_deletion_status
TypeResource
Idaws.sso_admin.account_assignment_deletion_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_datestring (date-time)The date that the permission set was created.
failure_reasonstringThe message that contains an error or exception in case of an operation failure. (pattern: <code>[\p{L}\p{M}\p{Z}\p{S}\p{N}\p{P}]*</code>)
permission_set_arnstringThe ARN of the permission set. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference. (pattern: <code>arn:aws(-[a-z]{1,5}){0,3}:sso:::permissionSet/(sso)?ins-[a-zA-Z0-9-.]{16}/ps-[a-zA-Z0-9-./]{16}</code>)
principal_idstringAn identifier for an object in IAM Identity Center, such as a user or group. PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the IAM Identity Center Identity Store API Reference. (pattern: <code>([0-9a-f]{10}-|)[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}</code>)
principal_typestringThe entity type for which the assignment will be created. (USER, GROUP)
request_idstringThe identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow. (pattern: <code>\b[0-9a-f]{8}\b-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-\b[0-9a-f]{12}\b</code>)
statusstringThe status of the permission set provisioning process. (IN_PROGRESS, FAILED, SUCCEEDED)
target_idstringTargetID is an Amazon Web Services account identifier, (For example, 123456789012). (pattern: <code>\d{12}</code>)
target_typestringThe entity type for which the assignment will be created. (AWS_ACCOUNT)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_account_assignment_deletion_statusselectregionDescribes the status of the assignment deletion request.
list_account_assignment_deletion_statusselectregionLists the status of the Amazon Web Services account assignment deletion requests for a specified IAM Identity Center instance.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Describes the status of the assignment deletion request.

SELECT
created_date,
failure_reason,
permission_set_arn,
principal_id,
principal_type,
request_id,
status,
target_id,
target_type
FROM aws.sso_admin.account_assignment_deletion_status
WHERE region = '{{ region }}' -- required
;