aws-sdk-rds 1.63.0 → 1.64.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: edbba1e0b8124d7b37f039eb8c0ac4dd43a38ac0
4
- data.tar.gz: a095435c84ddba96ad3394dad001d3ee51169371
3
+ metadata.gz: 78058d2649bfdca4d6104ba55a532d03c38d237b
4
+ data.tar.gz: 9abdd9d67a51d6f8533b63559b4c4a73ef18a0f8
5
5
  SHA512:
6
- metadata.gz: 1fa789f2257ed3e0f83e6cf13d6bda6d22cff49ae875c32483af5d2850fd0d59e156e7d735b164f3d49c6819f3218d1e3eecea205f6ffc9d578667614b39fa58
7
- data.tar.gz: e3df9d4413991387d3fd5ab522da57ac3f4fc8c9878b80d50582a77f5db65f0a26e5fbdc0b85193b12ca1ed0ca7b573861e5c2cedf5ab6e666031a17c3a43697
6
+ metadata.gz: 59982da1baf45f01ce908484e64a4a7031a6a3c36a7dd247cdde483f4f9e5dda6efeaeaeb832650d9deb9f2373cafb683261ab573b127cb5c3a39b0f4d01a648
7
+ data.tar.gz: 8758b5e5043d34e62e7906ab449bd0cac7bf3a7b57931a06cfd6a6a9d226cfcb7d05c0d77433a12d3fd425528f7db9f59d4c2f425068f7baa8e5351aa5d7f258
@@ -68,6 +68,6 @@ require_relative 'aws-sdk-rds/customizations'
68
68
  # @service
69
69
  module Aws::RDS
70
70
 
71
- GEM_VERSION = '1.63.0'
71
+ GEM_VERSION = '1.64.0'
72
72
 
73
73
  end
@@ -1691,13 +1691,32 @@ module Aws::RDS
1691
1691
  # @option params [String] :engine_version
1692
1692
  # The version number of the database engine to use.
1693
1693
  #
1694
+ # To list all of the available engine versions for `aurora` (for MySQL
1695
+ # 5.6-compatible Aurora), use the following command:
1696
+ #
1697
+ # `aws rds describe-db-engine-versions --engine aurora --query
1698
+ # "DBEngineVersions[].EngineVersion"`
1699
+ #
1700
+ # To list all of the available engine versions for `aurora-mysql` (for
1701
+ # MySQL 5.7-compatible Aurora), use the following command:
1702
+ #
1703
+ # `aws rds describe-db-engine-versions --engine aurora-mysql --query
1704
+ # "DBEngineVersions[].EngineVersion"`
1705
+ #
1706
+ # To list all of the available engine versions for `aurora-postgresql`,
1707
+ # use the following command:
1708
+ #
1709
+ # `aws rds describe-db-engine-versions --engine aurora-postgresql
1710
+ # --query "DBEngineVersions[].EngineVersion"`
1711
+ #
1694
1712
  # **Aurora MySQL**
1695
1713
  #
1696
- # Example: `5.6.10a`, `5.7.12`
1714
+ # Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`, `5.7.12`,
1715
+ # `5.7.mysql_aurora.2.04.5`
1697
1716
  #
1698
1717
  # **Aurora PostgreSQL**
1699
1718
  #
1700
- # Example: `9.6.3`
1719
+ # Example: `9.6.3`, `10.7`
1701
1720
  #
1702
1721
  # @option params [Integer] :port
1703
1722
  # The port number on which the instances in the DB cluster accept
@@ -1857,6 +1876,13 @@ module Aws::RDS
1857
1876
  # Access Management (IAM) accounts to database accounts. By default,
1858
1877
  # mapping is disabled.
1859
1878
  #
1879
+ # For more information, see [ IAM Database Authentication][1] in the
1880
+ # *Amazon Aurora User Guide.*
1881
+ #
1882
+ #
1883
+ #
1884
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
1885
+ #
1860
1886
  # @option params [Integer] :backtrack_window
