import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import type { DescribeConfigurationAggregatorsRequest, DescribeConfigurationAggregatorsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeConfigurationAggregatorsCommand}. */ export interface DescribeConfigurationAggregatorsCommandInput extends DescribeConfigurationAggregatorsRequest { } /** * @public * * The output of {@link DescribeConfigurationAggregatorsCommand}. */ export interface DescribeConfigurationAggregatorsCommandOutput extends DescribeConfigurationAggregatorsResponse, __MetadataBearer { } declare const DescribeConfigurationAggregatorsCommand_base: { new (input: DescribeConfigurationAggregatorsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeConfigurationAggregatorsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Returns the details of one or more configuration aggregators. * If the configuration aggregator is not specified, this operation * returns the details for all the configuration aggregators associated * with the account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConfigServiceClient, DescribeConfigurationAggregatorsCommand } from "@aws-sdk/client-config-service"; // ES Modules import * // const { ConfigServiceClient, DescribeConfigurationAggregatorsCommand } = require("@aws-sdk/client-config-service"); // CommonJS import * // import type { ConfigServiceClientConfig } from "@aws-sdk/client-config-service"; * const config = {}; // type is ConfigServiceClientConfig * const client = new ConfigServiceClient(config); * const input = { // DescribeConfigurationAggregatorsRequest * ConfigurationAggregatorNames: [ // ConfigurationAggregatorNameList * "STRING_VALUE", * ], * NextToken: "STRING_VALUE", * Limit: Number("int"), * }; * const command = new DescribeConfigurationAggregatorsCommand(input); * const response = await client.send(command); * // { // DescribeConfigurationAggregatorsResponse * // ConfigurationAggregators: [ // ConfigurationAggregatorList * // { // ConfigurationAggregator * // ConfigurationAggregatorName: "STRING_VALUE", * // ConfigurationAggregatorArn: "STRING_VALUE", * // AccountAggregationSources: [ // AccountAggregationSourceList * // { // AccountAggregationSource * // AccountIds: [ // AccountAggregationSourceAccountList // required * // "STRING_VALUE", * // ], * // AllAwsRegions: true || false, * // AwsRegions: [ // AggregatorRegionList * // "STRING_VALUE", * // ], * // }, * // ], * // OrganizationAggregationSource: { // OrganizationAggregationSource * // RoleArn: "STRING_VALUE", // required * // AwsRegions: [ * // "STRING_VALUE", * // ], * // AllAwsRegions: true || false, * // }, * // CreationTime: new Date("TIMESTAMP"), * // LastUpdatedTime: new Date("TIMESTAMP"), * // CreatedBy: "STRING_VALUE", * // AggregatorFilters: { // AggregatorFilters * // ResourceType: { // AggregatorFilterResourceType * // Type: "INCLUDE", * // Value: [ // ResourceTypeValueList * // "STRING_VALUE", * // ], * // }, * // ServicePrincipal: { // AggregatorFilterServicePrincipal * // Type: "INCLUDE", * // Value: [ // ServicePrincipalValueList * // "STRING_VALUE", * // ], * // }, * // }, * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeConfigurationAggregatorsCommandInput - {@link DescribeConfigurationAggregatorsCommandInput} * @returns {@link DescribeConfigurationAggregatorsCommandOutput} * @see {@link DescribeConfigurationAggregatorsCommandInput} for command's `input` shape. * @see {@link DescribeConfigurationAggregatorsCommandOutput} for command's `response` shape. * @see {@link ConfigServiceClientResolvedConfig | config} for ConfigServiceClient's `config` shape. * * @throws {@link InvalidLimitException} (client fault) *

The specified limit is outside the allowable range.

* * @throws {@link InvalidNextTokenException} (client fault) *

The specified next token is not valid. Specify the * nextToken string that was returned in the previous * response to get the next page of results.

* * @throws {@link InvalidParameterValueException} (client fault) *

One or more of the specified parameters are not valid. Verify * that your parameters are valid and try again.

* * @throws {@link NoSuchConfigurationAggregatorException} (client fault) *

You have specified a configuration aggregator that does not exist.

* * @throws {@link ConfigServiceServiceException} *

Base exception class for all service exceptions from ConfigService service.

* * * @public */ export declare class DescribeConfigurationAggregatorsCommand extends DescribeConfigurationAggregatorsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeConfigurationAggregatorsRequest; output: DescribeConfigurationAggregatorsResponse; }; sdk: { input: DescribeConfigurationAggregatorsCommandInput; output: DescribeConfigurationAggregatorsCommandOutput; }; }; }