Skip to main content

conformance_pack_status

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

Overview

Nameconformance_pack_status
TypeResource
Idaws.config.conformance_pack_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
conformance_pack_arnstringAmazon Resource Name (ARN) of comformance pack.
conformance_pack_idstringID of the conformance pack.
conformance_pack_namestringName of the conformance pack. (pattern: <code>[a-zA-Z][-a-zA-Z0-9]*</code>)
conformance_pack_statestringIndicates deployment status of conformance pack. Config sets the state of the conformance pack to: CREATE_IN_PROGRESS when a conformance pack creation is in progress for an account. CREATE_COMPLETE when a conformance pack has been successfully created in your account. CREATE_FAILED when a conformance pack creation failed in your account. DELETE_IN_PROGRESS when a conformance pack deletion is in progress. DELETE_FAILED when a conformance pack deletion failed in your account. (CREATE_IN_PROGRESS, CREATE_COMPLETE, CREATE_FAILED, DELETE_IN_PROGRESS, DELETE_FAILED)
conformance_pack_status_reasonstringThe reason of conformance pack creation failure.
last_update_completed_timestring (date-time)Last time when conformation pack creation and update was successful.
last_update_requested_timestring (date-time)Last time when conformation pack creation and update was requested.
stack_arnstringAmazon Resource Name (ARN) of CloudFormation stack.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_conformance_pack_statusselectregionProvides one or more conformance packs deployment status. If there are no conformance packs then you will see an empty result.

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

Provides one or more conformance packs deployment status. If there are no conformance packs then you will see an empty result.

SELECT
conformance_pack_arn,
conformance_pack_id,
conformance_pack_name,
conformance_pack_state,
conformance_pack_status_reason,
last_update_completed_time,
last_update_requested_time,
stack_arn
FROM aws.config.conformance_pack_status
WHERE region = '{{ region }}' -- required
;