1861
1887
  # The target backtrack window, in seconds. To disable backtracking, set
1862
1888
  # this value to 0.
@@ -1897,6 +1923,23 @@ module Aws::RDS
1897
1923
  # The global cluster ID of an Aurora cluster that becomes the primary
1898
1924
  # cluster in the new global database cluster.
1899
1925
  #
1926
+ # @option params [Boolean] :enable_http_endpoint
1927
+ # A value that indicates whether to enable the HTTP endpoint for an
1928
+ # Aurora Serverless DB cluster. By default, the HTTP endpoint is
1929
+ # disabled.
1930
+ #
1931
+ # When enabled, the HTTP endpoint provides a connectionless web service
1932
+ # API for running SQL queries on the Aurora Serverless DB cluster. You
1933
+ # can also query your database from inside the RDS console with the
1934
+ # query editor.
1935
+ #
1936
+ # For more information, see [Using the Data API for Aurora
1937
+ # Serverless][1] in the *Amazon Aurora User Guide*.
1938
+ #
1939
+ #
1940
+ #
1941
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
1942
+ #
1900
1943
  # @option params [Boolean] :copy_tags_to_snapshot
1901
1944
  # A value that indicates whether to copy all tags from the DB cluster to
1902
1945
  # snapshots of the DB cluster. The default is not to copy them.
@@ -1978,6 +2021,7 @@ module Aws::RDS
1978
2021
  # },
1979
2022
  # deletion_protection: false,
1980
2023
  # global_cluster_identifier: "String",
2024
+ # enable_http_endpoint: false,
1981
2025
  # copy_tags_to_snapshot: false,
1982
2026
  # source_region: "String",
1983
2027
  # })
@@ -2924,8 +2968,8 @@ module Aws::RDS
2924
2968
  # @option params [Integer] :iops
2925
2969
  # The amount of Provisioned IOPS (input/output operations per second) to
2926
2970
  # be initially allocated for the DB instance. For information about
2927
- # valid Iops values, see see [Amazon RDS Provisioned IOPS Storage to
2928
- # Improve Performance][1] in the *Amazon RDS User Guide*.
2971
+ # valid Iops values, see [Amazon RDS Provisioned IOPS Storage to Improve
2972
+ # Performance][1] in the *Amazon RDS User Guide*.
2929
2973
  #
2930
2974
  # Constraints: Must be a multiple between 1 and 50 of the storage amount
2931
2975
  # for the DB instance.
@@ -3126,6 +3170,23 @@ module Aws::RDS
3126
3170
  #
3127
3171
  # * For MySQL 5.7, minor version 5.7.16 or higher
3128
3172
  #
3173
+ # * For MySQL 8.0, minor version 8.0.16 or higher
3174
+ #
3175
+ # **PostgreSQL**
3176
+ #
3177
+ # * For PostgreSQL 9.5, minor version 9.5.15 or higher
3178
+ #
3179
+ # * For PostgreSQL 9.6, minor version 9.6.11 or higher
3180
+ #
3181
+ # * PostgreSQL 10.6, 10.7, and 10.9
3182
+ #
3183
+ # For more information, see [ IAM Database Authentication for MySQL and
3184
+ # PostgreSQL][1] in the *Amazon RDS User Guide.*
3185
+ #
3186
+ #
3187
+ #
3188
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
3189
+ #
3129
3190
  # @option params [Boolean] :enable_performance_insights
3130
3191
  # A value that indicates whether to enable Performance Insights for the
3131
3192
  # DB instance.
@@ -3663,16 +3724,16 @@ module Aws::RDS
3663
3724
  # @option params [Boolean] :enable_iam_database_authentication
3664
3725
  # A value that indicates whether to enable mapping of AWS Identity and
3665
3726
  # Access Management (IAM) accounts to database accounts. By default,
