使用AWS CLI创建AWS Aurora Postgres实例的正确参数是什么?

时间:2019-09-23 16:51:54

标签: postgresql amazon-web-services amazon-rds-aurora

以下命令在--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值(standardio1gp2),它们都产生错误:

An error occurred (StorageTypeNotSupported) when calling the CreateDBInstance operation:\n
Invalid storage type: XXX

我还没有找到从CLI创建aurora postgres db的单个示例。受到赞赏的人的任何建议。

0 个答案:

没有答案