This sample is part of the SDK for PHP Developer Guide topic at * * */ // snippet-start:[lightsail.php.reboot_instance.complete] // snippet-start:[lightsail.php.reboot_instance.import] require 'vendor/autoload.php'; use Aws\Exception\AwsException; use Aws\Lightsail\LightsailClient; // snippet-end:[lightsail.php.reboot_instance.import] /** * Reboot an Amazon Lightsail Instance. * * This code expects that you have AWS credentials set up per: * https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/guide_credentials.html */ //Create a Lightsail Client // snippet-start:[lightsail.php.reboot_instance.main] $client = new Aws\Lightsail\LightsailClient([ 'profile' => 'default', 'version' => '2016-11-28', 'region' => 'us-east-2' ]); $instanceName = 'AWS_SDK_PHP-Amazon_Linux'; try { $result = $client->rebootInstance([ 'instanceName' => $instanceName, //REQUIRED ]); var_dump($result); } catch (AwsException $e) { // output error message if fails echo $e->getMessage() . "\n"; } // snippet-end:[lightsail.php.reboot_instance.main] // snippet-end:[lightsail.php.reboot_instance.complete] // snippet-comment:[These are tags for the AWS doc team's sample catalog. Do not remove.] // snippet-sourcedescription:[RebootInstance.php demonstrates how to reboot a specific Amazon Lightsail instance.] // snippet-keyword:[PHP] // snippet-sourcesyntax:[php] // snippet-keyword:[AWS SDK for PHP v3] // snippet-keyword:[Code Sample] // snippet-keyword:[rebootInstance] // snippet-keyword:[Amazon Lightsail] // snippet-service:[lightsail] // snippet-sourcetype:[full-example] // snippet-sourcedate:[2019-1-28] // snippet-sourceauthor:[jschwarzwalder (AWS)]