3666
- # mapping is disabled.
3727
+ # mapping is disabled. For information about the supported DB engines,
3728
+ # see CreateDBInstance.
3667
3729
  #
3668
- # You can enable IAM database authentication for the following database
3669
- # engines
3730
+ # For more information about IAM database authentication, see [ IAM
3731
+ # Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
3732
+ # RDS User Guide.*
3670
3733
  #
3671
- # * For MySQL 5.6, minor version 5.6.34 or higher
3672
3734
  #
3673
- # * For MySQL 5.7, minor version 5.7.16 or higher
3674
3735
  #
3675
- # * Aurora MySQL 5.6 or higher
3736
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
3676
3737
  #
3677
3738
  # @option params [Boolean] :enable_performance_insights
3678
3739
  # A value that indicates whether to enable Performance Insights for the
@@ -6347,7 +6408,18 @@ module Aws::RDS
6347
6408
  # `public`.
6348
6409
  #
6349
6410
  # @option params [Array<Types::Filter>] :filters
6350
- # This parameter is not currently supported.
6411
+ # A filter that specifies one or more DB cluster snapshots to describe.
6412
+ #
6413
+ # Supported filters:
6414
+ #
6415
+ # * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
6416
+ # Amazon Resource Names (ARNs).
6417
+ #
6418
+ # * `db-cluster-snapshot-id` - Accepts DB cluster snapshot identifiers.
6419
+ #
6420
+ # * `snapshot-type` - Accepts types of DB cluster snapshots.
6421
+ #
6422
+ # * `engine` - Accepts names of database engines.
6351
6423
  #
6352
6424
  # @option params [Integer] :max_records
6353
6425
  # The maximum number of records to include in the response. If more
@@ -6917,6 +6989,10 @@ module Aws::RDS
6917
6989
  # Amazon Resource Names (ARNs). The results list will only include
6918
6990
  # information about the DB instances identified by these ARNs.
6919
6991
  #
6992
+ # * `dbi-resource-id` - Accepts DB instance resource identifiers. The
6993
+ # results list will only include information about the DB instances
6994
+ # identified by these resource identifiers.
6995
+ #
6920
6996
  # @option params [Integer] :max_records
6921
6997
  # The maximum number of records to include in the response. If more
6922
6998
  # records exist than the specified `MaxRecords` value, a pagination
@@ -7579,7 +7655,20 @@ module Aws::RDS
7579
7655
  # [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/whatisbackup.html
7580
7656
  #
7581
7657
  # @option params [Array<Types::Filter>] :filters
7582
- # This parameter is not currently supported.
7658
+ # A filter that specifies one or more DB snapshots to describe.
7659
+ #
7660
+ # Supported filters:
7661
+ #
7662
+ # * `db-instance-id` - Accepts DB instance identifiers and DB instance
7663
+ # Amazon Resource Names (ARNs).
7664
+ #
7665
+ # * `db-snapshot-id` - Accepts DB snapshot identifiers.
7666
+ #
7667
+ # * `dbi-resource-id` - Accepts identifiers of source DB instances.
7668
+ #
7669
+ # * `snapshot-type` - Accepts types of DB snapshots.
7670
+ #
7671
+ # * `engine` - Accepts names of database engines.
7583
7672
  #
7584
7673
  # @option params [Integer] :max_records
7585
7674
  # The maximum number of records to include in the response. If more
@@ -9785,6 +9874,13 @@ module Aws::RDS
9785
9874
  # Access Management (IAM) accounts to database accounts. By default,
9786
9875
  # mapping is disabled.
9787
9876
  #
9877
+ # For more information, see [ IAM Database Authentication][1] in the
9878
+ # *Amazon Aurora User Guide.*
9879
+ #
9880
+ #
9881
+ #
9882
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
9883
+ #
9788
9884
  # @option params [Integer] :backtrack_window
