aws-sdk-rds 1.70.0 → 1.71.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cd535f85a48561add58436467830c52103bafc3b
4
- data.tar.gz: a53cc08943814902d30f5227baf30dd68722531c
3
+ metadata.gz: 376b11c4d4892dda0e7373c384753c065d2a9244
4
+ data.tar.gz: dae9cec5fd693c18aba45adcdca7a34b3cf5d740
5
5
  SHA512:
6
- metadata.gz: 2e54e4c756354f065997f4bcedc85c4d449d88917b81660d62d2239f74b59c2a2d60b3adb6b68094ac8cf384fffeb59c8bf7f01150d967d33d101941db4c0099
7
- data.tar.gz: 31bd324bc221cb4ee9e2ed3603250df384147f3d268d30ead1654958c279bf1b5efac732012e111033dedd12afbc88b0a587beb60a37c835f6f698db1a0e0b4c
6
+ metadata.gz: e598dbe1368b8778b4b29877ddd23f9957b5a49cb45f62d74ad822cfc462b726546192f19fd7396b05b78669c01a78ca2ce0b3b89b3a5ffc91fe8a3029d15022
7
+ data.tar.gz: 3cce577af43ab728b204b9344e3ec73e5c927b681a3f5fd3fb929cde1623c86bf433e67b36deb79f4eedbd4abeffa6ac3c0209ebfb3627f1354d10fdfc376a31
@@ -3352,6 +3352,13 @@ module Aws::RDS
3352
3352
  # enabled. By default, deletion protection is disabled. For more
3353
3353
  # information, see [ Deleting a DB Instance][1].
3354
3354
  #
3355
+ # **Amazon Aurora**
3356
+ #
3357
+ # Not applicable. You can enable or disable deletion protection for the
3358
+ # DB cluster. For more information, see `CreateDBCluster`. DB instances
3359
+ # in a DB cluster can be deleted even when deletion protection is
3360
+ # enabled for the DB cluster.
3361
+ #
3355
3362
  #
3356
3363
  #
3357
3364
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
@@ -4574,6 +4581,12 @@ module Aws::RDS
4574
4581
  # notified of events generated from all RDS sources belonging to your
4575
4582
  # customer account.
4576
4583
  #
4584
+ # <note markdown="1"> RDS event notification is only available for unencrypted SNS topics.
4585
+ # If you specify an encrypted SNS topic, event notifications aren't
4586
+ # sent for the topic.
4587
+ #
4588
+ # </note>
4589
+ #
4577
4590
  # @option params [required, String] :subscription_name
4578
4591
  # The name of the subscription.
4579
4592
  #
@@ -10190,9 +10203,11 @@ module Aws::RDS
10190
10203
  #
10191
10204
  # Constraints:
10192
10205
  #
10193
- # * Value must be `1`, `2`, `4`, `8`, `16`, `32`, `64`, `128`, or `256`.
10206
+ # * For Aurora MySQL, valid capacity values are `1`, `2`, `4`, `8`,
10207
+ # `16`, `32`, `64`, `128`, and `256`.
10194
10208
  #
10195
- # ^
10209
+ # * For Aurora PostgreSQL, valid capacity values are `2`, `4`, `8`,
10210
+ # `16`, `32`, `64`, `192`, and `384`.
10196
10211
  #
10197
10212
  # @option params [Integer] :seconds_before_timeout
10198
10213
  # The amount of time, in seconds, that Aurora Serverless tries to find a
@@ -11830,7 +11845,8 @@ module Aws::RDS
11830
11845
  # Updates a manual DB snapshot, which can be encrypted or not encrypted,
11831
11846
  # with a new engine version.
11832
11847
  #
11833
- # Amazon RDS supports upgrading DB snapshots for MySQL and Oracle.
11848
+ # Amazon RDS supports upgrading DB snapshots for MySQL, Oracle, and
11849
+ # PostgreSQL.
11834
11850
  #
11835
11851
  # @option params [required, String] :db_snapshot_identifier
11836
11852
  # The identifier of the DB snapshot to modify.
@@ -11855,6 +11871,15 @@ module Aws::RDS
11855
11871
  #
11856
11872
  # * `11.2.0.4.v11` (supported for 11.2.0.3 DB snapshots)
11857
11873
  #
11874
+ # **PostgreSQL**
11875
+ #
11876
+ # For the list of engine versions that are available for upgrading a DB
11877
+ # snapshot, see [ Upgrading the PostgreSQL DB Engine for Amazon RDS][1].
11878
+ #
11879
+ #
11880
+ #
11881
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.PostgreSQL.html#USER_UpgradeDBInstance.PostgreSQL.MajorVersion
11882
+ #
11858
11883
  # @option params [String] :option_group_name
11859
11884
  # The option group to identify with the upgraded DB snapshot.
11860
11885
  #
@@ -16992,7 +17017,7 @@ module Aws::RDS
16992
17017
  params: params,
16993
17018
  config: config)
16994
17019
  context[:gem_name] = 'aws-sdk-rds'
16995
- context[:gem_version] = '1.70.0'
17020
+ context[:gem_version] = '1.71.0'
16996
17021
  Seahorse::Client::Request.new(handlers, context)
16997
17022
  end
16998
17023
 
@@ -1452,6 +1452,13 @@ module Aws::RDS
1452
1452
  # enabled. By default, deletion protection is disabled. For more
1453
1453
  # information, see [ Deleting a DB Instance][1].
1454
1454
  #
