以下命令在--engine设置为postgres
时有效,但是当我将其更改为aurora-postgresql
(根据文档)时,出现奇怪的错误:
aws rds create-db-instance \
--db-name mydb1 \
--db-instance-identifier mydb1 \
--db-instance-class db.r5.large \
--engine aurora-postgresql \
--master-username postgres \
--master-user-password XXXXX \
--availability-zone us-east-1a \
--db-subnet-group-name mydb-subnets-us-east-1 \
--allocated-storage 100
错误:
An error occurred (InvalidParameterCombination) when calling the CreateDBInstance operation:
Invalid storage type for DB engine manfred: aurora
什么是manfred:
?
并且我尝试了我看到的所有记录的--storage-type
值(standard
,io1
和gp2
),它们都产生错误:
An error occurred (StorageTypeNotSupported) when calling the CreateDBInstance operation:\n
Invalid storage type: XXX
我还没有找到从CLI创建aurora postgres db的单个示例。受到赞赏的人的任何建议。