aws-sdk-rds 1.121.0 → 1.125.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
  SHA256:
3
- metadata.gz: 67b544e9fb4f538501cdfab6d32b0dab2399d41cbf4741dc9f91acc1da2d0a08
4
- data.tar.gz: 279168bbbc7ba2400fe68ea0bb83c50fb64c901f964131490c2c5984fad825ef
3
+ metadata.gz: 8fe85265f4ea65ea7ab83125bae8f66b3cef1c68255b8d61366cc9d7d25ca135
4
+ data.tar.gz: af59ca3a0f2f5f553a890c46c384b9ac7320a70146da11a65337182e6131ec70
5
5
  SHA512:
6
- metadata.gz: 1419fe011fc01af7d1fd4801b4c94e872c933a73ae5b215be158ece98ce0e84632a8c8a6c150849ce56e1cde6edf3f7f0d262c209d6ac59245217915e53dbf78
7
- data.tar.gz: 7208d04938132c838e60281395590715518e4fec0fa7a763767db6733977c1fc32e6b456b34bc0a4ee453ad06ee02bde9e4f239e02d2315844ddc5858db8edad
6
+ metadata.gz: 61859695d0c7a68763f5d3aaf8f057278460c263d715c0ece69344fc11dae208c0053f02b16deb10ec7585803b13df0918923bf306ef01ee23301928e6561988
7
+ data.tar.gz: c9e9262b7aa2c64b7c64898c553269f9e7190ff9d76f678e6152c6aac77dc1f0bcc8aa66cfaf3d0036bc947861a6fd26205843093618a2f29bb62419f59c8e93
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.125.0 (2021-08-04)
5
+ ------------------
6
+
7
+ * Feature - This release adds AutomaticRestartTime to the DescribeDBInstances and DescribeDBClusters operations. AutomaticRestartTime indicates the time when a stopped DB instance or DB cluster is restarted automatically.
8
+
9
+ 1.124.0 (2021-07-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.123.0 (2021-07-28)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.122.0 (2021-07-21)
20
+ ------------------
21
+
22
+ * Feature - Adds the OriginalSnapshotCreateTime field to the DBSnapshot response object. This field timestamps the underlying data of a snapshot and doesn't change when the snapshot is copied.
23
+
4
24
  1.121.0 (2021-06-17)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.121.0
1
+ 1.125.0
data/lib/aws-sdk-rds.rb CHANGED
@@ -74,6 +74,6 @@ require_relative 'aws-sdk-rds/customizations'
74
74
  # @!group service
75
75
  module Aws::RDS
76
76
 
77
- GEM_VERSION = '1.121.0'
77
+ GEM_VERSION = '1.125.0'
78
78
 
79
79
  end
@@ -1657,6 +1657,7 @@ module Aws::RDS
1657
1657
  # resp.db_snapshot.tag_list #=> Array
1658
1658
  # resp.db_snapshot.tag_list[0].key #=> String
1659
1659
  # resp.db_snapshot.tag_list[0].value #=> String
1660
+ # resp.db_snapshot.original_snapshot_create_time #=> Time
1660
1661
  #
1661
1662
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
1662
1663
  #
@@ -2382,6 +2383,7 @@ module Aws::RDS
2382
2383
  # resp.db_cluster.db_cluster_parameter_group #=> String
2383
2384
  # resp.db_cluster.db_subnet_group #=> String
2384
2385
  # resp.db_cluster.status #=> String
2386
+ # resp.db_cluster.automatic_restart_time #=> Time
2385
2387
  # resp.db_cluster.percent_progress #=> String
2386
2388
  # resp.db_cluster.earliest_restorable_time #=> Time
2387
2389
  # resp.db_cluster.endpoint #=> String
@@ -2927,7 +2929,8 @@ module Aws::RDS
2927
2929
  # Example: `mydbinstance`
2928
2930
  #
2929
2931
  # @option params [Integer] :allocated_storage
2930
- # The amount of storage (in gibibytes) to allocate for the DB instance.
2932
+ # The amount of storage in gibibytes (GiB) to allocate for the DB
2933
+ # instance.
2931
2934
  #
2932
2935
  # Type: Integer
2933
2936
  #
@@ -3693,8 +3696,8 @@ module Aws::RDS
3693
3696
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
3694
3697
  #
3695
3698
  # @option params [Integer] :max_allocated_storage
3696
- # The upper limit to which Amazon RDS can automatically scale the
3697
- # storage of the DB instance.
3699
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
3700
+ # automatically scale the storage of the DB instance.
3698
3701
  #
3699
3702
  # For more information about this setting, including limitations that
3700
3703
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -3818,6 +3821,7 @@ module Aws::RDS
3818
3821
  # resp.db_instance.db_instance_class #=> String
3819
3822
  # resp.db_instance.engine #=> String
3820
3823
  # resp.db_instance.db_instance_status #=> String
3824
+ # resp.db_instance.automatic_restart_time #=> Time
3821
3825
  # resp.db_instance.master_username #=> String
3822
3826
  # resp.db_instance.db_name #=> String
3823
3827
  # resp.db_instance.endpoint.address #=> String
@@ -4391,8 +4395,8 @@ module Aws::RDS
4391
4395
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
4392
4396
  #
4393
4397
  # @option params [Integer] :max_allocated_storage
4394
- # The upper limit to which Amazon RDS can automatically scale the
4395
- # storage of the DB instance.
4398
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
4399
+ # automatically scale the storage of the DB instance.
4396
4400
  #
4397
4401
  # For more information about this setting, including limitations that
4398
4402
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -4491,6 +4495,7 @@ module Aws::RDS
4491
4495
  # resp.db_instance.db_instance_class #=> String
4492
4496
  # resp.db_instance.engine #=> String
4493
4497
  # resp.db_instance.db_instance_status #=> String
4498
+ # resp.db_instance.automatic_restart_time #=> Time
4494
4499
  # resp.db_instance.master_username #=> String
4495
4500
  # resp.db_instance.db_name #=> String
4496
4501
  # resp.db_instance.endpoint.address #=> String
@@ -5167,6 +5172,7 @@ module Aws::RDS
5167
5172
  # resp.db_snapshot.tag_list #=> Array
5168
5173
  # resp.db_snapshot.tag_list[0].key #=> String
5169
5174
  # resp.db_snapshot.tag_list[0].value #=> String
5175
+ # resp.db_snapshot.original_snapshot_create_time #=> Time
5170
5176
  #
5171
5177
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
5172
5178
  #
@@ -5790,6 +5796,7 @@ module Aws::RDS
5790
5796
  # resp.db_cluster.db_cluster_parameter_group #=> String
5791
5797
  # resp.db_cluster.db_subnet_group #=> String
5792
5798
  # resp.db_cluster.status #=> String
5799
+ # resp.db_cluster.automatic_restart_time #=> Time
5793
5800
  # resp.db_cluster.percent_progress #=> String
5794
5801
  # resp.db_cluster.earliest_restorable_time #=> Time
5795
5802
  # resp.db_cluster.endpoint #=> String
@@ -6190,6 +6197,7 @@ module Aws::RDS
6190
6197
  # resp.db_instance.db_instance_class #=> String
6191
6198
  # resp.db_instance.engine #=> String
6192
6199
  # resp.db_instance.db_instance_status #=> String
6200
+ # resp.db_instance.automatic_restart_time #=> Time
6193
6201
  # resp.db_instance.master_username #=> String
6194
6202
  # resp.db_instance.db_name #=> String
6195
6203
  # resp.db_instance.endpoint.address #=> String
@@ -6645,6 +6653,7 @@ module Aws::RDS
6645
6653
  # resp.db_snapshot.tag_list #=> Array
6646
6654
  # resp.db_snapshot.tag_list[0].key #=> String
6647
6655
  # resp.db_snapshot.tag_list[0].value #=> String
6656
+ # resp.db_snapshot.original_snapshot_create_time #=> Time
6648
6657
  #
6649
6658
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
6650
6659
  #
@@ -7850,11 +7859,20 @@ module Aws::RDS
7850
7859
  #
7851
7860
  # Supported filters:
7852
7861
  #
7862
+ # * `clone-group-id` - Accepts clone group identifiers. The results list
7863
+ # will only include information about the DB clusters associated with
7864
+ # these clone groups.
7865
+ #
7853
7866
  # * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
7854
7867
  # Amazon Resource Names (ARNs). The results list will only include
7855
7868
  # information about the DB clusters identified by these ARNs.
7856
7869
  #
7857
- # ^
7870
+ # * `domain` - Accepts Active Directory directory IDs. The results list
7871
+ # will only include information about the DB clusters associated with
7872
+ # these domains.
7873
+ #
7874
+ # * `engine` - Accepts engine names. The results list will only include
7875
+ # information about the DB clusters for these engines.
7858
7876
  #
7859
7877
  # @option params [Integer] :max_records
7860
7878
  # The maximum number of records to include in the response. If more
@@ -7926,6 +7944,7 @@ module Aws::RDS
7926
7944
  # resp.db_clusters[0].db_cluster_parameter_group #=> String
7927
7945
  # resp.db_clusters[0].db_subnet_group #=> String
7928
7946
  # resp.db_clusters[0].status #=> String
7947
+ # resp.db_clusters[0].automatic_restart_time #=> Time
7929
7948
  # resp.db_clusters[0].percent_progress #=> String
7930
7949
  # resp.db_clusters[0].earliest_restorable_time #=> Time
7931
7950
  # resp.db_clusters[0].endpoint #=> String
@@ -8429,6 +8448,7 @@ module Aws::RDS
8429
8448
  # resp.db_instances[0].db_instance_class #=> String
8430
8449
  # resp.db_instances[0].engine #=> String
8431
8450
  # resp.db_instances[0].db_instance_status #=> String
8451
+ # resp.db_instances[0].automatic_restart_time #=> Time
8432
8452
  # resp.db_instances[0].master_username #=> String
8433
8453
  # resp.db_instances[0].db_name #=> String
8434
8454
  # resp.db_instances[0].endpoint.address #=> String
@@ -9507,6 +9527,7 @@ module Aws::RDS
9507
9527
  # resp.db_snapshots[0].tag_list #=> Array
9508
9528
  # resp.db_snapshots[0].tag_list[0].key #=> String
9509
9529
  # resp.db_snapshots[0].tag_list[0].value #=> String
9530
+ # resp.db_snapshots[0].original_snapshot_create_time #=> Time
9510
9531
  #
9511
9532
  #
9512
9533
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -10227,15 +10248,7 @@ module Aws::RDS
10227
10248
  # ^
10228
10249
  #
10229
10250
  # @option params [Array<Types::Filter>] :filters
10230
- # A filter that specifies one or more global DB clusters to describe.
10231
- #
10232
- # Supported filters:
10233
- #
10234
- # * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
10235
- # Amazon Resource Names (ARNs). The results list will only include
10236
- # information about the DB clusters identified by these ARNs.
10237
- #
10238
- # ^
10251
+ # This parameter isn't currently supported.
10239
10252
  #
10240
10253
  # @option params [Integer] :max_records
10241
10254
  # The maximum number of records to include in the response. If more
@@ -11539,6 +11552,7 @@ module Aws::RDS
11539
11552
  # resp.db_cluster.db_cluster_parameter_group #=> String
11540
11553
  # resp.db_cluster.db_subnet_group #=> String
11541
11554
  # resp.db_cluster.status #=> String
11555
+ # resp.db_cluster.automatic_restart_time #=> Time
11542
11556
  # resp.db_cluster.percent_progress #=> String
11543
11557
  # resp.db_cluster.earliest_restorable_time #=> Time
11544
11558
  # resp.db_cluster.endpoint #=> String
@@ -12423,6 +12437,7 @@ module Aws::RDS
12423
12437
  # resp.db_cluster.db_cluster_parameter_group #=> String
12424
12438
  # resp.db_cluster.db_subnet_group #=> String
12425
12439
  # resp.db_cluster.status #=> String
12440
+ # resp.db_cluster.automatic_restart_time #=> Time
12426
12441
  # resp.db_cluster.percent_progress #=> String
12427
12442
  # resp.db_cluster.earliest_restorable_time #=> Time
12428
12443
  # resp.db_cluster.endpoint #=> String
@@ -12836,7 +12851,7 @@ module Aws::RDS
12836
12851
  # ^
12837
12852
  #
12838
12853
  # @option params [Integer] :allocated_storage
12839
- # The new amount of storage (in gibibytes) to allocate for the DB
12854
+ # The new amount of storage in gibibytes (GiB) to allocate for the DB
12840
12855
  # instance.
12841
12856
  #
12842
12857
  # For MariaDB, MySQL, Oracle, and PostgreSQL, the value supplied must be
@@ -13432,8 +13447,8 @@ module Aws::RDS
13432
13447
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
13433
13448
  #
13434
13449
  # @option params [Integer] :max_allocated_storage
13435
- # The upper limit to which Amazon RDS can automatically scale the
13436
- # storage of the DB instance.
13450
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
13451
+ # automatically scale the storage of the DB instance.
13437
13452
  #
13438
13453
  # For more information about this setting, including limitations that
13439
13454
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -13606,6 +13621,7 @@ module Aws::RDS
13606
13621
  # resp.db_instance.db_instance_class #=> String
13607
13622
  # resp.db_instance.engine #=> String
13608
13623
  # resp.db_instance.db_instance_status #=> String
13624
+ # resp.db_instance.automatic_restart_time #=> Time
13609
13625
  # resp.db_instance.master_username #=> String
13610
13626
  # resp.db_instance.db_name #=> String
13611
13627
  # resp.db_instance.endpoint.address #=> String
@@ -14165,6 +14181,7 @@ module Aws::RDS
14165
14181
  # resp.db_snapshot.tag_list #=> Array
14166
14182
  # resp.db_snapshot.tag_list[0].key #=> String
14167
14183
  # resp.db_snapshot.tag_list[0].value #=> String
14184
+ # resp.db_snapshot.original_snapshot_create_time #=> Time
14168
14185
  #
14169
14186
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
14170
14187
  #
@@ -14808,6 +14825,7 @@ module Aws::RDS
14808
14825
  # resp.db_instance.db_instance_class #=> String
14809
14826
  # resp.db_instance.engine #=> String
14810
14827
  # resp.db_instance.db_instance_status #=> String
14828
+ # resp.db_instance.automatic_restart_time #=> Time
14811
14829
  # resp.db_instance.master_username #=> String
14812
14830
  # resp.db_instance.db_name #=> String
14813
14831
  # resp.db_instance.endpoint.address #=> String
@@ -14983,6 +15001,7 @@ module Aws::RDS
14983
15001
  # resp.db_cluster.db_cluster_parameter_group #=> String
14984
15002
  # resp.db_cluster.db_subnet_group #=> String
14985
15003
  # resp.db_cluster.status #=> String
15004
+ # resp.db_cluster.automatic_restart_time #=> Time
14986
15005
  # resp.db_cluster.percent_progress #=> String
14987
15006
  # resp.db_cluster.earliest_restorable_time #=> Time
14988
15007
  # resp.db_cluster.endpoint #=> String
@@ -15226,6 +15245,7 @@ module Aws::RDS
15226
15245
  # resp.db_instance.db_instance_class #=> String
15227
15246
  # resp.db_instance.engine #=> String
15228
15247
  # resp.db_instance.db_instance_status #=> String
15248
+ # resp.db_instance.automatic_restart_time #=> Time
15229
15249
  # resp.db_instance.master_username #=> String
15230
15250
  # resp.db_instance.db_name #=> String
15231
15251
  # resp.db_instance.endpoint.address #=> String
@@ -16237,6 +16257,7 @@ module Aws::RDS
16237
16257
  # resp.db_cluster.db_cluster_parameter_group #=> String
16238
16258
  # resp.db_cluster.db_subnet_group #=> String
16239
16259
  # resp.db_cluster.status #=> String
16260
+ # resp.db_cluster.automatic_restart_time #=> Time
16240
16261
  # resp.db_cluster.percent_progress #=> String
16241
16262
  # resp.db_cluster.earliest_restorable_time #=> Time
16242
16263
  # resp.db_cluster.endpoint #=> String
@@ -16640,6 +16661,7 @@ module Aws::RDS
16640
16661
  # resp.db_cluster.db_cluster_parameter_group #=> String
16641
16662
  # resp.db_cluster.db_subnet_group #=> String
16642
16663
  # resp.db_cluster.status #=> String
16664
+ # resp.db_cluster.automatic_restart_time #=> Time
16643
16665
  # resp.db_cluster.percent_progress #=> String
16644
16666
  # resp.db_cluster.earliest_restorable_time #=> Time
16645
16667
  # resp.db_cluster.endpoint #=> String
@@ -17041,6 +17063,7 @@ module Aws::RDS
17041
17063
  # resp.db_cluster.db_cluster_parameter_group #=> String
17042
17064
  # resp.db_cluster.db_subnet_group #=> String
17043
17065
  # resp.db_cluster.status #=> String
17066
+ # resp.db_cluster.automatic_restart_time #=> Time
17044
17067
  # resp.db_cluster.percent_progress #=> String
17045
17068
  # resp.db_cluster.earliest_restorable_time #=> Time
17046
17069
  # resp.db_cluster.endpoint #=> String
@@ -17601,6 +17624,7 @@ module Aws::RDS
17601
17624
  # resp.db_instance.db_instance_class #=> String
17602
17625
  # resp.db_instance.engine #=> String
17603
17626
  # resp.db_instance.db_instance_status #=> String
17627
+ # resp.db_instance.automatic_restart_time #=> Time
17604
17628
  # resp.db_instance.master_username #=> String
17605
17629
  # resp.db_instance.db_name #=> String
17606
17630
  # resp.db_instance.endpoint.address #=> String
@@ -18111,8 +18135,8 @@ module Aws::RDS
18111
18135
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
18112
18136
  #
18113
18137
  # @option params [Integer] :max_allocated_storage
18114
- # The upper limit to which Amazon RDS can automatically scale the
18115
- # storage of the DB instance.
18138
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
18139
+ # automatically scale the storage of the DB instance.
18116
18140
  #
18117
18141
  # For more information about this setting, including limitations that
18118
18142
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -18191,6 +18215,7 @@ module Aws::RDS
18191
18215
  # resp.db_instance.db_instance_class #=> String
18192
18216
  # resp.db_instance.engine #=> String
18193
18217
  # resp.db_instance.db_instance_status #=> String
18218
+ # resp.db_instance.automatic_restart_time #=> Time
18194
18219
  # resp.db_instance.master_username #=> String
18195
18220
  # resp.db_instance.db_name #=> String
18196
18221
  # resp.db_instance.endpoint.address #=> String
@@ -18632,8 +18657,8 @@ module Aws::RDS
18632
18657
  # The resource ID of the source DB instance from which to restore.
18633
18658
  #
18634
18659
  # @option params [Integer] :max_allocated_storage
18635
- # The upper limit to which Amazon RDS can automatically scale the
18636
- # storage of the DB instance.
18660
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
18661
+ # automatically scale the storage of the DB instance.
18637
18662
  #
18638
18663
  # For more information about this setting, including limitations that
18639
18664
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -18824,6 +18849,7 @@ module Aws::RDS
18824
18849
  # resp.db_instance.db_instance_class #=> String
18825
18850
  # resp.db_instance.engine #=> String
18826
18851
  # resp.db_instance.db_instance_status #=> String
18852
+ # resp.db_instance.automatic_restart_time #=> Time
18827
18853
  # resp.db_instance.master_username #=> String
18828
18854
  # resp.db_instance.db_name #=> String
18829
18855
  # resp.db_instance.endpoint.address #=> String
@@ -19160,6 +19186,7 @@ module Aws::RDS
19160
19186
  # resp.db_cluster.db_cluster_parameter_group #=> String
19161
19187
  # resp.db_cluster.db_subnet_group #=> String
19162
19188
  # resp.db_cluster.status #=> String
19189
+ # resp.db_cluster.automatic_restart_time #=> Time
19163
19190
  # resp.db_cluster.percent_progress #=> String
19164
19191
  # resp.db_cluster.earliest_restorable_time #=> Time
19165
19192
  # resp.db_cluster.endpoint #=> String
@@ -19283,6 +19310,7 @@ module Aws::RDS
19283
19310
  # resp.db_instance.db_instance_class #=> String
19284
19311
  # resp.db_instance.engine #=> String
19285
19312
  # resp.db_instance.db_instance_status #=> String
19313
+ # resp.db_instance.automatic_restart_time #=> Time
19286
19314
  # resp.db_instance.master_username #=> String
19287
19315
  # resp.db_instance.db_name #=> String
19288
19316
  # resp.db_instance.endpoint.address #=> String
@@ -19727,6 +19755,7 @@ module Aws::RDS
19727
19755
  # resp.db_cluster.db_cluster_parameter_group #=> String
19728
19756
  # resp.db_cluster.db_subnet_group #=> String
19729
19757
  # resp.db_cluster.status #=> String
19758
+ # resp.db_cluster.automatic_restart_time #=> Time
19730
19759
  # resp.db_cluster.percent_progress #=> String
19731
19760
  # resp.db_cluster.earliest_restorable_time #=> Time
19732
19761
  # resp.db_cluster.endpoint #=> String
@@ -19857,6 +19886,7 @@ module Aws::RDS
19857
19886
  # resp.db_instance.db_instance_class #=> String
19858
19887
  # resp.db_instance.engine #=> String
19859
19888
  # resp.db_instance.db_instance_status #=> String
19889
+ # resp.db_instance.automatic_restart_time #=> Time
19860
19890
  # resp.db_instance.master_username #=> String
19861
19891
  # resp.db_instance.db_name #=> String
19862
19892
  # resp.db_instance.endpoint.address #=> String
@@ -20069,7 +20099,7 @@ module Aws::RDS
20069
20099
  params: params,
20070
20100
  config: config)
