import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeEventDetailsRequest, DescribeEventDetailsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeEventDetailsCommand}. */ export interface DescribeEventDetailsCommandInput extends DescribeEventDetailsRequest { } /** * @public * * The output of {@link DescribeEventDetailsCommand}. */ export interface DescribeEventDetailsCommandOutput extends DescribeEventDetailsResponse, __MetadataBearer { } declare const DescribeEventDetailsCommand_base: { new (input: DescribeEventDetailsCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeEventDetailsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns detailed information about one or more specified events. Information includes * standard event data (Amazon Web Services Region, service, and so on, as returned by DescribeEvents), a detailed event description, and possible additional metadata * that depends upon the nature of the event. Affected entities are not included. To retrieve * the entities, use the DescribeAffectedEntities operation.

*

If a specified event can't be retrieved, an error message is returned for that * event.

* *

This operation supports resource-level permissions. You can use this operation to allow or deny access to specific Health events. For more * information, see Resource- and action-based conditions in the Health User Guide.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { HealthClient, DescribeEventDetailsCommand } from "@aws-sdk/client-health"; // ES Modules import * // const { HealthClient, DescribeEventDetailsCommand } = 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 = { // DescribeEventDetailsRequest * eventArns: [ // eventArnList // required * "STRING_VALUE", * ], * locale: "STRING_VALUE", * }; * const command = new DescribeEventDetailsCommand(input); * const response = await client.send(command); * // { // DescribeEventDetailsResponse * // successfulSet: [ // DescribeEventDetailsSuccessfulSet * // { // EventDetails * // event: { // Event * // arn: "STRING_VALUE", * // service: "STRING_VALUE", * // eventTypeCode: "STRING_VALUE", * // eventTypeCategory: "issue" || "accountNotification" || "scheduledChange" || "investigation", * // region: "STRING_VALUE", * // availabilityZone: "STRING_VALUE", * // startTime: new Date("TIMESTAMP"), * // endTime: new Date("TIMESTAMP"), * // lastUpdatedTime: new Date("TIMESTAMP"), * // statusCode: "open" || "closed" || "upcoming", * // eventScopeCode: "PUBLIC" || "ACCOUNT_SPECIFIC" || "NONE", * // actionability: "ACTION_REQUIRED" || "ACTION_MAY_BE_REQUIRED" || "INFORMATIONAL", * // personas: [ // EventPersonaList * // "OPERATIONS" || "SECURITY" || "BILLING", * // ], * // }, * // eventDescription: { // EventDescription * // latestDescription: "STRING_VALUE", * // }, * // eventMetadata: { // eventMetadata * // "": "STRING_VALUE", * // }, * // }, * // ], * // failedSet: [ // DescribeEventDetailsFailedSet * // { // EventDetailsErrorItem * // eventArn: "STRING_VALUE", * // errorName: "STRING_VALUE", * // errorMessage: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param DescribeEventDetailsCommandInput - {@link DescribeEventDetailsCommandInput} * @returns {@link DescribeEventDetailsCommandOutput} * @see {@link DescribeEventDetailsCommandInput} for command's `input` shape. * @see {@link DescribeEventDetailsCommandOutput} for command's `response` shape. * @see {@link HealthClientResolvedConfig | config} for HealthClient's `config` shape. * * @throws {@link UnsupportedLocale} (client fault) *

The specified locale is not supported.

* * @throws {@link HealthServiceException} *

Base exception class for all service exceptions from Health service.

* * * @public */ export declare class DescribeEventDetailsCommand extends DescribeEventDetailsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeEventDetailsRequest; output: DescribeEventDetailsResponse; }; sdk: { input: DescribeEventDetailsCommandInput; output: DescribeEventDetailsCommandOutput; }; }; }