import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeProblemObservationsRequest, DescribeProblemObservationsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeProblemObservationsCommand}. */ export interface DescribeProblemObservationsCommandInput extends DescribeProblemObservationsRequest { } /** * @public * * The output of {@link DescribeProblemObservationsCommand}. */ export interface DescribeProblemObservationsCommandOutput extends DescribeProblemObservationsResponse, __MetadataBearer { } declare const DescribeProblemObservationsCommand_base: { new (input: DescribeProblemObservationsCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeProblemObservationsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describes the anomalies or errors associated with the problem.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationInsightsClient, DescribeProblemObservationsCommand } from "@aws-sdk/client-application-insights"; // ES Modules import * // const { ApplicationInsightsClient, DescribeProblemObservationsCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import * // import type { ApplicationInsightsClientConfig } from "@aws-sdk/client-application-insights"; * const config = {}; // type is ApplicationInsightsClientConfig * const client = new ApplicationInsightsClient(config); * const input = { // DescribeProblemObservationsRequest * ProblemId: "STRING_VALUE", // required * AccountId: "STRING_VALUE", * }; * const command = new DescribeProblemObservationsCommand(input); * const response = await client.send(command); * // { // DescribeProblemObservationsResponse * // RelatedObservations: { // RelatedObservations * // ObservationList: [ // ObservationList * // { // Observation * // Id: "STRING_VALUE", * // StartTime: new Date("TIMESTAMP"), * // EndTime: new Date("TIMESTAMP"), * // SourceType: "STRING_VALUE", * // SourceARN: "STRING_VALUE", * // LogGroup: "STRING_VALUE", * // LineTime: new Date("TIMESTAMP"), * // LogText: "STRING_VALUE", * // LogFilter: "ERROR" || "WARN" || "INFO", * // MetricNamespace: "STRING_VALUE", * // MetricName: "STRING_VALUE", * // Unit: "STRING_VALUE", * // Value: Number("double"), * // CloudWatchEventId: "STRING_VALUE", * // CloudWatchEventSource: "EC2" || "CODE_DEPLOY" || "HEALTH" || "RDS", * // CloudWatchEventDetailType: "STRING_VALUE", * // HealthEventArn: "STRING_VALUE", * // HealthService: "STRING_VALUE", * // HealthEventTypeCode: "STRING_VALUE", * // HealthEventTypeCategory: "STRING_VALUE", * // HealthEventDescription: "STRING_VALUE", * // CodeDeployDeploymentId: "STRING_VALUE", * // CodeDeployDeploymentGroup: "STRING_VALUE", * // CodeDeployState: "STRING_VALUE", * // CodeDeployApplication: "STRING_VALUE", * // CodeDeployInstanceGroupId: "STRING_VALUE", * // Ec2State: "STRING_VALUE", * // RdsEventCategories: "STRING_VALUE", * // RdsEventMessage: "STRING_VALUE", * // S3EventName: "STRING_VALUE", * // StatesExecutionArn: "STRING_VALUE", * // StatesArn: "STRING_VALUE", * // StatesStatus: "STRING_VALUE", * // StatesInput: "STRING_VALUE", * // EbsEvent: "STRING_VALUE", * // EbsResult: "STRING_VALUE", * // EbsCause: "STRING_VALUE", * // EbsRequestId: "STRING_VALUE", * // XRayFaultPercent: Number("int"), * // XRayThrottlePercent: Number("int"), * // XRayErrorPercent: Number("int"), * // XRayRequestCount: Number("int"), * // XRayRequestAverageLatency: Number("long"), * // XRayNodeName: "STRING_VALUE", * // XRayNodeType: "STRING_VALUE", * // }, * // ], * // }, * // }; * * ``` * * @param DescribeProblemObservationsCommandInput - {@link DescribeProblemObservationsCommandInput} * @returns {@link DescribeProblemObservationsCommandOutput} * @see {@link DescribeProblemObservationsCommandInput} for command's `input` shape. * @see {@link DescribeProblemObservationsCommandOutput} for command's `response` shape. * @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

The server encountered an internal error and is unable to complete the request.

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

The resource does not exist in the customer account.

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

The parameter is not valid.

* * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* * * @public */ export declare class DescribeProblemObservationsCommand extends DescribeProblemObservationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeProblemObservationsRequest; output: DescribeProblemObservationsResponse; }; sdk: { input: DescribeProblemObservationsCommandInput; output: DescribeProblemObservationsCommandOutput; }; }; }