20071
20101
  context[:gem_name] = 'aws-sdk-rds'
20072
- context[:gem_version] = '1.121.0'
20102
+ context[:gem_version] = '1.125.0'
20073
20103
  Seahorse::Client::Request.new(handlers, context)
20074
20104
  end
20075
20105
 
@@ -1072,6 +1072,7 @@ module Aws::RDS
1072
1072
  DBCluster.add_member(:db_cluster_parameter_group, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroup"))
1073
1073
  DBCluster.add_member(:db_subnet_group, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroup"))
1074
1074
  DBCluster.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
1075
+ DBCluster.add_member(:automatic_restart_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "AutomaticRestartTime"))
1075
1076
  DBCluster.add_member(:percent_progress, Shapes::ShapeRef.new(shape: String, location_name: "PercentProgress"))
1076
1077
  DBCluster.add_member(:earliest_restorable_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "EarliestRestorableTime"))
1077
1078
  DBCluster.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
@@ -1302,6 +1303,7 @@ module Aws::RDS
1302
1303
  DBInstance.add_member(:db_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceClass"))
1303
1304
  DBInstance.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
1304
1305
  DBInstance.add_member(:db_instance_status, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceStatus"))
1306
+ DBInstance.add_member(:automatic_restart_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "AutomaticRestartTime"))
1305
1307
  DBInstance.add_member(:master_username, Shapes::ShapeRef.new(shape: String, location_name: "MasterUsername"))
1306
1308
  DBInstance.add_member(:db_name, Shapes::ShapeRef.new(shape: String, location_name: "DBName"))
1307
1309
  DBInstance.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "Endpoint"))
