aws-sdk-rds 1.175.0 → 1.177.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: da1f706193e5e4358b9ff9243909174b8f235ffc9f14e58dee306564ef6cc610
4
- data.tar.gz: 014d6045c12f3dbb39234c937ded9b138fd735e9d80692b14126fcc4026d7cd1
3
+ metadata.gz: c94e592b1fe5e6f71586ea456b0251b5a8db991ef01b80f562b40c451283515b
4
+ data.tar.gz: 1f8e980a3ad3d7966b6f34b51fb35e617c9cb4b1d50904c3f81a8d372c881831
5
5
  SHA512:
6
- metadata.gz: ce861126e4114a6018a347e8fca399a249617116d95932da8b5e246a12353847e797914245713a3af30dcc97cd145bae8298303ae7a558f591d593d950bfccfb
7
- data.tar.gz: 727f31d2a5b8f70818073a1d1df0ebee2225475a3a939c1bc1c1a9587ca4910510fb4d089f6e7b0e35725ecb38407eabe61c51868118d2232d9b8752aabeaea7
6
+ metadata.gz: 98a89392bef7c1dc3e705e7d8530765ab125267d5282944172fd8758994ef230b768ade5ea7e7f1fae8c9ffd73e436accc23040cc6b5ec59aa4531b2a77e4aec
7
+ data.tar.gz: 12b8918d330cff8b77bf3256200a4f766e2a2a1b967df328bc60f000e1be95ddc0bc95f45bf2d373a623e022c24f5e81e0090889f0301e64b166abca8a8b95e5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.177.0 (2023-04-19)
5
+ ------------------
6
+
7
+ * Feature - Adds support for the ImageId parameter of CreateCustomDBEngineVersion to RDS Custom for Oracle
8
+
9
+ 1.176.0 (2023-04-14)
10
+ ------------------
11
+
12
+ * Feature - This release adds support of modifying the engine mode of database clusters.
13
+
4
14
  1.175.0 (2023-04-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.175.0
1
+ 1.177.0
@@ -2198,8 +2198,16 @@ module Aws::RDS
2198
2198
  # If this setting isn't specified, no prefix is assumed.
2199
2199
  #
2200
2200
  # @option params [String] :image_id
2201
- # The ID of the AMI. An AMI ID is required to create a CEV for RDS
2202
- # Custom for SQL Server.
2201
+ # The ID of the Amazon Machine Image (AMI). For RDS Custom for SQL
2202
+ # Server, an AMI ID is required to create a CEV. For RDS Custom for
2203
+ # Oracle, the default is the most recent AMI available, but you can
2204
+ # specify an AMI ID that was used in a different Oracle CEV. Find the
2205
+ # AMIs used by your CEVs by calling the [DescribeDBEngineVersions][1]
2206
+ # operation.
2207
+ #
2208
+ #
2209
+ #
2210
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBEngineVersions.html
2203
2211
  #
2204
2212
  # @option params [String] :kms_key_id
2205
2213
  # The Amazon Web Services KMS key identifier for an encrypted CEV. A
@@ -3220,9 +3228,9 @@ module Aws::RDS
3220
3228
  # * {Types::CreateDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
3221
3229
  #
3222
3230
  #
3223
- # @example Example: To create a MySQL 5.7--compatible DB cluster
3231
+ # @example Example: To create a MySQL 5.7-compatible DB cluster
3224
3232
  #
3225
- # # The following example create a MySQL 5.7-compatible DB cluster.
3233
+ # # The following example creates a MySQL 5.7-compatible Aurora DB cluster.
3226
3234
  #
3227
3235
  # resp = client.create_db_cluster({
3228
3236
  # db_cluster_identifier: "sample-cluster",
@@ -3284,9 +3292,9 @@ module Aws::RDS
3284
3292
  # },
3285
3293
  # }
3286
3294
  #
3287
- # @example Example: To create a PostgreSQL--compatible DB cluster
3295
+ # @example Example: To create a PostgreSQL-compatible DB cluster
3288
3296
  #
3289
- # # The following creates a PostgreSQL-compatible DB cluster.
3297
+ # # The following example creates a PostgreSQL-compatible Aurora DB cluster.
3290
3298
  #
3291
3299
  # resp = client.create_db_cluster({
3292
3300
  # db_cluster_identifier: "sample-pg-cluster",
@@ -3725,11 +3733,11 @@ module Aws::RDS
3725
3733
  #
3726
3734
  # **Aurora MySQL**
3727
3735
  #
3728
- # Example: `aurora5.6`, `aurora-mysql5.7`, `aurora-mysql8.0`
3736
+ # Example: `aurora-mysql5.7`, `aurora-mysql8.0`
3729
3737
  #
3730
3738
  # **Aurora PostgreSQL**
3731
3739
  #
3732
- # Example: `aurora-postgresql9.6`
3740
+ # Example: `aurora-postgresql14`
3733
3741
  #
3734
3742
  # **RDS for MySQL**
3735
3743
  #
@@ -3758,10 +3766,7 @@ module Aws::RDS
3758
3766
  #
3759
3767
  # The following are the valid DB engine values:
3760
3768
  #
3761
- # * `aurora` (for MySQL 5.6-compatible Aurora)
3762
- #
3763
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
3764
- # Aurora)
3769
+ # * `aurora-mysql`
3765
3770
  #
3766
3771
  # * `aurora-postgresql`
3767
3772
  #
@@ -4237,12 +4242,9 @@ module Aws::RDS
4237
4242
  #
4238
4243
  # Valid Values:
4239
4244
  #
4240
- # * `aurora` (for MySQL 5.6-compatible Aurora)
4241
- #
4242
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
4243
- # Aurora)
4245
+ # * `aurora-mysql` (for Aurora MySQL DB instances)
4244
4246
  #
4245
- # * `aurora-postgresql`
4247
+ # * `aurora-postgresql` (for Aurora PostgreSQL DB instances)
4246
4248
  #
4247
4249
  # * `custom-oracle-ee (for RDS Custom for Oracle DB instances)`
4248
4250
  #
@@ -6420,10 +6422,7 @@ module Aws::RDS
6420
6422
  #
6421
6423
  # The following are the valid DB engine values:
6422
6424
  #
6423
- # * `aurora` (for MySQL 5.6-compatible Aurora)
6424
- #
6425
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
6426
- # Aurora)
6425
+ # * `aurora-mysql`
6427
6426
  #
6428
6427
  # * `aurora-postgresql`
6429
6428
  #
@@ -11110,11 +11109,12 @@ module Aws::RDS
11110
11109
  #
11111
11110
  # Valid Values:
11112
11111
  #
11113
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
11114
- # Aurora)
11112
+ # * `aurora-mysql`
11115
11113
  #
11116
11114
  # * `aurora-postgresql`
11117
11115
  #
11116
+ # * `custom-oracle-ee`
11117
+ #
11118
11118
  # * `mariadb`
11119
11119
  #
11120
11120
  # * `mysql`
@@ -13148,8 +13148,6 @@ module Aws::RDS
13148
13148
  #
13149
13149
  # Valid Values:
13150
13150
  #
13151
- # * `aurora5.6`
13152
- #
13153
13151
  # * `aurora-mysql5.7`
13154
13152
  #
13155
13153
  # * `aurora-mysql8.0`
@@ -14364,11 +14362,12 @@ module Aws::RDS
14364
14362
  #
14365
14363
  # Valid Values:
14366
14364
  #
14367
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
14368
- # Aurora)
14365
+ # * `aurora-mysql`
14369
14366
  #
14370
14367
  # * `aurora-postgresql`
14371
14368
  #
14369
+ # * `custom-oracle-ee`
14370
+ #
14372
14371
  # * `mariadb`
14373
14372
  #
14374
14373
  # * `mysql`
@@ -16426,19 +16425,12 @@ module Aws::RDS
16426
16425
  # all replicas must be running an engine version that's the same or
16427
16426
  # later than the version you specify.
16428
16427
  #
16429
- # To list all of the available engine versions for Aurora MySQL version
16430
- # 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use the
16428
+ # To list all of the available engine versions for Aurora MySQL, use the
16431
16429
  # following command:
16432
16430
  #
16433
16431
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
16434
16432
  # "DBEngineVersions[].EngineVersion"`
16435
16433
  #
16436
- # To list all of the available engine versions for MySQL 5.6-compatible
16437
- # Aurora, use the following command:
16438
- #
16439
- # `aws rds describe-db-engine-versions --engine aurora --query
16440
- # "DBEngineVersions[].EngineVersion"`
16441
- #
16442
16434
  # To list all of the available engine versions for Aurora PostgreSQL,
16443
16435
  # use the following command:
16444
16436
  #
@@ -16586,8 +16578,6 @@ module Aws::RDS
16586
16578
  # The amount of storage in gibibytes (GiB) to allocate to each DB
16587
16579
  # instance in the Multi-AZ DB cluster.
16588
16580
  #
16589
- # Type: Integer
16590
- #
16591
16581
  # Valid for: Multi-AZ DB clusters only
16592
16582
  #
16593
16583
  # @option params [String] :storage_type
@@ -16828,6 +16818,33 @@ module Aws::RDS
16828
16818
  #
16829
16819
  # Valid for: Aurora DB clusters and Multi-AZ DB clusters
16830
16820
  #
16821
+ # @option params [String] :engine_mode
16822
+ # The DB engine mode of the DB cluster, either `provisioned` or
16823
+ # `serverless`.
16824
+ #
16825
+ # <note markdown="1"> The DB engine mode can be modified only from `serverless` to
16826
+ # `provisioned`.
16827
+ #
16828
+ # </note>
16829
+ #
16830
+ # For more information, see [ CreateDBCluster][1].
16831
+ #
16832
+ # Valid for: Aurora DB clusters only
16833
+ #
16834
+ #
16835
+ #
16836
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
16837
+ #
16838
+ # @option params [Boolean] :allow_engine_mode_change
16839
+ # A value that indicates whether engine mode changes from `serverless`
16840
+ # to `provisioned` are allowed.
16841
+ #
16842
+ # Constraints: You must allow engine mode changes when specifying a
16843
+ # different value for the `EngineMode` parameter from the DB cluster's
16844
+ # current engine mode.
16845
+ #
16846
+ # Valid for: Aurora Serverless v1 DB clusters only
16847
+ #
16831
16848
  # @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
16832
16849
  #
16833
16850
  # * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
@@ -16962,6 +16979,8 @@ module Aws::RDS
16962
16979
  # manage_master_user_password: false,
16963
16980
  # rotate_master_user_password: false,
16964
16981
  # master_user_secret_kms_key_id: "String",
16982
+ # engine_mode: "String",
16983
+ # allow_engine_mode_change: false,
16965
16984
  # })
16966
16985
  #
16967
16986
  # @example Response structure
@@ -18377,7 +18396,7 @@ module Aws::RDS
18377
18396
  # * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
18378
18397
  #
18379
18398
  #
18380
- # @example Example: To modify parameters in a DB cluster parameter group
18399
+ # @example Example: To modify a DB instance
18381
18400
  #
18382
18401
  # # The following example associates an option group and a parameter group with a compatible Microsoft SQL Server DB
18383
18402
  # # instance. The ApplyImmediately parameter causes the option and parameter groups to be associated immediately, instead of
@@ -18424,7 +18443,7 @@ module Aws::RDS
18424
18443
  # ],
18425
18444
  # secondary_availability_zone: "us-west-2c",
18426
18445
  # storage_type: "gp2",
18427
- # },
18446
+ # }, # Some output ommitted.
18428
18447
  # }
18429
18448
  #
18430
18449
  # @example Request syntax with placeholder values
@@ -19574,21 +19593,15 @@ module Aws::RDS
19574
19593
  # applied during the next maintenance window unless `ApplyImmediately`
19575
19594
  # is enabled.
19576
19595
  #
19577
- # To list all of the available engine versions for `aurora` (for MySQL
19578
- # 5.6-compatible Aurora), use the following command:
19579
- #
19580
- # `` aws rds describe-db-engine-versions --engine aurora --query
19581
- # '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
19582
- #
19583
19596
  # To list all of the available engine versions for `aurora-mysql` (for
19584
- # MySQL 5.7-compatible and MySQL 8.0-compatible Aurora), use the
19585
- # following command:
19597
+ # MySQL-based Aurora global databases), use the following command:
19586
19598
  #
19587
19599
  # `` aws rds describe-db-engine-versions --engine aurora-mysql --query
19588
19600
  # '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
19589
19601
  #
19590
- # To list all of the available engine versions for `aurora-postgresql`,
19591
- # use the following command:
19602
+ # To list all of the available engine versions for `aurora-postgresql`
19603
+ # (for PostgreSQL-based Aurora global databases), use the following
19604
+ # command:
19592
19605
  #
19593
19606
  # `` aws rds describe-db-engine-versions --engine aurora-postgresql
19594
19607
  # --query '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
@@ -21344,8 +21357,8 @@ module Aws::RDS
21344
21357
  #
21345
21358
  # @option params [String] :db_cluster_parameter_group_name
21346
21359
  # The name of the DB cluster parameter group to associate with the
21347
- # restored DB cluster. If this argument is omitted, `default.aurora5.6`
21348
- # is used.
21360
+ # restored DB cluster. If this argument is omitted, the default
21361
+ # parameter group for the engine version is used.
21349
21362
  #
21350
21363
  # Constraints:
21351
21364
  #
@@ -21369,15 +21382,13 @@ module Aws::RDS
21369
21382
  # @option params [required, String] :engine
21370
21383
  # The name of the database engine to be used for this DB cluster.
21371
21384
  #
21372
- # Valid Values: `aurora-mysql` (for MySQL 5.7-compatible and MySQL
21373
- # 8.0-compatible Aurora)
21385
+ # Valid Values: `aurora-mysql` (for Aurora MySQL)
21374
21386
  #
21375
21387
  # @option params [String] :engine_version
21376
21388
  # The version number of the database engine to use.
21377
21389
  #
21378
- # To list all of the available engine versions for `aurora-mysql` (MySQL
21379
- # 5.7-compatible and MySQL 8.0-compatible Aurora), use the following
21380
- # command:
21390
+ # To list all of the available engine versions for `aurora-mysql`
21391
+ # (Aurora MySQL), use the following command:
21381
21392
  #
21382
21393
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
21383
21394
  # "DBEngineVersions[].EngineVersion"`
@@ -21988,8 +21999,8 @@ module Aws::RDS
21988
21999
  # you don't specify an engine version, the default version for the
21989
22000
  # database engine in the Amazon Web Services Region is used.
21990
22001
  #
21991
- # To list all of the available engine versions for MySQL 5.7-compatible
21992
- # and MySQL 8.0-compatible Aurora, use the following command:
22002
+ # To list all of the available engine versions for Aurora MySQL, use the
22003
+ # following command:
21993
22004
  #
21994
22005
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
21995
22006
  # "DBEngineVersions[].EngineVersion"`
@@ -22171,8 +22182,8 @@ module Aws::RDS
22171
22182
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
22172
22183
  #
22173
22184
  # @option params [String] :engine_mode
22174
- # The DB engine mode of the DB cluster, either `provisioned`,
22175
- # `serverless`, `parallelquery`, `global`, or `multimaster`.
22185
+ # The DB engine mode of the DB cluster, either `provisioned` or
22186
+ # `serverless`.
22176
22187
  #
22177
22188
  # For more information, see [ CreateDBCluster][1].
22178
22189
  #
@@ -22646,9 +22657,6 @@ module Aws::RDS
22646
22657
  # * `copy-on-write` - The new DB cluster is restored as a clone of the
22647
22658
  # source DB cluster.
22648
22659
  #
22649
- # Constraints: You can't specify `copy-on-write` if the engine version
22650
- # of the source DB cluster is earlier than 1.11.
22651
- #
22652
22660
  # If you don't specify a `RestoreType` value, then the new DB cluster
22653
22661
  # is restored as a full copy of the source DB cluster.
22654
22662
  #
@@ -27367,7 +27375,7 @@ module Aws::RDS
27367
27375
  params: params,
27368
27376
  config: config)
