import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetTelemetryEvaluationStatusOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetTelemetryEvaluationStatusCommand}. */ export interface GetTelemetryEvaluationStatusCommandInput { } /** * @public * * The output of {@link GetTelemetryEvaluationStatusCommand}. */ export interface GetTelemetryEvaluationStatusCommandOutput extends GetTelemetryEvaluationStatusOutput, __MetadataBearer { } declare const GetTelemetryEvaluationStatusCommand_base: { new (input: GetTelemetryEvaluationStatusCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [GetTelemetryEvaluationStatusCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns the current onboarding status of the telemetry config feature, including the status of the feature and reason the feature failed to start or stop.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ObservabilityAdminClient, GetTelemetryEvaluationStatusCommand } from "@aws-sdk/client-observabilityadmin"; // ES Modules import * // const { ObservabilityAdminClient, GetTelemetryEvaluationStatusCommand } = require("@aws-sdk/client-observabilityadmin"); // CommonJS import * // import type { ObservabilityAdminClientConfig } from "@aws-sdk/client-observabilityadmin"; * const config = {}; // type is ObservabilityAdminClientConfig * const client = new ObservabilityAdminClient(config); * const input = {}; * const command = new GetTelemetryEvaluationStatusCommand(input); * const response = await client.send(command); * // { // GetTelemetryEvaluationStatusOutput * // Status: "NOT_STARTED" || "STARTING" || "FAILED_START" || "RUNNING" || "STOPPING" || "FAILED_STOP" || "STOPPED", * // FailureReason: "STRING_VALUE", * // HomeRegion: "STRING_VALUE", * // RegionStatuses: [ // RegionStatuses * // { // RegionStatus * // Region: "STRING_VALUE", * // Status: "STRING_VALUE", * // FailureReason: "STRING_VALUE", * // RuleArn: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param GetTelemetryEvaluationStatusCommandInput - {@link GetTelemetryEvaluationStatusCommandInput} * @returns {@link GetTelemetryEvaluationStatusCommandOutput} * @see {@link GetTelemetryEvaluationStatusCommandInput} for command's `input` shape. * @see {@link GetTelemetryEvaluationStatusCommandOutput} for command's `response` shape. * @see {@link ObservabilityAdminClientResolvedConfig | config} for ObservabilityAdminClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Indicates you don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access management for Amazon Web Services resources in the IAM user guide.

* * @throws {@link InternalServerException} (server fault) *

Indicates the request has failed to process because of an unknown server error, exception, or failure.

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

The request throughput limit was exceeded.

* * @throws {@link ObservabilityAdminServiceException} *

Base exception class for all service exceptions from ObservabilityAdmin service.

* * * @public */ export declare class GetTelemetryEvaluationStatusCommand extends GetTelemetryEvaluationStatusCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: GetTelemetryEvaluationStatusOutput; }; sdk: { input: GetTelemetryEvaluationStatusCommandInput; output: GetTelemetryEvaluationStatusCommandOutput; }; }; }