@@ -1608,6 +1610,7 @@ module Aws::RDS
1608
1610
  DBSnapshot.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
1609
1611
  DBSnapshot.add_member(:dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DbiResourceId"))
1610
1612
  DBSnapshot.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
1613
+ DBSnapshot.add_member(:original_snapshot_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "OriginalSnapshotCreateTime"))
1611
1614
  DBSnapshot.struct_class = Types::DBSnapshot
1612
1615
 
1613
1616
  DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
@@ -94,6 +94,12 @@ module Aws::RDS
94
94
  data[:status]
95
95
  end
96
96
 
97
+ # The time when a stopped DB cluster is restarted automatically.
98
+ # @return [Time]
99
+ def automatic_restart_time
100
+ data[:automatic_restart_time]
101
+ end
102
+
97
103
  # Specifies the progress of the operation as a percentage.
98
104
  # @return [String]
99
105
  def percent_progress
@@ -61,6 +61,12 @@ module Aws::RDS
61
61
  data[:db_instance_status]
62
62
  end
63
63
 
64
+ # The time when a stopped DB instance is restarted automatically.
65
+ # @return [Time]
66
+ def automatic_restart_time
67
+ data[:automatic_restart_time]
68
+ end
69
+
64
70
  # Contains the master username for the DB instance.
