configuration_aggregator_sources_status
Creates, updates, deletes, gets or lists a configuration_aggregator_sources_status resource.
Overview
| Name | configuration_aggregator_sources_status |
| Type | Resource |
| Id | aws.config.configuration_aggregator_sources_status |
Fields
The following fields are returned by SELECT queries:
- describe_configuration_aggregator_sources_status
| Name | Datatype | Description |
|---|---|---|
aws_region | string | The region authorized to collect aggregated data. |
last_error_code | string | The error code that Config returned when the source account aggregation last failed. |
last_error_message | string | The message indicating that the source account aggregation failed due to an error. |
last_update_status | string | Filters 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_time | string (date-time) | The time of the last update. |
source_id | string | The source account ID or an organization. |
source_type | string | The source account or an organization. (ACCOUNT, ORGANIZATION) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_configuration_aggregator_sources_status | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_configuration_aggregator_sources_status
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
;