Requests a reboot of the specified instances. This operation is asynchronous; it only
queues a request to reboot the specified instances. The operation succeeds if the
instances are valid and belong to you. Requests to reboot terminated instances are
ignored.
If an instance does not cleanly shut down within a few minutes, Amazon EC2 performs a
hard reboot.
Requests a reboot of the specified instances. This operation is asynchronous; it only queues a request to reboot the specified instances. The operation succeeds if the instances are valid and belong to you. Requests to reboot terminated instances are ignored.
If an instance does not cleanly shut down within a few minutes, Amazon EC2 performs a hard reboot.
For more information about troubleshooting, see Troubleshoot an unreachable instance in the Amazon EC2 User Guide.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, RebootInstancesCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, RebootInstancesCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new RebootInstancesCommand(input); const response = await client.send(command);
RebootInstancesCommandInput for command's
input
shape.RebootInstancesCommandOutput for command's
response
shape.config for EC2Client's
config
shape.