Describe Configuration Aggregator Sources Status
configservice_describe_configuration_aggregator_sources_status | R Documentation |
Returns status information for sources within an aggregator¶
Description¶
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.
Usage¶
configservice_describe_configuration_aggregator_sources_status(
ConfigurationAggregatorName, UpdateStatus, NextToken, Limit)
Arguments¶
ConfigurationAggregatorName
[required] The name of the configuration aggregator.
UpdateStatus
Filters the 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.
NextToken
The
nextToken
string returned on a previous page that you use to get the next page of results in a paginated response.Limit
The maximum number of AggregatorSourceStatus returned on each page. The default is maximum. If you specify 0, Config uses the default.
Value¶
A list with the following syntax:
list(
AggregatedSourceStatusList = list(
list(
SourceId = "string",
SourceType = "ACCOUNT"|"ORGANIZATION",
AwsRegion = "string",
LastUpdateStatus = "FAILED"|"SUCCEEDED"|"OUTDATED",
LastUpdateTime = as.POSIXct(
"2015-01-01"
),
LastErrorCode = "string",
LastErrorMessage = "string"
)
),
NextToken = "string"
)