我正在尝试使用ec2-import-instance
命令导入vmdk图像,但它返回错误:
用法:aws [options] [参数] aws:错误: 参数命令:无效选择,有效选择是:
自动缩放| cloudformation cloudfront
| cloudhsm cloudsearch | cloudsearchdomain等..
我的命令在这里:
aws ec2-import-instance "C:\AWS-TEST-VM\aws-test-vm-01\aws-test-vm-01-disk1.vmdk" -f vmdk -t m1.small -a x86_64 -b bucket_name -o Access Key –w Secret+Access+Key -p Linux --ignore-region-affinity
答案 0 :(得分:0)
您似乎正在混合两个不同的命令行界面。
“老式”'命令有连字符,例如:
ec2-import-instance -t instance_type [-g group] -f file_format -a architecture [-p platform_name] -b s3_bucket_name ...
较新的AWS Command-Line Interface (CLI)使用aws <service> <command> <parameters>
的语法,例如:
aws ec2 import-image [--description <value>] [--disk-containers <value>] [--license-type <value>] ...
请参阅: