Skip to main content

permission_set_provisioning_status

Creates, updates, deletes, gets or lists a permission_set_provisioning_status resource.

Overview

Namepermission_set_provisioning_status
TypeResource
Idaws.sso_admin.permission_set_provisioning_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_idstringThe identifier of the Amazon Web Services account from which to list the assignments. (pattern: <code>\d{12}</code>)
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 that is being provisioned. 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>)
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)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_permission_set_provisioning_statusselectregionDescribes the status for the given permission set provisioning request.
list_permission_set_provisioning_statusselectregionLists the status of the permission set provisioning 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 for the given permission set provisioning request.

SELECT
account_id,
created_date,
failure_reason,
permission_set_arn,
request_id,
status
FROM aws.sso_admin.permission_set_provisioning_status
WHERE region = '{{ region }}' -- required
;