Skip to main content

configuration_aggregator_sources_status

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

Overview

Nameconfiguration_aggregator_sources_status
TypeResource
Idaws.config.configuration_aggregator_sources_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
aws_regionstringThe region authorized to collect aggregated data.
last_error_codestringThe error code that Config returned when the source account aggregation last failed.
last_error_messagestringThe message indicating that the source account aggregation failed due to an error.
last_update_statusstringFilters the last updated status type. Valid value FAILED indicates errors while moving data. Valid value SUCCEEDED indicates the data was successfully moved. Valid value OUTDATED indicates the data is not the most recent. (FAILED, SUCCEEDED, OUTDATED)
last_update_timestring (date-time)The time of the last update.
source_idstringThe source account ID or an organization.
source_typestringThe source account or an organization. (ACCOUNT, ORGANIZATION)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_configuration_aggregator_sources_statusselectregionReturns status information for sources within an aggregator. The status includes information about the last time Config verified authorization between the source account and an aggregator account. In case of a failure, the status contains the related error code or message.

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

Returns status information for sources within an aggregator. The status includes information about the last time Config verified authorization between the source account and an aggregator account. In case of a failure, the status contains the related error code or message.

SELECT
aws_region,
last_error_code,
last_error_message,
last_update_status,
last_update_time,
source_id,
source_type
FROM aws.config.configuration_aggregator_sources_status
WHERE region = '{{ region }}' -- required
;