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

Enables the resource tags for telemetry feature for your account, which enhances telemetry data with additional resource metadata from Resource Explorer to provide richer context for monitoring and observability.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ObservabilityAdminClient, StartTelemetryEnrichmentCommand } from "@aws-sdk/client-observabilityadmin"; // ES Modules import * // const { ObservabilityAdminClient, StartTelemetryEnrichmentCommand } = 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 StartTelemetryEnrichmentCommand(input); * const response = await client.send(command); * // { // StartTelemetryEnrichmentOutput * // Status: "Running" || "Stopped" || "Impaired", * // AwsResourceExplorerManagedViewArn: "STRING_VALUE", * // }; * * ``` * * @param StartTelemetryEnrichmentCommandInput - {@link StartTelemetryEnrichmentCommandInput} * @returns {@link StartTelemetryEnrichmentCommandOutput} * @see {@link StartTelemetryEnrichmentCommandInput} for command's `input` shape. * @see {@link StartTelemetryEnrichmentCommandOutput} 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 ConflictException} (client fault) *

The requested operation conflicts with the current state of the specified resource or with another request.

* * @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 StartTelemetryEnrichmentCommand extends StartTelemetryEnrichmentCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: StartTelemetryEnrichmentOutput; }; sdk: { input: StartTelemetryEnrichmentCommandInput; output: StartTelemetryEnrichmentCommandOutput; }; }; }