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.
By default, the console output returns buffered information that was posted shortly
after an instance transition state (start, stop, reboot, or terminate). This information
is available for at least one hour after the most recent post. Only the most recent 64
KB of console output is available.
You can optionally retrieve the latest serial console output at any time during the
instance lifecycle. This option is supported on instance types that use the Nitro
hypervisor.
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.
By default, the console output returns buffered information that was posted shortly after an instance transition state (start, stop, reboot, or terminate). This information is available for at least one hour after the most recent post. Only the most recent 64 KB of console output is available.
You can optionally retrieve the latest serial console output at any time during the instance lifecycle. This option is supported on instance types that use the Nitro hypervisor.
For more information, see Instance console output in the Amazon EC2 User Guide.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, GetConsoleOutputCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, GetConsoleOutputCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new GetConsoleOutputCommand(input); const response = await client.send(command);
GetConsoleOutputCommandInput for command's
input
shape.GetConsoleOutputCommandOutput for command's
response
shape.config for EC2Client's
config
shape.