65
71
  # @return [String]
66
72
  def master_username
@@ -89,12 +95,17 @@ module Aws::RDS
89
95
  end
90
96
 
91
97
  # Specifies the connection endpoint.
98
+ #
99
+ # <note markdown="1"> The endpoint might not be shown for instances whose status is
100
+ # `creating`.
101
+ #
102
+ # </note>
92
103
  # @return [Types::Endpoint]
93
104
  def endpoint
94
105
  data[:endpoint]
95
106
  end
96
107
 
97
- # Specifies the allocated storage size specified in gibibytes.
108
+ # Specifies the allocated storage size specified in gibibytes (GiB).
98
109
  # @return [Integer]
99
110
  def allocated_storage
100
111
  data[:allocated_storage]
@@ -524,8 +535,8 @@ module Aws::RDS
524
535
  data[:listener_endpoint]
525
536
  end
526
537
 
527
- # The upper limit to which Amazon RDS can automatically scale the
528
- # storage of the DB instance.
538
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
539
+ # automatically scale the storage of the DB instance.
529
540
  # @return [Integer]
530
541
  def max_allocated_storage
531
542
  data[:max_allocated_storage]
@@ -910,7 +921,8 @@ module Aws::RDS
910
921
  #
911
922
  # * It can't be a word reserved by the database engine.
