将AWS SDK PHP2与Composer结合使用。
到目前为止我已经得到了这个:
$new = array('ImageId' => 'ami-xxx', 'MinCount' => 1, 'MaxCount' => 1, 'KeyName' => 'xxx', 'SecurityGroups' => array('xxx'), 'InstanceType' => 't1.micro', 'BlockDeviceMappings' => array(array('DeviceName' => '/dev/sda1', 'Ebs' => array('DeleteOnTermination' => true))));
我在runInstances
中的标签文档中没有看到任何内容答案 0 :(得分:0)
标签只能添加到现有实例 - 启动新标签时无法指定它们。在runInstance调用成功后,您需要单独调用。