9789
9885
  # The target backtrack window, in seconds. To disable backtracking, set
9790
9886
  # this value to 0.
@@ -9808,7 +9904,23 @@ module Aws::RDS
9808
9904
  # applied during the next maintenance window unless `ApplyImmediately`
9809
9905
  # is enabled.
9810
9906
  #
9811
- # For a list of valid engine versions, use DescribeDBEngineVersions.
9907
+ # To list all of the available engine versions for `aurora` (for MySQL
9908
+ # 5.6-compatible Aurora), use the following command:
9909
+ #
9910
+ # `aws rds describe-db-engine-versions --engine aurora --query
9911
+ # "DBEngineVersions[].EngineVersion"`
9912
+ #
9913
+ # To list all of the available engine versions for `aurora-mysql` (for
9914
+ # MySQL 5.7-compatible Aurora), use the following command:
9915
+ #
9916
+ # `aws rds describe-db-engine-versions --engine aurora-mysql --query
9917
+ # "DBEngineVersions[].EngineVersion"`
9918
+ #
9919
+ # To list all of the available engine versions for `aurora-postgresql`,
9920
+ # use the following command:
9921
+ #
9922
+ # `aws rds describe-db-engine-versions --engine aurora-postgresql
9923
+ # --query "DBEngineVersions[].EngineVersion"`
9812
9924
  #
9813
9925
  # @option params [Boolean] :allow_major_version_upgrade
9814
9926
  # A value that indicates whether major version upgrades are allowed.
@@ -10798,22 +10910,16 @@ module Aws::RDS
10798
10910
  # @option params [Boolean] :enable_iam_database_authentication
10799
10911
  # A value that indicates whether to enable mapping of AWS Identity and
10800
10912
  # Access Management (IAM) accounts to database accounts. By default,
10801
- # mapping is disabled.
10802
- #
10803
- # You can enable IAM database authentication for the following database
10804
- # engines
10805
- #
10806
- # **Amazon Aurora**
10913
+ # mapping is disabled. For information about the supported DB engines,
10914
+ # see CreateDBInstance.
10807
10915
  #
10808
- # Not applicable. Mapping AWS IAM accounts to database accounts is
10809
- # managed by the DB cluster. For more information, see
10810
- # `ModifyDBCluster`.
10916
+ # For more information about IAM database authentication, see [ IAM
10917
+ # Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
10918
+ # RDS User Guide.*
10811
10919
  #
10812
- # **MySQL**
10813
10920
  #
10814
- # * For MySQL 5.6, minor version 5.6.34 or higher
10815
10921
  #
10816
- # * For MySQL 5.7, minor version 5.7.16 or higher
10922
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
10817
10923
  #
10818
10924
  # @option params [Boolean] :enable_performance_insights
10819
10925
  # A value that indicates whether to enable Performance Insights for the
@@ -12882,13 +12988,32 @@ module Aws::RDS
12882
12988
  # @option params [String] :engine_version
12883
12989
  # The version number of the database engine to use.
12884
12990
  #
12991
+ # To list all of the available engine versions for `aurora` (for MySQL
12992
+ # 5.6-compatible Aurora), use the following command:
12993
+ #
12994
+ # `aws rds describe-db-engine-versions --engine aurora --query
12995
+ # "DBEngineVersions[].EngineVersion"`
12996
+ #
12997
+ # To list all of the available engine versions for `aurora-mysql` (for
12998
+ # MySQL 5.7-compatible Aurora), use the following command:
12999
+ #
13000
+ # `aws rds describe-db-engine-versions --engine aurora-mysql --query
13001
+ # "DBEngineVersions[].EngineVersion"`
13002
+ #
13003
+ # To list all of the available engine versions for `aurora-postgresql`,
13004
+ # use the following command:
13005
+ #
13006
+ # `aws rds describe-db-engine-versions --engine aurora-postgresql
13007
+ # --query "DBEngineVersions[].EngineVersion"`
13008
+ #
12885
13009
  # **Aurora MySQL**