912
923
  # @option options [Integer] :allocated_storage
913
- # The amount of storage (in gibibytes) to allocate for the DB instance.
924
+ # The amount of storage in gibibytes (GiB) to allocate for the DB
925
+ # instance.
914
926
  #
915
927
  # Type: Integer
916
928
  #
@@ -1632,8 +1644,8 @@ module Aws::RDS
1632
1644
  #
1633
1645
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
1634
1646
  # @option options [Integer] :max_allocated_storage
1635
- # The upper limit to which Amazon RDS can automatically scale the
1636
- # storage of the DB instance.
1647
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
1648
+ # automatically scale the storage of the DB instance.
1637
1649
  #
1638
1650
  # For more information about this setting, including limitations that
1639
1651
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -2066,8 +2078,8 @@ module Aws::RDS
2066
2078
  #
2067
2079
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
2068
2080
  # @option options [Integer] :max_allocated_storage
2069
- # The upper limit to which Amazon RDS can automatically scale the
2070
- # storage of the DB instance.
2081
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
2082
+ # automatically scale the storage of the DB instance.
2071
2083
  #
2072
2084
  # For more information about this setting, including limitations that
2073
2085
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -2252,7 +2264,7 @@ module Aws::RDS
2252
2264
  # })
2253
2265
  # @param [Hash] options ({})