1455
+ # **Amazon Aurora**
1456
+ #
1457
+ # Not applicable. You can enable or disable deletion protection for the
1458
+ # DB cluster. For more information, see `CreateDBCluster`. DB instances
1459
+ # in a DB cluster can be deleted even when deletion protection is
1460
+ # enabled for the DB cluster.
1461
+ #
1455
1462
  #
1456
1463
  #
1457
1464
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
@@ -1298,6 +1298,13 @@ module Aws::RDS
1298
1298
  # enabled. By default, deletion protection is disabled. For more
1299
1299
  # information, see [ Deleting a DB Instance][1].
1300
1300
  #
1301
+ # **Amazon Aurora**
1302
+ #
1303
+ # Not applicable. You can enable or disable deletion protection for the
1304
+ # DB cluster. For more information, see `CreateDBCluster`. DB instances
1305
+ # in a DB cluster can be deleted even when deletion protection is
1306
+ # enabled for the DB cluster.
1307
+ #
1301
1308
  #
1302
1309
  #
1303
1310
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
@@ -2993,6 +2993,13 @@ module Aws::RDS
2993
2993
  # protection is enabled. By default, deletion protection is disabled.
2994
2994
  # For more information, see [ Deleting a DB Instance][1].
2995
2995
  #
2996
+ # **Amazon Aurora**
2997
+ #
2998
+ # Not applicable. You can enable or disable deletion protection for
2999
+ # the DB cluster. For more information, see `CreateDBCluster`. DB
3000
+ # instances in a DB cluster can be deleted even when deletion
3001
+ # protection is enabled for the DB cluster.
3002
+ #
2996
3003
  #
2997
3004
  #
2998
3005
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
@@ -10403,10 +10410,11 @@ module Aws::RDS
10403
10410
  #
10404
10411
  # Constraints:
10405
10412
  #
10406
- # * Value must be `1`, `2`, `4`, `8`, `16`, `32`, `64`, `128`, or
10407
- # `256`.
10413
+ # * For Aurora MySQL, valid capacity values are `1`, `2`, `4`, `8`,
10414
+ # `16`, `32`, `64`, `128`, and `256`.
10408
10415
  #
10409
- # ^
10416
+ # * For Aurora PostgreSQL, valid capacity values are `2`, `4`, `8`,
10417
+ # `16`, `32`, `64`, `192`, and `384`.
10410
10418
  # @return [Integer]
10411
10419
  #
10412
10420
  # @!attribute [rw] seconds_before_timeout
@@ -11847,6 +11855,16 @@ module Aws::RDS
11847
11855
  # * `11.2.0.4.v12` (supported for 11.2.0.2 DB snapshots)
11848
11856
  #
11849
11857
  # * `11.2.0.4.v11` (supported for 11.2.0.3 DB snapshots)
11858
+ #
11859
+ # **PostgreSQL**
11860
+ #
11861
+ # For the list of engine versions that are available for upgrading a
11862
+ # DB snapshot, see [ Upgrading the PostgreSQL DB Engine for Amazon
11863
+ # RDS][1].
11864
+ #
11865
+ #
11866
+ #
11867
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.PostgreSQL.html#USER_UpgradeDBInstance.PostgreSQL.MajorVersion
11850
11868
  # @return [String]
11851
11869
  #
11852
11870
  # @!attribute [rw] option_group_name
@@ -16324,8 +16342,11 @@ module Aws::RDS
16324
16342
  # The minimum capacity for an Aurora DB cluster in `serverless` DB
16325
16343
  # engine mode.
16326
16344
  #
16327
- # Valid capacity values are `1`, `2`, `4`, `8`, `16`, `32`, `64`,
16328
- # `128`, and `256`.
16345
+ # For Aurora MySQL, valid capacity values are `1`, `2`, `4`, `8`,
16346
+ # `16`, `32`, `64`, `128`, and `256`.
16347
+ #
16348
+ # For Aurora PostgreSQL, valid capacity values are `2`, `4`, `8`,
16349
+ # `16`, `32`, `64`, `192`, and `384`.
16329
16350
  #
16330
16351
  # The minimum capacity must be less than or equal to the maximum
16331
16352
  # capacity.
@@ -16335,8 +16356,11 @@ module Aws::RDS
16335
16356
  # The maximum capacity for an Aurora DB cluster in `serverless` DB
16336
16357
  # engine mode.
16337
16358
  #
16338
- # Valid capacity values are `1`, `2`, `4`, `8`, `16`, `32`, `64`,
16339
- # `128`, and `256`.
16359
+ # For Aurora MySQL, valid capacity values are `1`, `2`, `4`, `8`,
16360
+ # `16`, `32`, `64`, `128`, and `256`.
16361
+ #
16362
+ # For Aurora PostgreSQL, valid capacity values are `2`, `4`, `8`,
16363
+ # `16`, `32`, `64`, `192`, and `384`.
16340
16364
  #
16341
16365
  # The maximum capacity must be greater than or equal to the minimum
16342
16366
  # capacity.
data/lib/aws-sdk-rds.rb CHANGED
@@ -68,6 +68,6 @@ require_relative 'aws-sdk-rds/customizations'
68
68
  # @service
69
69
  module Aws::RDS
70
70
 
71
- GEM_VERSION = '1.70.0'
71
+ GEM_VERSION = '1.71.0'
72
72
 
73
73
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.70.0
4
+ version: 1.71.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-05 00:00:00.000000000 Z
11
+ date: 2019-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4