2018-10-11 15:00:23 -07:00
< ? php
2018-12-28 10:35:52 -08:00
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2018-10-11 15:00:23 -07:00
// SPDX-License-Identifier: Apache-2.0
2024-02-05 10:49:20 -07:00
2018-10-11 15:00:23 -07:00
/*
* ABOUT THIS PHP SAMPLE: This sample is part of the SDK for PHP Developer Guide topic at
* https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/ec2-examples-managing-instances.html
*
2019-01-30 19:13:23 -08:00
*
2024-02-05 10:49:20 -07:00
*
2018-10-11 15:00:23 -07:00
*/
2019-01-30 19:13:23 -08:00
// snippet-start:[ec2.php.start_and_stop_instance.complete]
// snippet-start:[ec2.php.start_and_stop_instance.import]
2024-02-05 10:49:20 -07:00
2018-10-11 15:00:23 -07:00
require 'vendor/autoload.php' ;
2024-02-05 10:49:20 -07:00
2019-01-30 19:13:23 -08:00
// snippet-end:[ec2.php.start_and_stop_instance.import]
2018-10-11 15:00:23 -07:00
/**
* Start and Stop Instances
*
* 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
*/
2024-02-05 10:49:20 -07:00
2019-01-30 19:13:23 -08:00
// snippet-start:[ec2.php.start_and_stop_instance.main]
2019-03-15 12:45:56 -07:00
$ec2Client = new Aws\Ec2\Ec2Client ([
2018-10-11 15:00:23 -07:00
'region' => 'us-west-2' ,
'version' => '2016-11-15' ,
'profile' => 'default'
]);
2024-02-05 10:49:20 -07:00
2018-10-11 15:00:23 -07:00
$action = 'START' ;
2024-02-05 10:49:20 -07:00
2018-10-11 15:00:23 -07:00
$instanceIds = [ 'InstanceID1' , 'InstanceID2' ];
2024-02-05 10:49:20 -07:00
2018-10-11 15:00:23 -07:00
if ( $action == 'START' ) {
$result = $ec2Client -> startInstances ([
'InstanceIds' => $instanceIds ,
]);
} else {
$result = $ec2Client -> stopInstances ([
'InstanceIds' => $instanceIds ,
]);
}
2024-02-05 10:49:20 -07:00
2018-10-11 15:00:23 -07:00
var_dump ( $result );
2024-02-05 10:49:20 -07:00
2019-01-30 19:13:23 -08:00
// snippet-end:[ec2.php.start_and_stop_instance.main]
// snippet-end:[ec2.php.start_and_stop_instance.complete]