Get Console Output
ec2_get_console_output | R Documentation |
Gets the console output for the specified instance¶
Description¶
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.
Usage¶
ec2_get_console_output(InstanceId, Latest, DryRun)
Arguments¶
InstanceId |
[required] The ID of the instance. |
Latest |
When enabled, retrieves the latest console output for the instance. Default: disabled ( |
DryRun |
Checks whether you have the required permissions for the
operation, without actually making the request, and provides an error
response. If you have the required permissions, the error response is
|
Value¶
A list with the following syntax:
list(
InstanceId = "string",
Timestamp = as.POSIXct(
"2015-01-01"
),
Output = "string"
)
Request syntax¶
svc$get_console_output(
InstanceId = "string",
Latest = TRUE|FALSE,
DryRun = TRUE|FALSE
)
Examples¶
## Not run:
# This example gets the console output for the specified instance.
svc$get_console_output(
InstanceId = "i-1234567890abcdef0"
)
## End(Not run)