Skip to main content

aggregate_resource_configs

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

Overview

Nameaggregate_resource_configs
TypeResource
Idaws.config.aggregate_resource_configs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
base_configuration_itemsarrayA list that contains the current configuration of one or more resources.
unprocessed_resource_identifiersarrayA list of resource identifiers that were not processed with current scope. The list is empty if all the resources are processed.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_aggregate_resource_configselectregionReturns the current configuration items for resources that are present in your Config aggregator. The operation also returns a list of resources that are not processed in the current request. If there are no unprocessed resources, the operation returns an empty unprocessedResourceIdentifiers list. The API does not return results for deleted resources. The API does not return tags and relationships.
get_aggregate_resource_configselectregionReturns configuration item that is aggregated for your specific resource in a specific source account and region. The API does not return results for deleted resources.

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 the current configuration items for resources that are present in your Config aggregator. The operation also returns a list of resources that are not processed in the current request. If there are no unprocessed resources, the operation returns an empty unprocessedResourceIdentifiers list. The API does not return results for deleted resources. The API does not return tags and relationships.

SELECT
base_configuration_items,
unprocessed_resource_identifiers
FROM aws.config.aggregate_resource_configs
WHERE region = '{{ region }}' -- required
;