27369
27377
  context[:gem_name] = 'aws-sdk-rds'
27370
- context[:gem_version] = '1.175.0'
27378
+ context[:gem_version] = '1.177.0'
27371
27379
  Seahorse::Client::Request.new(handlers, context)
27372
27380
  end
27373
27381
 
@@ -2594,6 +2594,8 @@ module Aws::RDS
2594
2594
  ModifyDBClusterMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
2595
2595
  ModifyDBClusterMessage.add_member(:rotate_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "RotateMasterUserPassword"))
2596
2596
  ModifyDBClusterMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
2597
+ ModifyDBClusterMessage.add_member(:engine_mode, Shapes::ShapeRef.new(shape: String, location_name: "EngineMode"))
2598
+ ModifyDBClusterMessage.add_member(:allow_engine_mode_change, Shapes::ShapeRef.new(shape: Boolean, location_name: "AllowEngineModeChange"))
2597
2599
  ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
2598
2600
 
2599
2601
  ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
@@ -4940,6 +4942,7 @@ module Aws::RDS
4940
4942
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBSecurityGroupStateFault)
4941
4943
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
4942
4944
  o.errors << Shapes::ShapeRef.new(shape: DBClusterAlreadyExistsFault)
4945
+ o.errors << Shapes::ShapeRef.new(shape: DBInstanceAlreadyExistsFault)
4943
4946
  o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
