import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; import type { DescribeLoggingOptionsRequest, DescribeLoggingOptionsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeLoggingOptionsCommand}. */ export interface DescribeLoggingOptionsCommandInput extends DescribeLoggingOptionsRequest { } /** * @public * * The output of {@link DescribeLoggingOptionsCommand}. */ export interface DescribeLoggingOptionsCommandOutput extends DescribeLoggingOptionsResponse, __MetadataBearer { } declare const DescribeLoggingOptionsCommand_base: { new (input: DescribeLoggingOptionsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeLoggingOptionsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Retrieves the current settings of the AWS IoT Events logging options.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTEventsClient, DescribeLoggingOptionsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import * // const { IoTEventsClient, DescribeLoggingOptionsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import * // import type { IoTEventsClientConfig } from "@aws-sdk/client-iot-events"; * const config = {}; // type is IoTEventsClientConfig * const client = new IoTEventsClient(config); * const input = {}; * const command = new DescribeLoggingOptionsCommand(input); * const response = await client.send(command); * // { // DescribeLoggingOptionsResponse * // loggingOptions: { // LoggingOptions * // roleArn: "STRING_VALUE", // required * // level: "ERROR" || "INFO" || "DEBUG", // required * // enabled: true || false, // required * // detectorDebugOptions: [ // DetectorDebugOptions * // { // DetectorDebugOption * // detectorModelName: "STRING_VALUE", // required * // keyValue: "STRING_VALUE", * // }, * // ], * // }, * // }; * * ``` * * @param DescribeLoggingOptionsCommandInput - {@link DescribeLoggingOptionsCommandInput} * @returns {@link DescribeLoggingOptionsCommandOutput} * @see {@link DescribeLoggingOptionsCommandInput} for command's `input` shape. * @see {@link DescribeLoggingOptionsCommandOutput} for command's `response` shape. * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape. * * @throws {@link InternalFailureException} (server fault) *

An internal failure occurred.

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

The request was invalid.

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

The resource was not found.

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

The service is currently unavailable.

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

The request could not be completed due to throttling.

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

The requested operation is not supported.

* * @throws {@link IoTEventsServiceException} *

Base exception class for all service exceptions from IoTEvents service.

* * * @public */ export declare class DescribeLoggingOptionsCommand extends DescribeLoggingOptionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: DescribeLoggingOptionsResponse; }; sdk: { input: DescribeLoggingOptionsCommandInput; output: DescribeLoggingOptionsCommandOutput; }; }; }