2254
2266
  # @option options [Integer] :allocated_storage
2255
- # The new amount of storage (in gibibytes) to allocate for the DB
2267
+ # The new amount of storage in gibibytes (GiB) to allocate for the DB
2256
2268
  # instance.
2257
2269
  #
2258
2270
  # For MariaDB, MySQL, Oracle, and PostgreSQL, the value supplied must be
@@ -2809,8 +2821,8 @@ module Aws::RDS
2809
2821
  #
2810
2822
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
2811
2823
  # @option options [Integer] :max_allocated_storage
2812
- # The upper limit to which Amazon RDS can automatically scale the
2813
- # storage of the DB instance.
2824
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
2825
+ # automatically scale the storage of the DB instance.
2814
2826
  #
2815
2827
  # For more information about this setting, including limitations that
2816
2828
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -3271,8 +3283,8 @@ module Aws::RDS
3271
3283
  # @option options [String] :source_dbi_resource_id
3272
3284
  # The resource ID of the source DB instance from which to restore.
3273
3285
  # @option options [Integer] :max_allocated_storage
3274
- # The upper limit to which Amazon RDS can automatically scale the
3275
- # storage of the DB instance.
3286
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
3287
+ # automatically scale the storage of the DB instance.
3276
3288
  #
3277
3289
  # For more information about this setting, including limitations that
3278
3290
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -45,7 +45,7 @@ module Aws::RDS
45
45
  alias :db_snapshot_identifier :snapshot_id
46
46
 
47
47
  # Specifies when the snapshot was taken in Coordinated Universal Time
48
- # (UTC).
48
+ # (UTC). Changes for the copy when the snapshot is copied.
49
49
  # @return [Time]
50
50
  def snapshot_create_time
51
51
  data[:snapshot_create_time]
@@ -147,8 +147,8 @@ module Aws::RDS
147
147
  end
148
148
 
149
149
  # The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was
150
- # copied from. It only has value in case of cross-customer or
151
- # cross-region copy.
150
+ # copied from. It only has a value in the case of a cross-account or
151
+ # cross-Region copy.
152
152
  # @return [String]
153
153
  def source_db_snapshot_identifier
154
154
  data[:source_db_snapshot_identifier]
@@ -231,6 +231,13 @@ module Aws::RDS
231
231
  data[:tag_list]
232
232
  end
233
233
 
234
+ # Specifies the time of the CreateDBSnapshot operation in Coordinated
235
+ # Universal Time (UTC). Doesn't change when the snapshot is copied.
236
+ # @return [Time]
237
+ def original_snapshot_create_time
238
+ data[:original_snapshot_create_time]
239
+ end
240
+
234
241
  # @!endgroup
235
242
 
236
243
  # @return [Client]
@@ -736,7 +736,8 @@ module Aws::RDS
736
736
  #
737
737
  # Example: `mydbinstance`
738
738
  # @option options [Integer] :allocated_storage
739
- # The amount of storage (in gibibytes) to allocate for the DB instance.
739
+ # The amount of storage in gibibytes (GiB) to allocate for the DB
740
+ # instance.
740
741
  #
741
742
  # Type: Integer
742
743
  #
@@ -1458,8 +1459,8 @@ module Aws::RDS
1458
1459
  #
1459
1460
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
1460
1461
  # @option options [Integer] :max_allocated_storage
1461
- # The upper limit to which Amazon RDS can automatically scale the
1462
- # storage of the DB instance.
1462
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
1463
+ # automatically scale the storage of the DB instance.
1463
1464
  #
1464
1465
  # For more information about this setting, including limitations that
1465
1466
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -1997,11 +1998,20 @@ module Aws::RDS
1997
1998
  #
1998
1999
  # Supported filters:
1999
2000
  #
2001
+ # * `clone-group-id` - Accepts clone group identifiers. The results list
2002
+ # will only include information about the DB clusters associated with
2003
+ # these clone groups.
2004
+ #
2000
2005
  # * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
2001
2006
  # Amazon Resource Names (ARNs). The results list will only include
2002
2007
  # information about the DB clusters identified by these ARNs.
2003
2008
  #
2004
- # ^
2009
+ # * `domain` - Accepts Active Directory directory IDs. The results list
2010
+ # will only include information about the DB clusters associated with
2011
+ # these domains.
2012
+ #
2013
+ # * `engine` - Accepts engine names. The results list will only include
2014
+ # information about the DB clusters for these engines.
2005
2015
  # @option options [Boolean] :include_shared
2006
2016
  # Optional Boolean parameter that specifies whether the output includes
2007
2017
  # information about clusters shared from other Amazon Web Services
@@ -2653,7 +2653,7 @@ module Aws::RDS
2653
2653
  # @return [String]
2654
2654
  #
2655
2655
  # @!attribute [rw] allocated_storage
2656
- # The amount of storage (in gibibytes) to allocate for the DB
2656
+ # The amount of storage in gibibytes (GiB) to allocate for the DB
2657
2657
  # instance.