4944
4947
  end)
4945
4948
 
@@ -1783,6 +1783,8 @@ module Aws::RDS
1783
1783
  # manage_master_user_password: false,
1784
1784
  # rotate_master_user_password: false,
1785
1785
  # master_user_secret_kms_key_id: "String",
1786
+ # engine_mode: "String",
1787
+ # allow_engine_mode_change: false,
1786
1788
  # })
1787
1789
  # @param [Hash] options ({})
1788
1790
  # @option options [String] :new_db_cluster_identifier
@@ -1979,19 +1981,12 @@ module Aws::RDS
1979
1981
  # all replicas must be running an engine version that's the same or
1980
1982
  # later than the version you specify.
1981
1983
  #
1982
- # To list all of the available engine versions for Aurora MySQL version
1983
- # 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use the
1984
+ # To list all of the available engine versions for Aurora MySQL, use the
1984
1985
  # following command:
1985
1986
  #
1986
1987
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
1987
1988
  # "DBEngineVersions[].EngineVersion"`
1988
1989
  #
1989
- # To list all of the available engine versions for MySQL 5.6-compatible
1990
- # Aurora, use the following command:
1991
- #
1992
- # `aws rds describe-db-engine-versions --engine aurora --query
1993
- # "DBEngineVersions[].EngineVersion"`
1994
- #
1995
1990
  # To list all of the available engine versions for Aurora PostgreSQL,