12886
13010
  #
12887
- # Example: `5.6.10a`
13011
+ # Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`, `5.7.12`,
13012
+ # `5.7.mysql_aurora.2.04.5`
12888
13013
  #
12889
13014
  # **Aurora PostgreSQL**
12890
13015
  #
12891
- # Example: `9.6.3`
13016
+ # Example: `9.6.3`, `10.7`
12892
13017
  #
12893
13018
  # @option params [Integer] :port
12894
13019
  # The port number on which the instances in the restored DB cluster
@@ -12995,6 +13120,13 @@ module Aws::RDS
12995
13120
  # Access Management (IAM) accounts to database accounts. By default,
12996
13121
  # mapping is disabled.
12997
13122
  #
13123
+ # For more information, see [ IAM Database Authentication][1] in the
13124
+ # *Amazon Aurora User Guide.*
13125
+ #
13126
+ #
13127
+ #
13128
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
13129
+ #
12998
13130
  # @option params [required, String] :source_engine
12999
13131
  # The identifier for the database engine that was backed up to create
13000
13132
  # the files stored in the Amazon S3 bucket.
@@ -13245,6 +13377,33 @@ module Aws::RDS
13245
13377
  # @option params [String] :engine_version
13246
13378
  # The version of the database engine to use for the new DB cluster.
13247
13379
  #
13380
+ # To list all of the available engine versions for `aurora` (for MySQL
13381
+ # 5.6-compatible Aurora), use the following command:
13382
+ #
13383
+ # `aws rds describe-db-engine-versions --engine aurora --query
13384
+ # "DBEngineVersions[].EngineVersion"`
13385
+ #
13386
+ # To list all of the available engine versions for `aurora-mysql` (for
13387
+ # MySQL 5.7-compatible Aurora), use the following command:
13388
+ #
13389
+ # `aws rds describe-db-engine-versions --engine aurora-mysql --query
13390
+ # "DBEngineVersions[].EngineVersion"`
13391
+ #
13392
+ # To list all of the available engine versions for `aurora-postgresql`,
13393
+ # use the following command:
13394
+ #
13395
+ # `aws rds describe-db-engine-versions --engine aurora-postgresql
13396
+ # --query "DBEngineVersions[].EngineVersion"`
13397
+ #
13398
+ # **Aurora MySQL**
13399
+ #
13400
+ # Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`, `5.7.12`,
13401
+ # `5.7.mysql_aurora.2.04.5`
13402
+ #
13403
+ # **Aurora PostgreSQL**
13404
+ #
13405
+ # Example: `9.6.3`, `10.7`
13406
+ #
13248
13407
  # @option params [Integer] :port
13249
13408
  # The port number on which the new DB cluster accepts connections.
13250
13409
  #
@@ -13297,6 +13456,13 @@ module Aws::RDS
13297
13456
  # Access Management (IAM) accounts to database accounts. By default,
13298
13457
  # mapping is disabled.
13299
13458
  #
13459
+ # For more information, see [ IAM Database Authentication][1] in the
13460
+ # *Amazon Aurora User Guide.*
13461
+ #
13462
+ #
13463
+ #
13464
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
13465
+ #
13300
13466
  # @option params [Integer] :backtrack_window
13301
13467
  # The target backtrack window, in seconds. To disable backtracking, set
13302
13468
  # this value to 0.
@@ -13647,6 +13813,13 @@ module Aws::RDS
13647
13813
  # Access Management (IAM) accounts to database accounts. By default,
13648
13814
  # mapping is disabled.
13649
13815
  #
13816
+ # For more information, see [ IAM Database Authentication][1] in the
13817
+ # *Amazon Aurora User Guide.*
13818
+ #
13819
+ #
13820
+ #
13821
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
13822
+ #
13650
13823
  # @option params [Integer] :backtrack_window