2658
2658
  #
2659
2659
  # Type: Integer
@@ -3469,8 +3469,8 @@ module Aws::RDS
3469
3469
  # @return [Boolean]
3470
3470
  #
3471
3471
  # @!attribute [rw] max_allocated_storage
3472
- # The upper limit to which Amazon RDS can automatically scale the
3473
- # storage of the DB instance.
3472
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
3473
+ # automatically scale the storage of the DB instance.
3474
3474
  #
3475
3475
  # For more information about this setting, including limitations that
3476
3476
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -4064,8 +4064,8 @@ module Aws::RDS
4064
4064
  # @return [String]
4065
4065
  #
4066
4066
  # @!attribute [rw] max_allocated_storage
4067
- # The upper limit to which Amazon RDS can automatically scale the
4068
- # storage of the DB instance.
4067
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
4068
+ # automatically scale the storage of the DB instance.
4069
4069
  #
4070
4070
  # For more information about this setting, including limitations that
4071
4071
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -5098,6 +5098,10 @@ module Aws::RDS
5098
5098
  # Specifies the current state of this DB cluster.
5099
5099
  # @return [String]
5100
5100
  #
5101
+ # @!attribute [rw] automatic_restart_time
5102
+ # The time when a stopped DB cluster is restarted automatically.
5103
+ # @return [Time]
5104
+ #
5101
5105
  # @!attribute [rw] percent_progress
5102
5106
  # Specifies the progress of the operation as a percentage.
5103
5107
  # @return [String]
@@ -5409,6 +5413,7 @@ module Aws::RDS
5409
5413
  :db_cluster_parameter_group,
5410
5414
  :db_subnet_group,
5411
5415
  :status,
5416
+ :automatic_restart_time,
5412
5417
  :percent_progress,
5413
5418
  :earliest_restorable_time,
5414
5419
  :endpoint,
@@ -6381,6 +6386,10 @@ module Aws::RDS
6381
6386
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status
6382
6387
  # @return [String]
6383
6388
  #
6389
+ # @!attribute [rw] automatic_restart_time
6390
+ # The time when a stopped DB instance is restarted automatically.
6391
+ # @return [Time]
6392
+ #
6384
6393
  # @!attribute [rw] master_username
6385
6394
  # Contains the master username for the DB instance.
6386
6395
  # @return [String]
@@ -6407,10 +6416,15 @@ module Aws::RDS
6407
6416
  #
6408
6417
  # @!attribute [rw] endpoint
6409
6418
  # Specifies the connection endpoint.
6419
+ #
6420
+ # <note markdown="1"> The endpoint might not be shown for instances whose status is
6421
+ # `creating`.
6422
+ #
6423
+ # </note>
6410
6424
  # @return [Types::Endpoint]
6411
6425
  #
6412
6426
  # @!attribute [rw] allocated_storage
6413
- # Specifies the allocated storage size specified in gibibytes.
6427
+ # Specifies the allocated storage size specified in gibibytes (GiB).
6414
6428
  # @return [Integer]
6415
6429
  #
6416
6430
  # @!attribute [rw] instance_create_time
@@ -6740,8 +6754,8 @@ module Aws::RDS
6740
6754
  # @return [Types::Endpoint]
6741
6755
  #
6742
6756
  # @!attribute [rw] max_allocated_storage
6743
- # The upper limit to which Amazon RDS can automatically scale the
6744
- # storage of the DB instance.
6757
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
6758
+ # automatically scale the storage of the DB instance.
6745
6759
  # @return [Integer]
6746
6760
  #
6747
6761
  # @!attribute [rw] tag_list
@@ -6820,6 +6834,7 @@ module Aws::RDS
6820
6834
  :db_instance_class,
6821
6835
  :engine,
6822
6836
  :db_instance_status,
6837
+ :automatic_restart_time,
6823
6838
  :master_username,
6824
6839
  :db_name,
6825
6840
  :endpoint,
@@ -7919,7 +7934,7 @@ module Aws::RDS
7919
7934
  #
7920
7935
  # @!attribute [rw] snapshot_create_time
7921
7936
  # Specifies when the snapshot was taken in Coordinated Universal Time
7922
- # (UTC).
7937
+ # (UTC). Changes for the copy when the snapshot is copied.
7923
7938
  # @return [Time]
7924
7939
  #
7925
7940
  # @!attribute [rw] engine
@@ -7989,8 +8004,8 @@ module Aws::RDS
7989
8004
  #
7990
8005
  # @!attribute [rw] source_db_snapshot_identifier
7991
8006
  # The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was
7992
- # copied from. It only has value in case of cross-customer or
7993
- # cross-region copy.
8007
+ # copied from. It only has a value in the case of a cross-account or
8008
+ # cross-Region copy.
7994
8009
  # @return [String]
7995
8010
  #
7996
8011
  # @!attribute [rw] storage_type
@@ -8052,6 +8067,11 @@ module Aws::RDS
8052
8067
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
8053
8068
  # @return [Array<Types::Tag>]
8054
8069
  #
8070
+ # @!attribute [rw] original_snapshot_create_time
8071
+ # Specifies the time of the CreateDBSnapshot operation in Coordinated
8072
+ # Universal Time (UTC). Doesn't change when the snapshot is copied.
8073
+ # @return [Time]
8074
+ #
8055
8075
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
8056
8076
  #
