import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeEntityAggregatesRequest, DescribeEntityAggregatesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeEntityAggregatesCommand}. */ export interface DescribeEntityAggregatesCommandInput extends DescribeEntityAggregatesRequest { } /** * @public * * The output of {@link DescribeEntityAggregatesCommand}. */ export interface DescribeEntityAggregatesCommandOutput extends DescribeEntityAggregatesResponse, __MetadataBearer { } declare const DescribeEntityAggregatesCommand_base: { new (input: DescribeEntityAggregatesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeEntityAggregatesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns the number of entities that are affected by each of the specified events.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { HealthClient, DescribeEntityAggregatesCommand } from "@aws-sdk/client-health"; // ES Modules import * // const { HealthClient, DescribeEntityAggregatesCommand } = require("@aws-sdk/client-health"); // CommonJS import * // import type { HealthClientConfig } from "@aws-sdk/client-health"; * const config = {}; // type is HealthClientConfig * const client = new HealthClient(config); * const input = { // DescribeEntityAggregatesRequest * eventArns: [ // EventArnsList * "STRING_VALUE", * ], * }; * const command = new DescribeEntityAggregatesCommand(input); * const response = await client.send(command); * // { // DescribeEntityAggregatesResponse * // entityAggregates: [ // EntityAggregateList * // { // EntityAggregate * // eventArn: "STRING_VALUE", * // count: Number("int"), * // statuses: { // entityStatuses * // "": Number("int"), * // }, * // }, * // ], * // }; * * ``` * * @param DescribeEntityAggregatesCommandInput - {@link DescribeEntityAggregatesCommandInput} * @returns {@link DescribeEntityAggregatesCommandOutput} * @see {@link DescribeEntityAggregatesCommandInput} for command's `input` shape. * @see {@link DescribeEntityAggregatesCommandOutput} for command's `response` shape. * @see {@link HealthClientResolvedConfig | config} for HealthClient's `config` shape. * * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* * * @public */ export declare class DescribeEntityAggregatesCommand extends DescribeEntityAggregatesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeEntityAggregatesRequest; output: DescribeEntityAggregatesResponse; }; sdk: { input: DescribeEntityAggregatesCommandInput; output: DescribeEntityAggregatesCommandOutput; }; }; }