13651
13824
  # The target backtrack window, in seconds. To disable backtracking, set
13652
13825
  # this value to 0.
@@ -14057,14 +14230,16 @@ module Aws::RDS
14057
14230
  # @option params [Boolean] :enable_iam_database_authentication
14058
14231
  # A value that indicates whether to enable mapping of AWS Identity and
14059
14232
  # Access Management (IAM) accounts to database accounts. By default,
14060
- # mapping is disabled.
14233
+ # mapping is disabled. For information about the supported DB engines,
14234
+ # see CreateDBInstance.
14061
14235
  #
14062
- # You can enable IAM database authentication for the following database
14063
- # engines
14236
+ # For more information about IAM database authentication, see [ IAM
14237
+ # Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
14238
+ # RDS User Guide.*
14064
14239
  #
14065
- # * For MySQL 5.6, minor version 5.6.34 or higher
14066
14240
  #
14067
- # * For MySQL 5.7, minor version 5.7.16 or higher
14241
+ #
14242
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
14068
14243
  #
14069
14244
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
14070
14245
  # The list of logs that the restored DB instance is to export to
@@ -14560,7 +14735,7 @@ module Aws::RDS
14560
14735
  # @option params [Integer] :iops
14561
14736
  # The amount of Provisioned IOPS (input/output operations per second) to
14562
14737
  # allocate initially for the DB instance. For information about valid
14563
- # Iops values, see see [Amazon RDS Provisioned IOPS Storage to Improve
14738
+ # Iops values, see [Amazon RDS Provisioned IOPS Storage to Improve
14564
14739
  # Performance][1] in the *Amazon RDS User Guide.*
14565
14740
  #
14566
14741
  #
@@ -14651,7 +14826,16 @@ module Aws::RDS
14651
14826
  # @option params [Boolean] :enable_iam_database_authentication
14652
14827
  # A value that indicates whether to enable mapping of AWS Identity and
14653
14828
  # Access Management (IAM) accounts to database accounts. By default,
14654
- # mapping is disabled.
14829
+ # mapping is disabled. For information about the supported DB engines,
14830
+ # see CreateDBInstance.
14831
+ #
14832
+ # For more information about IAM database authentication, see [ IAM
14833
+ # Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
14834
+ # RDS User Guide.*
14835
+ #
14836
+ #
14837
+ #
14838
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
14655
14839
  #
14656
14840
  # @option params [required, String] :source_engine
14657
14841
  # The name of the engine of your source database.
@@ -15145,14 +15329,16 @@ module Aws::RDS
15145
15329
  # @option params [Boolean] :enable_iam_database_authentication
15146
15330
  # A value that indicates whether to enable mapping of AWS Identity and
15147
15331
  # Access Management (IAM) accounts to database accounts. By default,
15148
- # mapping is disabled.
15332
+ # mapping is disabled. For information about the supported DB engines,
15333
+ # see CreateDBInstance.
15149
15334
  #
15150
- # You can enable IAM database authentication for the following database
15151
- # engines
15335
+ # For more information about IAM database authentication, see [ IAM
15336
+ # Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
15337
+ # RDS User Guide.*
15152
15338
  #
15153
- # * For MySQL 5.6, minor version 5.6.34 or higher
15154
15339
  #
15155
- # * For MySQL 5.7, minor version 5.7.16 or higher
15340
+ #
15341
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
15156
15342
  #
15157
15343
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
15158
15344
  # The list of logs that the restored DB instance is to export to
@@ -16222,7 +16408,7 @@ module Aws::RDS
16222
16408
  params: params,
16223
16409
  config: config)
16224
16410
  context[:gem_name] = 'aws-sdk-rds'
16225
- context[:gem_version] = '1.63.0'
16411
+ context[:gem_version] = '1.64.0'
16226
16412
  Seahorse::Client::Request.new(handlers, context)
16227
16413
  end
16228
16414