1996
1991
  # use the following command:
1997
1992
  #
@@ -2128,8 +2123,6 @@ module Aws::RDS
2128
2123
  # The amount of storage in gibibytes (GiB) to allocate to each DB
2129
2124
  # instance in the Multi-AZ DB cluster.
2130
2125
  #
2131
- # Type: Integer
2132
- #
2133
2126
  # Valid for: Multi-AZ DB clusters only
2134
2127
  # @option options [String] :storage_type
2135
2128
  # Specifies the storage type to be associated with the DB cluster.
@@ -2356,6 +2349,31 @@ module Aws::RDS
2356
2349
  # Amazon Web Services Region.
2357
2350
  #
2358
2351
  # Valid for: Aurora DB clusters and Multi-AZ DB clusters
2352
+ # @option options [String] :engine_mode
2353
+ # The DB engine mode of the DB cluster, either `provisioned` or
2354
+ # `serverless`.
2355
+ #
2356
+ # <note markdown="1"> The DB engine mode can be modified only from `serverless` to
2357
+ # `provisioned`.
2358
+ #
2359
+ # </note>
2360
+ #
2361
+ # For more information, see [ CreateDBCluster][1].
2362
+ #
2363
+ # Valid for: Aurora DB clusters only
2364
+ #
2365
+ #
2366
+ #
2367
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
2368
+ # @option options [Boolean] :allow_engine_mode_change
2369
+ # A value that indicates whether engine mode changes from `serverless`
2370
+ # to `provisioned` are allowed.
2371
+ #
2372
+ # Constraints: You must allow engine mode changes when specifying a
2373
+ # different value for the `EngineMode` parameter from the DB cluster's
2374
+ # current engine mode.
2375
+ #
2376
+ # Valid for: Aurora Serverless v1 DB clusters only
2359
2377
  # @return [DBCluster]
