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 { ListLoggerDefinitionVersionsRequest, ListLoggerDefinitionVersionsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListLoggerDefinitionVersionsCommand}. */ export interface ListLoggerDefinitionVersionsCommandInput extends ListLoggerDefinitionVersionsRequest { } /** * @public * * The output of {@link ListLoggerDefinitionVersionsCommand}. */ export interface ListLoggerDefinitionVersionsCommandOutput extends ListLoggerDefinitionVersionsResponse, __MetadataBearer { } declare const ListLoggerDefinitionVersionsCommand_base: { new (input: ListLoggerDefinitionVersionsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListLoggerDefinitionVersionsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** * Lists the versions of a logger definition. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GreengrassClient, ListLoggerDefinitionVersionsCommand } from "@aws-sdk/client-greengrass"; // ES Modules import * // const { GreengrassClient, ListLoggerDefinitionVersionsCommand } = 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 = { // ListLoggerDefinitionVersionsRequest * LoggerDefinitionId: "STRING_VALUE", // required * MaxResults: "STRING_VALUE", * NextToken: "STRING_VALUE", * }; * const command = new ListLoggerDefinitionVersionsCommand(input); * const response = await client.send(command); * // { // ListLoggerDefinitionVersionsResponse * // NextToken: "STRING_VALUE", * // Versions: [ // __listOfVersionInformation * // { // VersionInformation * // Arn: "STRING_VALUE", * // CreationTimestamp: "STRING_VALUE", * // Id: "STRING_VALUE", * // Version: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param ListLoggerDefinitionVersionsCommandInput - {@link ListLoggerDefinitionVersionsCommandInput} * @returns {@link ListLoggerDefinitionVersionsCommandOutput} * @see {@link ListLoggerDefinitionVersionsCommandInput} for command's `input` shape. * @see {@link ListLoggerDefinitionVersionsCommandOutput} for command's `response` shape. * @see {@link GreengrassClientResolvedConfig | config} for GreengrassClient's `config` shape. * * @throws {@link BadRequestException} (client fault) * General error information. * * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* * * @public */ export declare class ListLoggerDefinitionVersionsCommand extends ListLoggerDefinitionVersionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListLoggerDefinitionVersionsRequest; output: ListLoggerDefinitionVersionsResponse; }; sdk: { input: ListLoggerDefinitionVersionsCommandInput; output: ListLoggerDefinitionVersionsCommandOutput; }; }; }