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.
|
NextToken |
The |
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"
)
Request syntax¶
svc$describe_configuration_aggregator_sources_status(
ConfigurationAggregatorName = "string",
UpdateStatus = list(
"FAILED"|"SUCCEEDED"|"OUTDATED"
),
NextToken = "string",
Limit = 123
)