8057
8077
  class DBSnapshot < Struct.new(
@@ -8083,7 +8103,8 @@ module Aws::RDS
8083
8103
  :iam_database_authentication_enabled,
8084
8104
  :processor_features,
8085
8105
  :dbi_resource_id,
8086
- :tag_list)
8106
+ :tag_list,
8107
+ :original_snapshot_create_time)
8087
8108
  SENSITIVE = []
8088
8109
  include Aws::Structure
8089
8110
  end
@@ -9610,11 +9631,20 @@ module Aws::RDS
9610
9631
  #
9611
9632
  # Supported filters:
9612
9633
  #
9634
+ # * `clone-group-id` - Accepts clone group identifiers. The results
9635
+ # list will only include information about the DB clusters
9636
+ # associated with these clone groups.
9637
+ #
9613
9638
  # * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
9614
9639
  # Amazon Resource Names (ARNs). The results list will only include
9615
9640
  # information about the DB clusters identified by these ARNs.
9616
9641
  #
9617
- # ^
9642
+ # * `domain` - Accepts Active Directory directory IDs. The results
9643
+ # list will only include information about the DB clusters
9644
+ # associated with these domains.
9645
+ #
9646
+ # * `engine` - Accepts engine names. The results list will only
9647
+ # include information about the DB clusters for these engines.
9618
9648
  # @return [Array<Types::Filter>]
9619
9649
  #
9620
9650
  # @!attribute [rw] max_records
@@ -11269,15 +11299,7 @@ module Aws::RDS
11269
11299
  # @return [String]
11270
11300
  #
11271
11301
  # @!attribute [rw] filters
11272
- # A filter that specifies one or more global DB clusters to describe.
11273
- #
11274
- # Supported filters:
11275
- #
11276
- # * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
11277
- # Amazon Resource Names (ARNs). The results list will only include
11278
- # information about the DB clusters identified by these ARNs.
11279
- #
11280
- # ^
11302
+ # This parameter isn't currently supported.
11281
11303
  # @return [Array<Types::Filter>]
11282
11304
  #
11283
11305
  # @!attribute [rw] max_records
@@ -14199,7 +14221,7 @@ module Aws::RDS
14199
14221
  # @return [String]
14200
14222
  #
14201
14223
  # @!attribute [rw] allocated_storage
14202
- # The new amount of storage (in gibibytes) to allocate for the DB
14224
+ # The new amount of storage in gibibytes (GiB) to allocate for the DB
14203
14225
  # instance.
14204
14226
  #
14205
14227
  # For MariaDB, MySQL, Oracle, and PostgreSQL, the value supplied must
@@ -14843,8 +14865,8 @@ module Aws::RDS
14843
14865
  # @return [Boolean]
14844
14866
  #
14845
14867
  # @!attribute [rw] max_allocated_storage
14846
- # The upper limit to which Amazon RDS can automatically scale the
14847
- # storage of the DB instance.
14868
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
14869
+ # automatically scale the storage of the DB instance.
14848
14870
  #
14849
14871
  # For more information about this setting, including limitations that
14850
14872
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -16663,7 +16685,7 @@ module Aws::RDS
16663
16685
  #
16664
16686
  # @!attribute [rw] allocated_storage
16665
16687
  # The allocated storage size for the DB instance specified in
16666
- # gibibytes .
16688
+ # gibibytes (GiB).
16667
16689
  # @return [Integer]
16668
16690
  #
16669
16691
  # @!attribute [rw] master_user_password
@@ -19709,8 +19731,8 @@ module Aws::RDS
19709
19731
  # @return [Boolean]
19710
19732
  #
19711
19733
  # @!attribute [rw] max_allocated_storage
19712
- # The upper limit to which Amazon RDS can automatically scale the
19713
- # storage of the DB instance.
19734
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
19735
+ # automatically scale the storage of the DB instance.
19714
19736
  #
19715
19737
  # For more information about this setting, including limitations that
19716
19738
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -20159,8 +20181,8 @@ module Aws::RDS
20159
20181
  # @return [String]
20160
20182
  #
20161
20183
  # @!attribute [rw] max_allocated_storage
20162
- # The upper limit to which Amazon RDS can automatically scale the
20163
- # storage of the DB instance.
20184
+ # The upper limit in gibibytes (GiB) to which Amazon RDS can
20185
+ # automatically scale the storage of the DB instance.
20164
20186
  #
20165
20187
  # For more information about this setting, including limitations that
20166
20188
  # apply to it, see [ Managing capacity automatically with Amazon RDS
@@ -21447,7 +21469,8 @@ module Aws::RDS
21447
21469
  # @return [String]
21448
21470
  #
21449
21471
  # @!attribute [rw] storage_size
21450
- # The valid range of storage in gibibytes. For example, 100 to 16384.
21472
+ # The valid range of storage in gibibytes (GiB). For example, 100 to
21473
+ # 16384.
21451
21474
  # @return [Array<Types::Range>]
21452
21475
  #
21453
21476
  # @!attribute [rw] provisioned_iops
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.121.0
4
+ version: 1.125.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: 2021-06-17 00:00:00.000000000 Z
11
+ date: 2021-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '3'
34
34
  - - ">="
35
35
  - !ruby/object:Gem::Version
36
- version: 3.112.0
36
+ version: 3.119.0
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '3'
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 3.112.0
46
+ version: 3.119.0
47
47
  description: Official AWS Ruby gem for Amazon Relational Database Service (Amazon
48
48
  RDS). This gem is part of the AWS SDK for Ruby.
49
49
  email: