import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import type { GetConsoleOutputRequest, GetConsoleOutputResult } from "../models/models_6"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetConsoleOutputCommand}. */ export interface GetConsoleOutputCommandInput extends GetConsoleOutputRequest { } /** * @public * * The output of {@link GetConsoleOutputCommand}. */ export interface GetConsoleOutputCommandOutput extends GetConsoleOutputResult, __MetadataBearer { } declare const GetConsoleOutputCommand_base: { new (input: GetConsoleOutputCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetConsoleOutputCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Gets the console output for the specified instance. For Linux instances, the instance * console output displays the exact console output that would normally be displayed on a * physical monitor attached to a computer. For Windows instances, the instance console * output includes the last three system event log errors.

*

For more information, see Instance * console output in the Amazon EC2 User Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EC2Client, GetConsoleOutputCommand } from "@aws-sdk/client-ec2"; // ES Modules import * // const { EC2Client, GetConsoleOutputCommand } = require("@aws-sdk/client-ec2"); // CommonJS import * // import type { EC2ClientConfig } from "@aws-sdk/client-ec2"; * const config = {}; // type is EC2ClientConfig * const client = new EC2Client(config); * const input = { // GetConsoleOutputRequest * InstanceId: "STRING_VALUE", // required * Latest: true || false, * DryRun: true || false, * }; * const command = new GetConsoleOutputCommand(input); * const response = await client.send(command); * // { // GetConsoleOutputResult * // InstanceId: "STRING_VALUE", * // Timestamp: new Date("TIMESTAMP"), * // Output: "STRING_VALUE", * // }; * * ``` * * @param GetConsoleOutputCommandInput - {@link GetConsoleOutputCommandInput} * @returns {@link GetConsoleOutputCommandOutput} * @see {@link GetConsoleOutputCommandInput} for command's `input` shape. * @see {@link GetConsoleOutputCommandOutput} for command's `response` shape. * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape. * * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* * * @example To get the console output * ```javascript * // This example gets the console output for the specified instance. * const input = { * InstanceId: "i-1234567890abcdef0" * }; * const command = new GetConsoleOutputCommand(input); * const response = await client.send(command); * /* response is * { * InstanceId: "i-1234567890abcdef0", * Output: "...", * Timestamp: "2018-05-25T21:23:53.000Z" * } * *\/ * ``` * * @public */ export declare class GetConsoleOutputCommand extends GetConsoleOutputCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetConsoleOutputRequest; output: GetConsoleOutputResult; }; sdk: { input: GetConsoleOutputCommandInput; output: GetConsoleOutputCommandOutput; }; }; }