2360
2378
  def modify(options = {})
2361
2379
  options = options.merge(db_cluster_identifier: @id)
@@ -2435,9 +2453,6 @@ module Aws::RDS
2435
2453
  # * `copy-on-write` - The new DB cluster is restored as a clone of the
2436
2454
  # source DB cluster.
2437
2455
  #
2438
- # Constraints: You can't specify `copy-on-write` if the engine version
2439
- # of the source DB cluster is earlier than 1.11.
2440
- #
2441
2456
  # If you don't specify a `RestoreType` value, then the new DB cluster
2442
2457
  # is restored as a full copy of the source DB cluster.
2443
2458
  #
@@ -211,11 +211,11 @@ module Aws::RDS
211
211
  #
212
212
  # **Aurora MySQL**
213
213
  #
214
- # Example: `aurora5.6`, `aurora-mysql5.7`, `aurora-mysql8.0`
214
+ # Example: `aurora-mysql5.7`, `aurora-mysql8.0`
215
215
  #
216
216
  # **Aurora PostgreSQL**
217
217
  #
218
- # Example: `aurora-postgresql9.6`
218
+ # Example: `aurora-postgresql14`
219
219
  #
220
220
  # **RDS for MySQL**
221
221
  #
@@ -244,10 +244,7 @@ module Aws::RDS
244
244
  #
245
245
  # The following are the valid DB engine values:
246
246
  #
247
- # * `aurora` (for MySQL 5.6-compatible Aurora)
248
- #
249
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
250
- # Aurora)
247
+ # * `aurora-mysql`
251
248
  #
252
249
  # * `aurora-postgresql`
253
250
  #
@@ -590,8 +590,8 @@ module Aws::RDS
590
590
  # you don't specify an engine version, the default version for the
591
591
  # database engine in the Amazon Web Services Region is used.
592
592
  #
593
- # To list all of the available engine versions for MySQL 5.7-compatible
594
- # and MySQL 8.0-compatible Aurora, use the following command:
593
+ # To list all of the available engine versions for Aurora MySQL, use the
594
+ # following command:
595
595
  #
596
596
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
597
597
  # "DBEngineVersions[].EngineVersion"`
@@ -762,8 +762,8 @@ module Aws::RDS
762
762
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
763
763
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
764
764
  # @option options [String] :engine_mode
765
- # The DB engine mode of the DB cluster, either `provisioned`,
766
- # `serverless`, `parallelquery`, `global`, or `multimaster`.
765
+ # The DB engine mode of the DB cluster, either `provisioned` or
766
+ # `serverless`.
767
767
  #
768
768
  # For more information, see [ CreateDBCluster][1].
769
769
  #
@@ -463,14 +463,12 @@ module Aws::RDS
463
463
  # (IAM) accounts to database accounts is enabled, and otherwise false.
464
464
  #
465
465
  # IAM database authentication can be enabled for the following database
466
- # engines
466
+ # engines:
467
467
  #
468
- # * For MySQL 5.6, minor version 5.6.34 or higher
468
+ # * For MySQL 5.7, minor version 5.7.16 or higher.
469
469
  #
470
- # * For MySQL 5.7, minor version 5.7.16 or higher
471
- #
472
- # * Aurora 5.6 or higher. To enable IAM database authentication for
473
- # Aurora, see DBCluster Type.
470
+ # * For Amazon Aurora, all versions of Aurora MySQL and Aurora
471
+ # PostgreSQL.
474
472
  # @return [Boolean]
475
473
  def iam_database_authentication_enabled
476
474
  data[:iam_database_authentication_enabled]
@@ -1216,12 +1214,9 @@ module Aws::RDS
1216
1214
  #
1217
1215
  # Valid Values:
1218
1216
  #
1219
- # * `aurora` (for MySQL 5.6-compatible Aurora)
1220
- #
1221
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
1222
- # Aurora)
1217
+ # * `aurora-mysql` (for Aurora MySQL DB instances)
1223
1218
  #
1224
- # * `aurora-postgresql`
1219
+ # * `aurora-postgresql` (for Aurora PostgreSQL DB instances)
1225
1220
  #
1226
1221
  # * `custom-oracle-ee (for RDS Custom for Oracle DB instances)`
1227
1222
  #
@@ -226,10 +226,7 @@ module Aws::RDS
226
226
  #
227
227
  # The following are the valid DB engine values:
228
228
  #
229
- # * `aurora` (for MySQL 5.6-compatible Aurora)
230
- #
231
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
232
- # Aurora)
229
+ # * `aurora-mysql`
233
230
  #
234
231
  # * `aurora-postgresql`
235
232
  #
@@ -903,11 +903,11 @@ module Aws::RDS
903
903
  #
904
904
  # **Aurora MySQL**
905
905
  #
906
- # Example: `aurora5.6`, `aurora-mysql5.7`, `aurora-mysql8.0`
906
+ # Example: `aurora-mysql5.7`, `aurora-mysql8.0`
907
907
  #
908
908
  # **Aurora PostgreSQL**
909
909
  #
910
- # Example: `aurora-postgresql9.6`
910
+ # Example: `aurora-postgresql14`
911
911
  #
