import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; import type { UpdateThingRuntimeConfigurationRequest, UpdateThingRuntimeConfigurationResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateThingRuntimeConfigurationCommand}. */ export interface UpdateThingRuntimeConfigurationCommandInput extends UpdateThingRuntimeConfigurationRequest { } /** * @public * * The output of {@link UpdateThingRuntimeConfigurationCommand}. */ export interface UpdateThingRuntimeConfigurationCommandOutput extends UpdateThingRuntimeConfigurationResponse, __MetadataBearer { } declare const UpdateThingRuntimeConfigurationCommand_base: { new (input: UpdateThingRuntimeConfigurationCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateThingRuntimeConfigurationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** * Updates the runtime configuration of a thing. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GreengrassClient, UpdateThingRuntimeConfigurationCommand } from "@aws-sdk/client-greengrass"; // ES Modules import * // const { GreengrassClient, UpdateThingRuntimeConfigurationCommand } = require("@aws-sdk/client-greengrass"); // CommonJS import * // import type { GreengrassClientConfig } from "@aws-sdk/client-greengrass"; * const config = {}; // type is GreengrassClientConfig * const client = new GreengrassClient(config); * const input = { // UpdateThingRuntimeConfigurationRequest * TelemetryConfiguration: { // TelemetryConfigurationUpdate * Telemetry: "On" || "Off", // required * }, * ThingName: "STRING_VALUE", // required * }; * const command = new UpdateThingRuntimeConfigurationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateThingRuntimeConfigurationCommandInput - {@link UpdateThingRuntimeConfigurationCommandInput} * @returns {@link UpdateThingRuntimeConfigurationCommandOutput} * @see {@link UpdateThingRuntimeConfigurationCommandInput} for command's `input` shape. * @see {@link UpdateThingRuntimeConfigurationCommandOutput} for command's `response` shape. * @see {@link GreengrassClientResolvedConfig | config} for GreengrassClient's `config` shape. * * @throws {@link BadRequestException} (client fault) * General error information. * * @throws {@link InternalServerErrorException} (server fault) * General error information. * * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* * * @public */ export declare class UpdateThingRuntimeConfigurationCommand extends UpdateThingRuntimeConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateThingRuntimeConfigurationRequest; output: {}; }; sdk: { input: UpdateThingRuntimeConfigurationCommandInput; output: UpdateThingRuntimeConfigurationCommandOutput; }; }; }