2
私は、このようにそれを実行しよう:AWSツールを使用してAWSにスナップショットバックアップAMIを登録するにはどうすればよいですか?
aws ec2 register-image --architecture x86_64 \
--description XXX --name XXX \
--sriov-net-support simple --ena-support \
--virtualization-type hvm \
--block-device-mappings \
'[{"DeviceName": "/dev/sda","Ebs": {"SnapshotId": "snap-XXXX"}}]' \
--root-device-name /dev/sda1
と私は、このエラーメッセージがあります。
An error occurred (InvalidBlockDeviceMapping)
when calling the RegisterImage operation: Invalid device name /dev/sda
ここで何が間違っているの?