912
912
  # **RDS for MySQL**
913
913
  #
@@ -936,10 +936,7 @@ module Aws::RDS
936
936
  #
937
937
  # The following are the valid DB engine values:
938
938
  #
939
- # * `aurora` (for MySQL 5.6-compatible Aurora)
940
- #
941
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
942
- # Aurora)
939
+ # * `aurora-mysql`
943
940
  #
944
941
  # * `aurora-postgresql`
945
942
  #
@@ -1278,12 +1275,9 @@ module Aws::RDS
1278
1275
  #
1279
1276
  # Valid Values:
1280
1277
  #
1281
- # * `aurora` (for MySQL 5.6-compatible Aurora)
1278
+ # * `aurora-mysql` (for Aurora MySQL DB instances)
1282
1279
  #
1283
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
1284
- # Aurora)
1285
- #
1286
- # * `aurora-postgresql`
1280
+ # * `aurora-postgresql` (for Aurora PostgreSQL DB instances)
1287
1281
  #
1288
1282
  # * `custom-oracle-ee (for RDS Custom for Oracle DB instances)`
1289
1283
  #
@@ -2204,10 +2198,7 @@ module Aws::RDS
2204
2198
  #
2205
2199
  # The following are the valid DB engine values:
2206
2200
  #
2207
- # * `aurora` (for MySQL 5.6-compatible Aurora)
2208
- #
2209
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
2210
- # Aurora)
2201
+ # * `aurora-mysql`
2211
2202
  #
2212
2203
  # * `aurora-postgresql`
2213
2204
  #
@@ -2750,11 +2741,12 @@ module Aws::RDS
2750
2741
  #
2751
2742
  # Valid Values:
2752
2743
  #
2753
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
2754
- # Aurora)
2744
+ # * `aurora-mysql`
2755
2745
  #
2756
2746
  # * `aurora-postgresql`
2757
2747
  #
2748
+ # * `custom-oracle-ee`
2749
+ #
2758
2750
  # * `mariadb`
2759
2751
  #
2760
2752
  # * `mysql`
@@ -1800,8 +1800,16 @@ module Aws::RDS
1800
1800
  # @return [String]
1801
1801
  #
1802
1802
  # @!attribute [rw] image_id
1803
- # The ID of the AMI. An AMI ID is required to create a CEV for RDS
1804
- # Custom for SQL Server.
1803
+ # The ID of the Amazon Machine Image (AMI). For RDS Custom for SQL
1804
+ # Server, an AMI ID is required to create a CEV. For RDS Custom for
1805
+ # Oracle, the default is the most recent AMI available, but you can
1806
+ # specify an AMI ID that was used in a different Oracle CEV. Find the
1807
+ # AMIs used by your CEVs by calling the [DescribeDBEngineVersions][1]
1808
+ # operation.
1809
+ #
1810
+ #
1811
+ #
1812
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBEngineVersions.html
1805
1813
  # @return [String]
1806
1814
  #
1807
1815
  # @!attribute [rw] kms_key_id
@@ -2871,11 +2879,11 @@ module Aws::RDS
2871
2879
  #
2872
2880
  # **Aurora MySQL**
2873
2881
  #
2874
- # Example: `aurora5.6`, `aurora-mysql5.7`, `aurora-mysql8.0`
2882
+ # Example: `aurora-mysql5.7`, `aurora-mysql8.0`
2875
2883
  #
2876
2884
  # **Aurora PostgreSQL**
2877
2885
  #
2878
- # Example: `aurora-postgresql9.6`
2886
+ # Example: `aurora-postgresql14`
2879
2887
  #
2880
2888
  # **RDS for MySQL**
2881
2889
  #
@@ -2904,10 +2912,7 @@ module Aws::RDS
2904
2912
  #
2905
2913
  # The following are the valid DB engine values:
2906
2914
  #
2907
- # * `aurora` (for MySQL 5.6-compatible Aurora)
2908
- #
2909
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
2910
- # Aurora)
2915
+ # * `aurora-mysql`
2911
2916
  #
2912
2917
  # * `aurora-postgresql`
2913
2918
  #
@@ -3303,12 +3308,9 @@ module Aws::RDS
3303
3308
  #
3304
3309
  # Valid Values:
3305
3310
  #
3306
- # * `aurora` (for MySQL 5.6-compatible Aurora)
3311
+ # * `aurora-mysql` (for Aurora MySQL DB instances)
3307
3312
  #
3308
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
3309
- # Aurora)
3310
- #
3311
- # * `aurora-postgresql`
3313
+ # * `aurora-postgresql` (for Aurora PostgreSQL DB instances)
3312
3314
  #
3313
3315
  # * `custom-oracle-ee (for RDS Custom for Oracle DB instances)`
3314
3316
  #
@@ -5106,10 +5108,7 @@ module Aws::RDS
5106
5108
  #
5107
5109
  # The following are the valid DB engine values:
5108
5110
  #
5109
- # * `aurora` (for MySQL 5.6-compatible Aurora)
5110
- #
5111
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
5112
- # Aurora)
5111
+ # * `aurora-mysql`
5113
5112
  #
5114
5113
  # * `aurora-postgresql`
5115
5114
  #
@@ -7757,14 +7756,12 @@ module Aws::RDS
7757
7756
  # otherwise false.
