Amazon cloudformation Cloudformation BackupRetentionPeriod对RDS Aurora群集没有任何影响

Amazon cloudformation Cloudformation BackupRetentionPeriod对RDS Aurora群集没有任何影响,amazon-cloudformation,amazon-rds,amazon-aurora,Amazon Cloudformation,Amazon Rds,Amazon Aurora,我在cloudformation模板中设置了BackupRetentionPeriod:15。 但是,它不会对实际实例产生任何影响。 附言: 我试着在DBInstance级别设置BackupRetentionPeriod,但它不允许我这样做,因为它是一个集群。实际上它正在工作 aws clidescripe db clusters表明更改是有效的 $ aws rds describe-db-clusters --db-cluster-identifier appname-test-d


我在cloudformation模板中设置了
BackupRetentionPeriod:15


但是,它不会对实际实例产生任何影响。


附言:
我试着在DBInstance级别设置
BackupRetentionPeriod
,但它不允许我这样做,因为它是一个集群。

实际上它正在工作

aws cli
descripe db clusters
表明更改是有效的

$ aws rds describe-db-clusters  --db-cluster-identifier appname-test-database000001
{
"DBClusters": [
    {
        "AllocatedStorage": 1,
        "AvailabilityZones": [
            "eu-central-1a",
            "eu-central-1b",
            "eu-central-1c"
        ],
        "BackupRetentionPeriod": 15,
        "DatabaseName": "database000001",
        "DBClusterIdentifier": "appname-test-database000001",
        "DBClusterParameterGroup": "default.aurora-postgresql10",
       .....
       }
造成混淆的原因是UI,它显示了
性能指示灯的保留期,而不是
备份
实际上它正在工作

aws cli
descripe db clusters
表明更改是有效的

$ aws rds describe-db-clusters  --db-cluster-identifier appname-test-database000001
{
"DBClusters": [
    {
        "AllocatedStorage": 1,
        "AvailabilityZones": [
            "eu-central-1a",
            "eu-central-1b",
            "eu-central-1c"
        ],
        "BackupRetentionPeriod": 15,
        "DatabaseName": "database000001",
        "DBClusterIdentifier": "appname-test-database000001",
        "DBClusterParameterGroup": "default.aurora-postgresql10",
       .....
       }

混淆是因为UI显示了
性能指示灯的保留期,而不是
备份的保留期,根据:“Amazon Aurora:不适用。自动备份的保留期由DB群集管理。”@MariaInesParnisari有没有办法增加备份保留期?根据:“Amazon Aurora:不适用。自动备份的保留期由DB群集管理。”@MariaInesParnisari有没有办法增加备份保留期?