7758
7757
  #
7759
7758
  # IAM database authentication can be enabled for the following
7760
- # database engines
7759
+ # database engines:
7761
7760
  #
7762
- # * For MySQL 5.6, minor version 5.6.34 or higher
7761
+ # * For MySQL 5.7, minor version 5.7.16 or higher.
7763
7762
  #
7764
- # * For MySQL 5.7, minor version 5.7.16 or higher
7765
- #
7766
- # * Aurora 5.6 or higher. To enable IAM database authentication for
7767
- # Aurora, see DBCluster Type.
7763
+ # * For Amazon Aurora, all versions of Aurora MySQL and Aurora
7764
+ # PostgreSQL.
7768
7765
  # @return [Boolean]
7769
7766
  #
7770
7767
  # @!attribute [rw] performance_insights_enabled
@@ -10789,11 +10786,12 @@ module Aws::RDS
10789
10786
  #
10790
10787
  # Valid Values:
10791
10788
  #
10792
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
10793
- # Aurora)
10789
+ # * `aurora-mysql`
10794
10790
  #
10795
10791
  # * `aurora-postgresql`
10796
10792
  #
10793
+ # * `custom-oracle-ee`
10794
+ #
10797
10795
  # * `mariadb`
10798
10796
  #
10799
10797
  # * `mysql`
@@ -11833,8 +11831,6 @@ module Aws::RDS
11833
11831
  #
11834
11832
  # Valid Values:
11835
11833
  #
11836
- # * `aurora5.6`
11837
- #
11838
11834
  # * `aurora-mysql5.7`
11839
11835
  #
11840
11836
  # * `aurora-mysql8.0`
@@ -12414,11 +12410,12 @@ module Aws::RDS
12414
12410
  #
12415
12411
  # Valid Values:
12416
12412
  #
12417
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
12418
- # Aurora)
12413
+ # * `aurora-mysql`
12419
12414
  #
12420
12415
  # * `aurora-postgresql`
12421
12416
  #
12417
+ # * `custom-oracle-ee`
12418
+ #
12422
12419
  # * `mariadb`
12423
12420
  #
12424
12421
  # * `mysql`
@@ -14601,19 +14598,12 @@ module Aws::RDS
14601
14598
  # all replicas must be running an engine version that's the same or
14602
14599
  # later than the version you specify.
14603
14600
  #
14604
- # To list all of the available engine versions for Aurora MySQL
14605
- # version 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use
14601
+ # To list all of the available engine versions for Aurora MySQL, use
14606
14602
  # the following command:
14607
14603
  #
14608
14604
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
14609
14605
  # "DBEngineVersions[].EngineVersion"`
14610
14606
  #
14611
- # To list all of the available engine versions for MySQL
14612
- # 5.6-compatible Aurora, use the following command:
14613
- #
14614
- # `aws rds describe-db-engine-versions --engine aurora --query
14615
- # "DBEngineVersions[].EngineVersion"`
14616
- #
14617
14607
  # To list all of the available engine versions for Aurora PostgreSQL,
14618
14608
  # use the following command:
14619
14609
  #
@@ -14773,8 +14763,6 @@ module Aws::RDS
14773
14763
  # The amount of storage in gibibytes (GiB) to allocate to each DB
14774
14764
  # instance in the Multi-AZ DB cluster.
14775
14765
  #
14776
- # Type: Integer
14777
- #
14778
14766
  # Valid for: Multi-AZ DB clusters only
14779
14767
  # @return [Integer]
14780
14768
  #
@@ -15030,6 +15018,35 @@ module Aws::RDS
15030
15018
  # Valid for: Aurora DB clusters and Multi-AZ DB clusters
15031
15019
  # @return [String]
15032
15020
  #
15021
+ # @!attribute [rw] engine_mode
15022
+ # The DB engine mode of the DB cluster, either `provisioned` or
15023
+ # `serverless`.
15024
+ #
15025
+ # <note markdown="1"> The DB engine mode can be modified only from `serverless` to
15026
+ # `provisioned`.
15027
+ #
15028
+ # </note>
15029
+ #
15030
+ # For more information, see [ CreateDBCluster][1].
15031
+ #
15032
+ # Valid for: Aurora DB clusters only
15033
+ #
15034
+ #
15035
+ #
15036
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
15037
+ # @return [String]
15038
+ #
15039
+ # @!attribute [rw] allow_engine_mode_change
15040
+ # A value that indicates whether engine mode changes from `serverless`
15041
+ # to `provisioned` are allowed.
15042
+ #
15043
+ # Constraints: You must allow engine mode changes when specifying a
15044
+ # different value for the `EngineMode` parameter from the DB
15045
+ # cluster's current engine mode.
15046
+ #
15047
+ # Valid for: Aurora Serverless v1 DB clusters only
15048
+ # @return [Boolean]
15049
+ #
15033
15050
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
15034
15051
  #
15035
15052
  class ModifyDBClusterMessage < Struct.new(
@@ -15071,7 +15088,9 @@ module Aws::RDS
15071
15088
  :network_type,
15072
15089
  :manage_master_user_password,
15073
15090
  :rotate_master_user_password,
15074
- :master_user_secret_kms_key_id)
15091
+ :master_user_secret_kms_key_id,
15092
+ :engine_mode,
15093
+ :allow_engine_mode_change)
15075
15094
  SENSITIVE = []
15076
15095
  include Aws::Structure
15077
15096
  end
@@ -16796,21 +16815,15 @@ module Aws::RDS
16796
16815
  # applied during the next maintenance window unless `ApplyImmediately`
16797
16816
  # is enabled.
16798
16817
  #
16799
- # To list all of the available engine versions for `aurora` (for MySQL
16800
- # 5.6-compatible Aurora), use the following command:
16801
- #
16802
- # `` aws rds describe-db-engine-versions --engine aurora --query
16803
- # '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
16804
- #
16805
16818
  # To list all of the available engine versions for `aurora-mysql` (for
16806
- # MySQL 5.7-compatible and MySQL 8.0-compatible Aurora), use the
16807
- # following command:
16819
+ # MySQL-based Aurora global databases), use the following command:
16808
16820
  #
16809
16821
  # `` aws rds describe-db-engine-versions --engine aurora-mysql --query
16810
16822
  # '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
16811
16823
  #
16812
- # To list all of the available engine versions for
16813
- # `aurora-postgresql`, use the following command:
16824
+ # To list all of the available engine versions for `aurora-postgresql`
16825
+ # (for PostgreSQL-based Aurora global databases), use the following
16826
+ # command:
16814
16827
  #
16815
16828
  # `` aws rds describe-db-engine-versions --engine aurora-postgresql
16816
16829
  # --query '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]'
@@ -18960,8 +18973,8 @@ module Aws::RDS
18960
18973
  #
18961
18974
  # @!attribute [rw] db_cluster_parameter_group_name
18962
18975
  # The name of the DB cluster parameter group to associate with the
18963
- # restored DB cluster. If this argument is omitted,
18964
- # `default.aurora5.6` is used.
18976
+ # restored DB cluster. If this argument is omitted, the default
18977
+ # parameter group for the engine version is used.
18965
18978
  #
18966
18979
  # Constraints:
18967
18980
  #
@@ -18988,16 +19001,14 @@ module Aws::RDS
18988
19001
  # @!attribute [rw] engine
18989
19002
  # The name of the database engine to be used for this DB cluster.
18990
19003
  #
18991
- # Valid Values: `aurora-mysql` (for MySQL 5.7-compatible and MySQL
18992
- # 8.0-compatible Aurora)
19004
+ # Valid Values: `aurora-mysql` (for Aurora MySQL)
18993
19005
  # @return [String]
18994
19006
  #
18995
19007
  # @!attribute [rw] engine_version
18996
19008
  # The version number of the database engine to use.
18997
19009
  #
18998
19010
  # To list all of the available engine versions for `aurora-mysql`
18999
- # (MySQL 5.7-compatible and MySQL 8.0-compatible Aurora), use the
19000
- # following command:
19011
+ # (Aurora MySQL), use the following command:
19001
19012
  #
19002
19013
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
19003
19014
  # "DBEngineVersions[].EngineVersion"`
@@ -19451,9 +19462,8 @@ module Aws::RDS
19451
19462
  # you don't specify an engine version, the default version for the
19452
19463
  # database engine in the Amazon Web Services Region is used.
19453
19464
  #
19454
- # To list all of the available engine versions for MySQL
19455
- # 5.7-compatible and MySQL 8.0-compatible Aurora, use the following
19456
- # command:
19465
+ # To list all of the available engine versions for Aurora MySQL, use
19466
+ # the following command:
19457
19467
  #
19458
19468
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
19459
19469
  # "DBEngineVersions[].EngineVersion"`
@@ -19648,8 +19658,8 @@ module Aws::RDS
19648
19658
  # @return [Array<String>]
19649
19659
  #
19650
19660
  # @!attribute [rw] engine_mode
19651
- # The DB engine mode of the DB cluster, either `provisioned`,
19652
- # `serverless`, `parallelquery`, `global`, or `multimaster`.
19661
+ # The DB engine mode of the DB cluster, either `provisioned` or
19662
+ # `serverless`.
19653
19663
  #
19654
19664
  # For more information, see [ CreateDBCluster][1].
19655
19665
  #
@@ -19945,9 +19955,6 @@ module Aws::RDS
19945
19955
  # * `copy-on-write` - The new DB cluster is restored as a clone of the
19946
19956
  # source DB cluster.
19947
19957
  #
19948
- # Constraints: You can't specify `copy-on-write` if the engine
19949
- # version of the source DB cluster is earlier than 1.11.
19950
- #
19951
19958
  # If you don't specify a `RestoreType` value, then the new DB cluster
19952
19959
  # is restored as a full copy of the source DB cluster.
19953
19960
  #
data/lib/aws-sdk-rds.rb CHANGED
@@ -78,6 +78,6 @@ require_relative 'aws-sdk-rds/customizations'
78
78
  # @!group service
79
79
  module Aws::RDS
80
80
 
81
- GEM_VERSION = '1.175.0'
81
+ GEM_VERSION = '1.177.0'
82
82
 
83
83
  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.175.0
4
+ version: 1.177.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: 2023-04-06 00:00:00.000000000 Z
11
+ date: 2023-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4