aws-sdk-rds 1.172.0 → 1.173.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: 1ea808a9c8abd0a1013fb0b904c61dd8cf86147aeb1a579f51b1919b1c733d17
4
- data.tar.gz: c3033c82438f3f203352af44b9bec06f847537235d07d3d6c70d0acd3d6a7a22
3
+ metadata.gz: 61cf3c6a8b65ff6db1a78b5759f50b822b69e237456fea2dd501a7b18b8d6e30
4
+ data.tar.gz: 1ceba5f023cdf03d5427d3e31ab51886f990ecf7d16fcd3989179af13dac81ce
5
5
  SHA512:
6
- metadata.gz: 7c317220f359649b378302859ee1668df58dcaacbc94de1790961b66d3547290c2a2d79da0d15d08bd11060312dd4275885967f88905a1cf788ea24659ae4dc0
7
- data.tar.gz: 946390c0517ab6238fdbe90681f53d0e5d89bddccdae145e4549739372ef6a80a0c20004ec1d9eaaca0471ba9eb8dbfd6ad52815f9b9ffd539cf349caec3490d
6
+ metadata.gz: 628011476e9571be9421c69e5dc901c817b2bf9f2faeb24b03b30b0151673726697d13a788f47f833026c37a604d3cbb634ef7c1a57dd2504128585cc0f3404e
7
+ data.tar.gz: 7900c9318bb44f271423ee6cb7e0b6f2e3673cec85db846b9ac0bebe322777c5e2980a993fe9394f151e72d939b171780d495e13b77501a19f541ace3a8a9fc2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.173.0 (2023-03-24)
5
+ ------------------
6
+
7
+ * Feature - Added error code CreateCustomDBEngineVersionFault for when the create custom engine version for Custom engines fails.
8
+
4
9
  1.172.0 (2023-02-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.172.0
1
+ 1.173.0
@@ -2131,22 +2131,29 @@ module Aws::RDS
2131
2131
 
2132
2132
  # Creates a new Amazon Aurora DB cluster or Multi-AZ DB cluster.
2133
2133
  #
2134
+ # If you create an Aurora DB cluster, the request creates an empty
2135
+ # cluster. You must explicitly create the writer instance for your DB
2136
+ # cluster using the [CreateDBInstance][1] operation. If you create a
2137
+ # Multi-AZ DB cluster, the request creates a writer and two reader DB
2138
+ # instances for you, each in a different Availability Zone.
2139
+ #
2134
2140
  # You can use the `ReplicationSourceIdentifier` parameter to create an
2135
2141
  # Amazon Aurora DB cluster as a read replica of another DB cluster or
2136
2142
  # Amazon RDS MySQL or PostgreSQL DB instance. For more information about
2137
- # Amazon Aurora, see [What is Amazon Aurora?][1] in the *Amazon Aurora
2143
+ # Amazon Aurora, see [What is Amazon Aurora?][2] in the *Amazon Aurora
2138
2144
  # User Guide*.
2139
2145
  #
2140
2146
  # You can also use the `ReplicationSourceIdentifier` parameter to create
2141
2147
  # a Multi-AZ DB cluster read replica with an RDS for PostgreSQL DB
2142
2148
  # instance as the source. For more information about Multi-AZ DB
2143
- # clusters, see [Multi-AZ DB cluster deployments][2] in the *Amazon RDS
2149
+ # clusters, see [Multi-AZ DB cluster deployments][3] in the *Amazon RDS
2144
2150
  # User Guide*.
2145
2151
  #
2146
2152
  #
2147
2153
  #
2148
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
2149
- # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
2154
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBInstance.html
2155
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
2156
+ # [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
2150
2157
  #
2151
2158
  # @option params [Array<String>] :availability_zones
2152
2159
  # A list of Availability Zones (AZs) where DB instances in the DB
@@ -2240,10 +2247,7 @@ module Aws::RDS
2240
2247
  #
2241
2248
  # Valid Values:
2242
2249
  #
2243
- # * `aurora` (for MySQL 5.6-compatible Aurora)
2244
- #
2245
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
2246
- # Aurora)
2250
+ # * `aurora-mysql`
2247
2251
  #
2248
2252
  # * `aurora-postgresql`
2249
2253
  #
@@ -2256,18 +2260,16 @@ module Aws::RDS
2256
2260
  # @option params [String] :engine_version
2257
2261
  # The version number of the database engine to use.
2258
2262
  #
2259
- # To list all of the available engine versions for MySQL 5.6-compatible
2260
- # Aurora, use the following command:
2261
- #
2262
- # `aws rds describe-db-engine-versions --engine aurora --query
2263
- # "DBEngineVersions[].EngineVersion"`
2264
- #
2265
- # To list all of the available engine versions for MySQL 5.7-compatible
2266
- # and MySQL 8.0-compatible Aurora, use the following command:
2263
+ # To list all of the available engine versions for Aurora MySQL version
2264
+ # 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use the
2265
+ # following command:
2267
2266
  #
2268
2267
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
2269
2268
  # "DBEngineVersions[].EngineVersion"`
2270
2269
  #
2270
+ # You can supply either `5.7` or `8.0` to use the default engine version
2271
+ # for Aurora MySQL version 2 or version 3, respectively.
2272
+ #
2271
2273
  # To list all of the available engine versions for Aurora PostgreSQL,
2272
2274
  # use the following command:
2273
2275
  #
@@ -2288,8 +2290,8 @@ module Aws::RDS
2288
2290
  #
2289
2291
  # **Aurora MySQL**
2290
2292
  #
2291
- # For information, see [MySQL on Amazon RDS Versions][1] in the *Amazon
2292
- # Aurora User Guide*.
2293
+ # For information, see [Database engine updates for Amazon Aurora
2294
+ # MySQL][1] in the *Amazon Aurora User Guide*.
2293
2295
  #
2294
2296
  # **Aurora PostgreSQL**
2295
2297
  #
@@ -2298,13 +2300,13 @@ module Aws::RDS
2298
2300
  #
2299
2301
  # **MySQL**
2300
2302
  #
2301
- # For information, see [MySQL on Amazon RDS Versions][3] in the *Amazon
2302
- # RDS User Guide*.
2303
+ # For information, see [Amazon RDS for MySQL][3] in the *Amazon RDS User
2304
+ # Guide*.
2303
2305
  #
2304
2306
  # **PostgreSQL**
2305
2307
  #
2306
- # For information, see [Amazon RDS for PostgreSQL versions and
2307
- # extensions][4] in the *Amazon RDS User Guide*.
2308
+ # For information, see [Amazon RDS for PostgreSQL][4] in the *Amazon RDS
2309
+ # User Guide*.
2308
2310
  #
2309
2311
  # Valid for: Aurora DB clusters and Multi-AZ DB clusters
2310
2312
  #
@@ -2439,7 +2441,7 @@ module Aws::RDS
2439
2441
  # different Amazon Web Services account, specify the key ARN or alias
2440
2442
  # ARN.
2441
2443
  #
2442
- # When a KMS key isn't specified in `KmsKeyId`\:
2444
+ # When a KMS key isn't specified in `KmsKeyId`:
2443
2445
  #
2444
2446
  # * If `ReplicationSourceIdentifier` identifies an encrypted source,
2445
2447
  # then Amazon RDS will use the KMS key used to encrypt the source.
@@ -2579,40 +2581,23 @@ module Aws::RDS
2579
2581
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
2580
2582
  #
2581
2583
  # @option params [String] :engine_mode
2582
- # The DB engine mode of the DB cluster, either `provisioned`,
2583
- # `serverless`, `parallelquery`, `global`, or `multimaster`.
2584
- #
2585
- # The `parallelquery` engine mode isn't required for Aurora MySQL
2586
- # version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x
2587
- # versions.
2588
- #
2589
- # The `global` engine mode isn't required for Aurora MySQL version 1.22
2590
- # and higher 1.x versions, and `global` engine mode isn't required for
2591
- # any 2.x versions.
2592
- #
2593
- # The `multimaster` engine mode only applies for DB clusters created
2594
- # with Aurora MySQL version 5.6.10a.
2584
+ # The DB engine mode of the DB cluster, either `provisioned` or
2585
+ # `serverless`.
2595
2586
  #
2596
2587
  # The `serverless` engine mode only applies for Aurora Serverless v1 DB
2597
2588
  # clusters.
2598
2589
  #
2599
- # For Aurora PostgreSQL, the `global` engine mode isn't required, and
2600
- # both the `parallelquery` and the `multimaster` engine modes currently
2601
- # aren't supported.
2602
- #
2603
2590
  # Limitations and requirements apply to some DB engine modes. For more
2604
2591
  # information, see the following sections in the *Amazon Aurora User
2605
- # Guide*\:
2592
+ # Guide*:
2606
2593
  #
2607
2594
  # * [Limitations of Aurora Serverless v1][1]
2608
2595
  #
2609
2596
  # * [Requirements for Aurora Serverless v2][2]
2610
2597
  #
2611
- # * [Limitations of Parallel Query][3]
2598
+ # * [Limitations of parallel query][3]
2612
2599
  #
2613
- # * [Limitations of Aurora Global Databases][4]
2614
- #
2615
- # * [Limitations of Multi-Master Clusters][5]
2600
+ # * [Limitations of Aurora global databases][4]
2616
2601
  #
2617
2602
  # Valid for: Aurora DB clusters only
2618
2603
  #
@@ -2622,7 +2607,6 @@ module Aws::RDS
2622
2607
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.requirements.html
2623
2608
  # [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
2624
2609
  # [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
2625
- # [5]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
2626
2610
  #
2627
2611
  # @option params [Types::ScalingConfiguration] :scaling_configuration
2628
2612
  # For DB clusters in `serverless` DB engine mode, the scaling properties
@@ -2749,8 +2733,8 @@ module Aws::RDS
2749
2733
  # be initially allocated for each DB instance in the Multi-AZ DB
2750
2734
  # cluster.
2751
2735
  #
2752
- # For information about valid IOPS values, see [Amazon RDS Provisioned
2753
- # IOPS storage][1] in the *Amazon RDS User Guide*.
2736
+ # For information about valid IOPS values, see [Provisioned IOPS
2737
+ # storage][1] in the *Amazon RDS User Guide*.
2754
2738
  #
2755
2739
  # This setting is required to create a Multi-AZ DB cluster.
2756
2740
  #
@@ -9568,8 +9552,6 @@ module Aws::RDS
9568
9552
  #
9569
9553
  # Valid Values:
9570
9554
  #
9571
- # * `aurora` (for MySQL 5.6-compatible Aurora)
9572
- #
9573
9555
  # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
9574
9556
  # Aurora)
9575
9557
  #
@@ -12370,8 +12352,6 @@ module Aws::RDS
12370
12352
  #
12371
12353
  # Valid Values:
12372
12354
  #
12373
- # * `aurora` (for MySQL 5.6-compatible Aurora)
12374
- #
12375
12355
  # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
12376
12356
  # Aurora)
12377
12357
  #
@@ -14199,14 +14179,9 @@ module Aws::RDS
14199
14179
  # applied during the next maintenance window unless `ApplyImmediately`
14200
14180
  # is enabled.
14201
14181
  #
14202
- # To list all of the available engine versions for MySQL 5.6-compatible
14203
- # Aurora, use the following command:
14204
- #
14205
- # `aws rds describe-db-engine-versions --engine aurora --query
14206
- # "DBEngineVersions[].EngineVersion"`
14207
- #
14208
- # To list all of the available engine versions for MySQL 5.7-compatible
14209
- # and MySQL 8.0-compatible Aurora, use the following command:
14182
+ # To list all of the available engine versions for Aurora MySQL version
14183
+ # 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use the
14184
+ # following command:
14210
14185
  #
14211
14186
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
14212
14187
  # "DBEngineVersions[].EngineVersion"`
@@ -18749,30 +18724,22 @@ module Aws::RDS
18749
18724
  # @option params [required, String] :engine
18750
18725
  # The name of the database engine to be used for this DB cluster.
18751
18726
  #
18752
- # Valid Values: `aurora` (for MySQL 5.6-compatible Aurora) and
18753
- # `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
18754
- # Aurora)
18727
+ # Valid Values: `aurora-mysql` (for MySQL 5.7-compatible and MySQL
18728
+ # 8.0-compatible Aurora)
18755
18729
  #
18756
18730
  # @option params [String] :engine_version
18757
18731
  # The version number of the database engine to use.
18758
18732
  #
18759
- # To list all of the available engine versions for `aurora` (for MySQL
18760
- # 5.6-compatible Aurora), use the following command:
18761
- #
18762
- # `aws rds describe-db-engine-versions --engine aurora --query
18763
- # "DBEngineVersions[].EngineVersion"`
18764
- #
18765
- # To list all of the available engine versions for `aurora-mysql` (for
18766
- # MySQL 5.7-compatible and MySQL 8.0-compatible Aurora), use the
18767
- # following command:
18733
+ # To list all of the available engine versions for `aurora-mysql` (MySQL
18734
+ # 5.7-compatible and MySQL 8.0-compatible Aurora), use the following
18735
+ # command:
18768
18736
  #
18769
18737
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
18770
18738
  # "DBEngineVersions[].EngineVersion"`
18771
18739
  #
18772
18740
  # **Aurora MySQL**
18773
18741
  #
18774
- # Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`,
18775
- # `5.7.mysql_aurora.2.07.1`, `8.0.mysql_aurora.3.02.0`
18742
+ # Examples: `5.7.mysql_aurora.2.07.1`, `8.0.mysql_aurora.3.02.0`
18776
18743
  #
18777
18744
  # @option params [Integer] :port
18778
18745
  # The port number on which the instances in the restored DB cluster
@@ -18945,10 +18912,6 @@ module Aws::RDS
18945
18912
  #
18946
18913
  # Possible values are `audit`, `error`, `general`, and `slowquery`.
18947
18914
  #
18948
- # **Aurora PostgreSQL**
18949
- #
18950
- # Possible value is `postgresql`.
18951
- #
18952
18915
  # For more information about exporting CloudWatch Logs for Amazon
18953
18916
  # Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][1] in
18954
18917
  # the *Amazon Aurora User Guide*.
@@ -19307,13 +19270,9 @@ module Aws::RDS
19307
19270
  # Valid for: Aurora DB clusters and Multi-AZ DB clusters
19308
19271
  #
19309
19272
  # @option params [String] :engine_version
19310
- # The version of the database engine to use for the new DB cluster.
19311
- #
19312
- # To list all of the available engine versions for MySQL 5.6-compatible
19313
- # Aurora, use the following command:
19314
- #
19315
- # `aws rds describe-db-engine-versions --engine aurora --query
19316
- # "DBEngineVersions[].EngineVersion"`
19273
+ # The version of the database engine to use for the new DB cluster. If
19274
+ # you don't specify an engine version, the default version for the
19275
+ # database engine in the Amazon Web Services Region is used.
19317
19276
  #
19318
19277
  # To list all of the available engine versions for MySQL 5.7-compatible
19319
19278
  # and MySQL 8.0-compatible Aurora, use the following command:
@@ -19341,8 +19300,8 @@ module Aws::RDS
19341
19300
  #
19342
19301
  # **Aurora MySQL**
19343
19302
  #
19344
- # See [MySQL on Amazon RDS Versions][1] in the *Amazon Aurora User
19345
- # Guide*.
19303
+ # See [Database engine updates for Amazon Aurora MySQL][1] in the
19304
+ # *Amazon Aurora User Guide*.
19346
19305
  #
19347
19306
  # **Aurora PostgreSQL**
19348
19307
  #
@@ -19351,7 +19310,7 @@ module Aws::RDS
19351
19310
  #
19352
19311
  # **MySQL**
19353
19312
  #
19354
- # See [MySQL on Amazon RDS Versions][3] in the *Amazon RDS User Guide.*
19313
+ # See [Amazon RDS for MySQL][3] in the *Amazon RDS User Guide.*
19355
19314
  #
19356
19315
  # **PostgreSQL**
19357
19316
  #
@@ -23405,8 +23364,8 @@ module Aws::RDS
23405
23364
  #
23406
23365
  #
23407
23366
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ExportSnapshot.html
23408
- # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/aurora-export-snapshot.html
23409
- # [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/export-cluster-data.html
23367
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-export-snapshot.html
23368
+ # [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/export-cluster-data.html
23410
23369
  #
23411
23370
  # @option params [required, String] :export_task_identifier
23412
23371
  # A unique identifier for the export task. This ID isn't an identifier
@@ -23424,6 +23383,28 @@ module Aws::RDS
23424
23383
  # The name of the IAM role to use for writing to the Amazon S3 bucket
23425
23384
  # when exporting a snapshot or cluster.
23426
23385
  #
23386
+ # In the IAM policy attached to your IAM role, include the following
23387
+ # required actions to allow the transfer of files from Amazon RDS or
23388
+ # Amazon Aurora to an S3 bucket:
23389
+ #
23390
+ # * s3:PutObject*
23391
+ #
23392
+ # * s3:GetObject*
23393
+ #
23394
+ # * s3:ListBucket
23395
+ #
23396
+ # * s3:DeleteObject*
23397
+ #
23398
+ # * s3:GetBucketLocation
23399
+ #
23400
+ # In the policy, include the resources to identify the S3 bucket and
23401
+ # objects in the bucket. The following list of resources shows the
23402
+ # Amazon Resource Name (ARN) format for accessing S3:
23403
+ #
23404
+ # * `arn:aws:s3:::your-s3-bucket `
23405
+ #
23406
+ # * `arn:aws:s3:::your-s3-bucket/*`
23407
+ #
23427
23408
  # @option params [required, String] :kms_key_id
23428
23409
  # The ID of the Amazon Web Services KMS key to use to encrypt the data
23429
23410
  # exported to Amazon S3. The Amazon Web Services KMS key identifier is
@@ -24273,7 +24254,7 @@ module Aws::RDS
24273
24254
  params: params,
24274
24255
  config: config)
24275
24256
  context[:gem_name] = 'aws-sdk-rds'
24276
- context[:gem_version] = '1.172.0'
24257
+ context[:gem_version] = '1.173.0'
24277
24258
  Seahorse::Client::Request.new(handlers, context)
24278
24259
  end
24279
24260
 
@@ -85,6 +85,7 @@ module Aws::RDS
85
85
  CopyOptionGroupResult = Shapes::StructureShape.new(name: 'CopyOptionGroupResult')
86
86
  CreateBlueGreenDeploymentRequest = Shapes::StructureShape.new(name: 'CreateBlueGreenDeploymentRequest')
87
87
  CreateBlueGreenDeploymentResponse = Shapes::StructureShape.new(name: 'CreateBlueGreenDeploymentResponse')
88
+ CreateCustomDBEngineVersionFault = Shapes::StructureShape.new(name: 'CreateCustomDBEngineVersionFault')
88
89
  CreateCustomDBEngineVersionMessage = Shapes::StructureShape.new(name: 'CreateCustomDBEngineVersionMessage')
89
90
  CreateDBClusterEndpointMessage = Shapes::StructureShape.new(name: 'CreateDBClusterEndpointMessage')
90
91
  CreateDBClusterMessage = Shapes::StructureShape.new(name: 'CreateDBClusterMessage')
@@ -877,6 +878,8 @@ module Aws::RDS
877
878
  CreateBlueGreenDeploymentResponse.add_member(:blue_green_deployment, Shapes::ShapeRef.new(shape: BlueGreenDeployment, location_name: "BlueGreenDeployment"))
878
879
  CreateBlueGreenDeploymentResponse.struct_class = Types::CreateBlueGreenDeploymentResponse
879
880
 
881
+ CreateCustomDBEngineVersionFault.struct_class = Types::CreateCustomDBEngineVersionFault
882
+
880
883
  CreateCustomDBEngineVersionMessage.add_member(:engine, Shapes::ShapeRef.new(shape: CustomEngineName, required: true, location_name: "Engine"))
881
884
  CreateCustomDBEngineVersionMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: CustomEngineVersion, required: true, location_name: "EngineVersion"))
882
885
  CreateCustomDBEngineVersionMessage.add_member(:database_installation_files_s3_bucket_name, Shapes::ShapeRef.new(shape: BucketName, location_name: "DatabaseInstallationFilesS3BucketName"))
@@ -3852,6 +3855,7 @@ module Aws::RDS
3852
3855
  o.errors << Shapes::ShapeRef.new(shape: CustomDBEngineVersionQuotaExceededFault)
3853
3856
  o.errors << Shapes::ShapeRef.new(shape: Ec2ImagePropertiesNotSupportedFault)
3854
3857
  o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
3858
+ o.errors << Shapes::ShapeRef.new(shape: CreateCustomDBEngineVersionFault)
3855
3859
  end)
3856
3860
 
3857
3861
  api.add_operation(:create_db_cluster, Seahorse::Model::Operation.new.tap do |o|
@@ -938,10 +938,7 @@ module Aws::RDS
938
938
  #
939
939
  # Valid Values:
940
940
  #
941
- # * `aurora` (for MySQL 5.6-compatible Aurora)
942
- #
943
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
944
- # Aurora)
941
+ # * `aurora-mysql`
945
942
  #
946
943
  # * `aurora-postgresql`
947
944
  #
@@ -953,18 +950,16 @@ module Aws::RDS
953
950
  # @option options [String] :engine_version
954
951
  # The version number of the database engine to use.
955
952
  #
956
- # To list all of the available engine versions for MySQL 5.6-compatible
957
- # Aurora, use the following command:
958
- #
959
- # `aws rds describe-db-engine-versions --engine aurora --query
960
- # "DBEngineVersions[].EngineVersion"`
961
- #
962
- # To list all of the available engine versions for MySQL 5.7-compatible
963
- # and MySQL 8.0-compatible Aurora, use the following command:
953
+ # To list all of the available engine versions for Aurora MySQL version
954
+ # 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use the
955
+ # following command:
964
956
  #
965
957
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
966
958
  # "DBEngineVersions[].EngineVersion"`
967
959
  #
960
+ # You can supply either `5.7` or `8.0` to use the default engine version
961
+ # for Aurora MySQL version 2 or version 3, respectively.
962
+ #
968
963
  # To list all of the available engine versions for Aurora PostgreSQL,
969
964
  # use the following command:
970
965
  #
@@ -985,8 +980,8 @@ module Aws::RDS
985
980
  #
986
981
  # **Aurora MySQL**
987
982
  #
988
- # For information, see [MySQL on Amazon RDS Versions][1] in the *Amazon
989
- # Aurora User Guide*.
983
+ # For information, see [Database engine updates for Amazon Aurora
984
+ # MySQL][1] in the *Amazon Aurora User Guide*.
990
985
  #
991
986
  # **Aurora PostgreSQL**
992
987
  #
@@ -995,13 +990,13 @@ module Aws::RDS
995
990
  #
996
991
  # **MySQL**
997
992
  #
998
- # For information, see [MySQL on Amazon RDS Versions][3] in the *Amazon
999
- # RDS User Guide*.
993
+ # For information, see [Amazon RDS for MySQL][3] in the *Amazon RDS User
994
+ # Guide*.
1000
995
  #
1001
996
  # **PostgreSQL**
1002
997
  #
1003
- # For information, see [Amazon RDS for PostgreSQL versions and
1004
- # extensions][4] in the *Amazon RDS User Guide*.
998
+ # For information, see [Amazon RDS for PostgreSQL][4] in the *Amazon RDS
999
+ # User Guide*.
1005
1000
  #
1006
1001
  # Valid for: Aurora DB clusters and Multi-AZ DB clusters
1007
1002
  #
@@ -1126,7 +1121,7 @@ module Aws::RDS
1126
1121
  # different Amazon Web Services account, specify the key ARN or alias
1127
1122
  # ARN.
1128
1123
  #
1129
- # When a KMS key isn't specified in `KmsKeyId`\:
1124
+ # When a KMS key isn't specified in `KmsKeyId`:
1130
1125
  #
1131
1126
  # * If `ReplicationSourceIdentifier` identifies an encrypted source,
1132
1127
  # then Amazon RDS will use the KMS key used to encrypt the source.
@@ -1261,40 +1256,23 @@ module Aws::RDS
1261
1256
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
1262
1257
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
1263
1258
  # @option options [String] :engine_mode
1264
- # The DB engine mode of the DB cluster, either `provisioned`,
1265
- # `serverless`, `parallelquery`, `global`, or `multimaster`.
1266
- #
1267
- # The `parallelquery` engine mode isn't required for Aurora MySQL
1268
- # version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x
1269
- # versions.
1270
- #
1271
- # The `global` engine mode isn't required for Aurora MySQL version 1.22
1272
- # and higher 1.x versions, and `global` engine mode isn't required for
1273
- # any 2.x versions.
1274
- #
1275
- # The `multimaster` engine mode only applies for DB clusters created
1276
- # with Aurora MySQL version 5.6.10a.
1259
+ # The DB engine mode of the DB cluster, either `provisioned` or
1260
+ # `serverless`.
1277
1261
  #
1278
1262
  # The `serverless` engine mode only applies for Aurora Serverless v1 DB
1279
1263
  # clusters.
1280
1264
  #
1281
- # For Aurora PostgreSQL, the `global` engine mode isn't required, and
1282
- # both the `parallelquery` and the `multimaster` engine modes currently
1283
- # aren't supported.
1284
- #
1285
1265
  # Limitations and requirements apply to some DB engine modes. For more
1286
1266
  # information, see the following sections in the *Amazon Aurora User
1287
- # Guide*\:
1267
+ # Guide*:
1288
1268
  #
1289
1269
  # * [Limitations of Aurora Serverless v1][1]
1290
1270
  #
1291
1271
  # * [Requirements for Aurora Serverless v2][2]
1292
1272
  #
1293
- # * [Limitations of Parallel Query][3]
1273
+ # * [Limitations of parallel query][3]
1294
1274
  #
1295
- # * [Limitations of Aurora Global Databases][4]
1296
- #
1297
- # * [Limitations of Multi-Master Clusters][5]
1275
+ # * [Limitations of Aurora global databases][4]
1298
1276
  #
1299
1277
  # Valid for: Aurora DB clusters only
1300
1278
  #
@@ -1304,7 +1282,6 @@ module Aws::RDS
1304
1282
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.requirements.html
1305
1283
  # [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
1306
1284
  # [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
1307
- # [5]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
1308
1285
  # @option options [Types::ScalingConfiguration] :scaling_configuration
1309
1286
  # For DB clusters in `serverless` DB engine mode, the scaling properties
1310
1287
  # of the DB cluster.
@@ -1419,8 +1396,8 @@ module Aws::RDS
1419
1396
  # be initially allocated for each DB instance in the Multi-AZ DB
1420
1397
  # cluster.
1421
1398
  #
1422
- # For information about valid IOPS values, see [Amazon RDS Provisioned
1423
- # IOPS storage][1] in the *Amazon RDS User Guide*.
1399
+ # For information about valid IOPS values, see [Provisioned IOPS
1400
+ # storage][1] in the *Amazon RDS User Guide*.
1424
1401
  #
1425
1402
  # This setting is required to create a Multi-AZ DB cluster.
1426
1403
  #
@@ -2003,14 +1980,9 @@ module Aws::RDS
2003
1980
  # applied during the next maintenance window unless `ApplyImmediately`
2004
1981
  # is enabled.
2005
1982
  #
2006
- # To list all of the available engine versions for MySQL 5.6-compatible
2007
- # Aurora, use the following command:
2008
- #
2009
- # `aws rds describe-db-engine-versions --engine aurora --query
2010
- # "DBEngineVersions[].EngineVersion"`
2011
- #
2012
- # To list all of the available engine versions for MySQL 5.7-compatible
2013
- # and MySQL 8.0-compatible Aurora, use the following command:
1983
+ # To list all of the available engine versions for Aurora MySQL version
1984
+ # 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use the
1985
+ # following command:
2014
1986
  #
2015
1987
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
2016
1988
  # "DBEngineVersions[].EngineVersion"`
@@ -586,13 +586,9 @@ module Aws::RDS
586
586
  #
587
587
  # Valid for: Aurora DB clusters and Multi-AZ DB clusters
588
588
  # @option options [String] :engine_version
589
- # The version of the database engine to use for the new DB cluster.
590
- #
591
- # To list all of the available engine versions for MySQL 5.6-compatible
592
- # Aurora, use the following command:
593
- #
594
- # `aws rds describe-db-engine-versions --engine aurora --query
595
- # "DBEngineVersions[].EngineVersion"`
589
+ # The version of the database engine to use for the new DB cluster. If
590
+ # you don't specify an engine version, the default version for the
591
+ # database engine in the Amazon Web Services Region is used.
596
592
  #
597
593
  # To list all of the available engine versions for MySQL 5.7-compatible
598
594
  # and MySQL 8.0-compatible Aurora, use the following command:
@@ -620,8 +616,8 @@ module Aws::RDS
620
616
  #
621
617
  # **Aurora MySQL**
622
618
  #
623
- # See [MySQL on Amazon RDS Versions][1] in the *Amazon Aurora User
624
- # Guide*.
619
+ # See [Database engine updates for Amazon Aurora MySQL][1] in the
620
+ # *Amazon Aurora User Guide*.
625
621
  #
626
622
  # **Aurora PostgreSQL**
627
623
  #
@@ -630,7 +626,7 @@ module Aws::RDS
630
626
  #
631
627
  # **MySQL**
632
628
  #
633
- # See [MySQL on Amazon RDS Versions][3] in the *Amazon RDS User Guide.*
629
+ # See [Amazon RDS for MySQL][3] in the *Amazon RDS User Guide.*
634
630
  #
635
631
  # **PostgreSQL**
636
632
  #
@@ -34,6 +34,7 @@ module Aws::RDS
34
34
  # * {BlueGreenDeploymentAlreadyExistsFault}
35
35
  # * {BlueGreenDeploymentNotFoundFault}
36
36
  # * {CertificateNotFoundFault}
37
+ # * {CreateCustomDBEngineVersionFault}
37
38
  # * {CustomAvailabilityZoneNotFoundFault}
38
39
  # * {CustomDBEngineVersionAlreadyExistsFault}
39
40
  # * {CustomDBEngineVersionNotFoundFault}
@@ -228,6 +229,16 @@ module Aws::RDS
228
229
  end
229
230
  end
230
231
 
232
+ class CreateCustomDBEngineVersionFault < ServiceError
233
+
234
+ # @param [Seahorse::Client::RequestContext] context
235
+ # @param [String] message
236
+ # @param [Aws::RDS::Types::CreateCustomDBEngineVersionFault] data
237
+ def initialize(context, message, data = Aws::EmptyStructure.new)
238
+ super(context, message, data)
239
+ end
240
+ end
241
+
231
242
  class CustomAvailabilityZoneNotFoundFault < ServiceError
232
243
 
233
244
  # @param [Seahorse::Client::RequestContext] context
@@ -189,10 +189,7 @@ module Aws::RDS
189
189
  #
190
190
  # Valid Values:
191
191
  #
192
- # * `aurora` (for MySQL 5.6-compatible Aurora)
193
- #
194
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
195
- # Aurora)
192
+ # * `aurora-mysql`
196
193
  #
197
194
  # * `aurora-postgresql`
198
195
  #
@@ -204,18 +201,16 @@ module Aws::RDS
204
201
  # @option options [String] :engine_version
205
202
  # The version number of the database engine to use.
206
203
  #
207
- # To list all of the available engine versions for MySQL 5.6-compatible
208
- # Aurora, use the following command:
209
- #
210
- # `aws rds describe-db-engine-versions --engine aurora --query
211
- # "DBEngineVersions[].EngineVersion"`
212
- #
213
- # To list all of the available engine versions for MySQL 5.7-compatible
214
- # and MySQL 8.0-compatible Aurora, use the following command:
204
+ # To list all of the available engine versions for Aurora MySQL version
205
+ # 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use the
206
+ # following command:
215
207
  #
216
208
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
217
209
  # "DBEngineVersions[].EngineVersion"`
218
210
  #
211
+ # You can supply either `5.7` or `8.0` to use the default engine version
212
+ # for Aurora MySQL version 2 or version 3, respectively.
213
+ #
219
214
  # To list all of the available engine versions for Aurora PostgreSQL,
220
215
  # use the following command:
221
216
  #
@@ -236,8 +231,8 @@ module Aws::RDS
236
231
  #
237
232
  # **Aurora MySQL**
238
233
  #
239
- # For information, see [MySQL on Amazon RDS Versions][1] in the *Amazon
240
- # Aurora User Guide*.
234
+ # For information, see [Database engine updates for Amazon Aurora
235
+ # MySQL][1] in the *Amazon Aurora User Guide*.
241
236
  #
242
237
  # **Aurora PostgreSQL**
243
238
  #
@@ -246,13 +241,13 @@ module Aws::RDS
246
241
  #
247
242
  # **MySQL**
248
243
  #
249
- # For information, see [MySQL on Amazon RDS Versions][3] in the *Amazon
250
- # RDS User Guide*.
244
+ # For information, see [Amazon RDS for MySQL][3] in the *Amazon RDS User
245
+ # Guide*.
251
246
  #
252
247
  # **PostgreSQL**
253
248
  #
254
- # For information, see [Amazon RDS for PostgreSQL versions and
255
- # extensions][4] in the *Amazon RDS User Guide*.
249
+ # For information, see [Amazon RDS for PostgreSQL][4] in the *Amazon RDS
250
+ # User Guide*.
256
251
  #
257
252
  # Valid for: Aurora DB clusters and Multi-AZ DB clusters
258
253
  #
@@ -377,7 +372,7 @@ module Aws::RDS
377
372
  # different Amazon Web Services account, specify the key ARN or alias
378
373
  # ARN.
379
374
  #
380
- # When a KMS key isn't specified in `KmsKeyId`\:
375
+ # When a KMS key isn't specified in `KmsKeyId`:
381
376
  #
382
377
  # * If `ReplicationSourceIdentifier` identifies an encrypted source,
383
378
  # then Amazon RDS will use the KMS key used to encrypt the source.
@@ -512,40 +507,23 @@ module Aws::RDS
512
507
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
513
508
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
514
509
  # @option options [String] :engine_mode
515
- # The DB engine mode of the DB cluster, either `provisioned`,
516
- # `serverless`, `parallelquery`, `global`, or `multimaster`.
517
- #
518
- # The `parallelquery` engine mode isn't required for Aurora MySQL
519
- # version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x
520
- # versions.
521
- #
522
- # The `global` engine mode isn't required for Aurora MySQL version 1.22
523
- # and higher 1.x versions, and `global` engine mode isn't required for
524
- # any 2.x versions.
525
- #
526
- # The `multimaster` engine mode only applies for DB clusters created
527
- # with Aurora MySQL version 5.6.10a.
510
+ # The DB engine mode of the DB cluster, either `provisioned` or
511
+ # `serverless`.
528
512
  #
529
513
  # The `serverless` engine mode only applies for Aurora Serverless v1 DB
530
514
  # clusters.
531
515
  #
532
- # For Aurora PostgreSQL, the `global` engine mode isn't required, and
533
- # both the `parallelquery` and the `multimaster` engine modes currently
534
- # aren't supported.
535
- #
536
516
  # Limitations and requirements apply to some DB engine modes. For more
537
517
  # information, see the following sections in the *Amazon Aurora User
538
- # Guide*\:
518
+ # Guide*:
539
519
  #
540
520
  # * [Limitations of Aurora Serverless v1][1]
541
521
  #
542
522
  # * [Requirements for Aurora Serverless v2][2]
543
523
  #
544
- # * [Limitations of Parallel Query][3]
545
- #
546
- # * [Limitations of Aurora Global Databases][4]
524
+ # * [Limitations of parallel query][3]
547
525
  #
548
- # * [Limitations of Multi-Master Clusters][5]
526
+ # * [Limitations of Aurora global databases][4]
549
527
  #
550
528
  # Valid for: Aurora DB clusters only
551
529
  #
@@ -555,7 +533,6 @@ module Aws::RDS
555
533
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.requirements.html
556
534
  # [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
557
535
  # [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
558
- # [5]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
559
536
  # @option options [Types::ScalingConfiguration] :scaling_configuration
560
537
  # For DB clusters in `serverless` DB engine mode, the scaling properties
561
538
  # of the DB cluster.
@@ -670,8 +647,8 @@ module Aws::RDS
670
647
  # be initially allocated for each DB instance in the Multi-AZ DB
671
648
  # cluster.
672
649
  #
673
- # For information about valid IOPS values, see [Amazon RDS Provisioned
674
- # IOPS storage][1] in the *Amazon RDS User Guide*.
650
+ # For information about valid IOPS values, see [Provisioned IOPS
651
+ # storage][1] in the *Amazon RDS User Guide*.
675
652
  #
676
653
  # This setting is required to create a Multi-AZ DB cluster.
677
654
  #
@@ -2768,8 +2745,6 @@ module Aws::RDS
2768
2745
  #
2769
2746
  # Valid Values:
2770
2747
  #
2771
- # * `aurora` (for MySQL 5.6-compatible Aurora)
2772
- #
2773
2748
  # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
2774
2749
  # Aurora)
2775
2750
  #
@@ -1767,6 +1767,12 @@ module Aws::RDS
1767
1767
  include Aws::Structure
1768
1768
  end
1769
1769
 
1770
+ # An error occurred while trying to create the CEV.
1771
+ #
1772
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersionFault AWS API Documentation
1773
+ #
1774
+ class CreateCustomDBEngineVersionFault < Aws::EmptyStructure; end
1775
+
1770
1776
  # @!attribute [rw] engine
1771
1777
  # The database engine to use for your custom engine version (CEV). The
1772
1778
  # only supported value is `custom-oracle-ee`.
@@ -2028,10 +2034,7 @@ module Aws::RDS
2028
2034
  #
2029
2035
  # Valid Values:
2030
2036
  #
2031
- # * `aurora` (for MySQL 5.6-compatible Aurora)
2032
- #
2033
- # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
2034
- # Aurora)
2037
+ # * `aurora-mysql`
2035
2038
  #
2036
2039
  # * `aurora-postgresql`
2037
2040
  #
@@ -2045,19 +2048,16 @@ module Aws::RDS
2045
2048
  # @!attribute [rw] engine_version
2046
2049
  # The version number of the database engine to use.
2047
2050
  #
2048
- # To list all of the available engine versions for MySQL
2049
- # 5.6-compatible Aurora, use the following command:
2050
- #
2051
- # `aws rds describe-db-engine-versions --engine aurora --query
2052
- # "DBEngineVersions[].EngineVersion"`
2053
- #
2054
- # To list all of the available engine versions for MySQL
2055
- # 5.7-compatible and MySQL 8.0-compatible Aurora, use the following
2056
- # command:
2051
+ # To list all of the available engine versions for Aurora MySQL
2052
+ # version 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use
2053
+ # the following command:
2057
2054
  #
2058
2055
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
2059
2056
  # "DBEngineVersions[].EngineVersion"`
2060
2057
  #
2058
+ # You can supply either `5.7` or `8.0` to use the default engine
2059
+ # version for Aurora MySQL version 2 or version 3, respectively.
2060
+ #
2061
2061
  # To list all of the available engine versions for Aurora PostgreSQL,
2062
2062
  # use the following command:
2063
2063
  #
@@ -2078,8 +2078,8 @@ module Aws::RDS
2078
2078
  #
2079
2079
  # **Aurora MySQL**
2080
2080
  #
2081
- # For information, see [MySQL on Amazon RDS Versions][1] in the
2082
- # *Amazon Aurora User Guide*.
2081
+ # For information, see [Database engine updates for Amazon Aurora
2082
+ # MySQL][1] in the *Amazon Aurora User Guide*.
2083
2083
  #
2084
2084
  # **Aurora PostgreSQL**
2085
2085
  #
@@ -2088,13 +2088,13 @@ module Aws::RDS
2088
2088
  #
2089
2089
  # **MySQL**
2090
2090
  #
2091
- # For information, see [MySQL on Amazon RDS Versions][3] in the
2092
- # *Amazon RDS User Guide*.
2091
+ # For information, see [Amazon RDS for MySQL][3] in the *Amazon RDS
2092
+ # User Guide*.
2093
2093
  #
2094
2094
  # **PostgreSQL**
2095
2095
  #
2096
- # For information, see [Amazon RDS for PostgreSQL versions and
2097
- # extensions][4] in the *Amazon RDS User Guide*.
2096
+ # For information, see [Amazon RDS for PostgreSQL][4] in the *Amazon
2097
+ # RDS User Guide*.
2098
2098
  #
2099
2099
  # Valid for: Aurora DB clusters and Multi-AZ DB clusters
2100
2100
  #
@@ -2239,7 +2239,7 @@ module Aws::RDS
2239
2239
  # different Amazon Web Services account, specify the key ARN or alias
2240
2240
  # ARN.
2241
2241
  #
2242
- # When a KMS key isn't specified in `KmsKeyId`\:
2242
+ # When a KMS key isn't specified in `KmsKeyId`:
2243
2243
  #
2244
2244
  # * If `ReplicationSourceIdentifier` identifies an encrypted source,
2245
2245
  # then Amazon RDS will use the KMS key used to encrypt the source.
@@ -2385,40 +2385,23 @@ module Aws::RDS
2385
2385
  # @return [Array<String>]
2386
2386
  #
2387
2387
  # @!attribute [rw] engine_mode
2388
- # The DB engine mode of the DB cluster, either `provisioned`,
2389
- # `serverless`, `parallelquery`, `global`, or `multimaster`.
2390
- #
2391
- # The `parallelquery` engine mode isn't required for Aurora MySQL
2392
- # version 1.23 and higher 1.x versions, and version 2.09 and higher
2393
- # 2.x versions.
2394
- #
2395
- # The `global` engine mode isn't required for Aurora MySQL version
2396
- # 1.22 and higher 1.x versions, and `global` engine mode isn't
2397
- # required for any 2.x versions.
2398
- #
2399
- # The `multimaster` engine mode only applies for DB clusters created
2400
- # with Aurora MySQL version 5.6.10a.
2388
+ # The DB engine mode of the DB cluster, either `provisioned` or
2389
+ # `serverless`.
2401
2390
  #
2402
2391
  # The `serverless` engine mode only applies for Aurora Serverless v1
2403
2392
  # DB clusters.
2404
2393
  #
2405
- # For Aurora PostgreSQL, the `global` engine mode isn't required, and
2406
- # both the `parallelquery` and the `multimaster` engine modes
2407
- # currently aren't supported.
2408
- #
2409
2394
  # Limitations and requirements apply to some DB engine modes. For more
2410
2395
  # information, see the following sections in the *Amazon Aurora User
2411
- # Guide*\:
2396
+ # Guide*:
2412
2397
  #
2413
2398
  # * [Limitations of Aurora Serverless v1][1]
2414
2399
  #
2415
2400
  # * [Requirements for Aurora Serverless v2][2]
2416
2401
  #
2417
- # * [Limitations of Parallel Query][3]
2402
+ # * [Limitations of parallel query][3]
2418
2403
  #
2419
- # * [Limitations of Aurora Global Databases][4]
2420
- #
2421
- # * [Limitations of Multi-Master Clusters][5]
2404
+ # * [Limitations of Aurora global databases][4]
2422
2405
  #
2423
2406
  # Valid for: Aurora DB clusters only
2424
2407
  #
@@ -2428,7 +2411,6 @@ module Aws::RDS
2428
2411
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.requirements.html
2429
2412
  # [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
2430
2413
  # [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
2431
- # [5]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
2432
2414
  # @return [String]
2433
2415
  #
2434
2416
  # @!attribute [rw] scaling_configuration
@@ -2568,8 +2550,8 @@ module Aws::RDS
2568
2550
  # to be initially allocated for each DB instance in the Multi-AZ DB
2569
2551
  # cluster.
2570
2552
  #
2571
- # For information about valid IOPS values, see [Amazon RDS Provisioned
2572
- # IOPS storage][1] in the *Amazon RDS User Guide*.
2553
+ # For information about valid IOPS values, see [Provisioned IOPS
2554
+ # storage][1] in the *Amazon RDS User Guide*.
2573
2555
  #
2574
2556
  # This setting is required to create a Multi-AZ DB cluster.
2575
2557
  #
@@ -10773,8 +10755,6 @@ module Aws::RDS
10773
10755
  #
10774
10756
  # Valid Values:
10775
10757
  #
10776
- # * `aurora` (for MySQL 5.6-compatible Aurora)
10777
- #
10778
10758
  # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
10779
10759
  # Aurora)
10780
10760
  #
@@ -12400,8 +12380,6 @@ module Aws::RDS
12400
12380
  #
12401
12381
  # Valid Values:
12402
12382
  #
12403
- # * `aurora` (for MySQL 5.6-compatible Aurora)
12404
- #
12405
12383
  # * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
12406
12384
  # Aurora)
12407
12385
  #
@@ -13654,8 +13632,8 @@ module Aws::RDS
13654
13632
  # @return [Boolean]
13655
13633
  #
13656
13634
  # @!attribute [rw] global_cluster_members
13657
- # The list of cluster IDs for secondary clusters within the global
13658
- # database cluster. Currently limited to 1 item.
13635
+ # The list of primary and secondary clusters within the global
13636
+ # database cluster.
13659
13637
  # @return [Array<Types::GlobalClusterMember>]
13660
13638
  #
13661
13639
  # @!attribute [rw] failover_state
@@ -14588,15 +14566,9 @@ module Aws::RDS
14588
14566
  # applied during the next maintenance window unless `ApplyImmediately`
14589
14567
  # is enabled.
14590
14568
  #
14591
- # To list all of the available engine versions for MySQL
14592
- # 5.6-compatible Aurora, use the following command:
14593
- #
14594
- # `aws rds describe-db-engine-versions --engine aurora --query
14595
- # "DBEngineVersions[].EngineVersion"`
14596
- #
14597
- # To list all of the available engine versions for MySQL
14598
- # 5.7-compatible and MySQL 8.0-compatible Aurora, use the following
14599
- # command:
14569
+ # To list all of the available engine versions for Aurora MySQL
14570
+ # version 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use
14571
+ # the following command:
14600
14572
  #
14601
14573
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
14602
14574
  # "DBEngineVersions[].EngineVersion"`
@@ -18971,22 +18943,15 @@ module Aws::RDS
18971
18943
  # @!attribute [rw] engine
18972
18944
  # The name of the database engine to be used for this DB cluster.
18973
18945
  #
18974
- # Valid Values: `aurora` (for MySQL 5.6-compatible Aurora) and
18975
- # `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
18976
- # Aurora)
18946
+ # Valid Values: `aurora-mysql` (for MySQL 5.7-compatible and MySQL
18947
+ # 8.0-compatible Aurora)
18977
18948
  # @return [String]
18978
18949
  #
18979
18950
  # @!attribute [rw] engine_version
18980
18951
  # The version number of the database engine to use.
18981
18952
  #
18982
- # To list all of the available engine versions for `aurora` (for MySQL
18983
- # 5.6-compatible Aurora), use the following command:
18984
- #
18985
- # `aws rds describe-db-engine-versions --engine aurora --query
18986
- # "DBEngineVersions[].EngineVersion"`
18987
- #
18988
- # To list all of the available engine versions for `aurora-mysql` (for
18989
- # MySQL 5.7-compatible and MySQL 8.0-compatible Aurora), use the
18953
+ # To list all of the available engine versions for `aurora-mysql`
18954
+ # (MySQL 5.7-compatible and MySQL 8.0-compatible Aurora), use the
18990
18955
  # following command:
18991
18956
  #
18992
18957
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
@@ -18994,8 +18959,7 @@ module Aws::RDS
18994
18959
  #
18995
18960
  # **Aurora MySQL**
18996
18961
  #
18997
- # Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`,
18998
- # `5.7.mysql_aurora.2.07.1`, `8.0.mysql_aurora.3.02.0`
18962
+ # Examples: `5.7.mysql_aurora.2.07.1`, `8.0.mysql_aurora.3.02.0`
18999
18963
  # @return [String]
19000
18964
  #
19001
18965
  # @!attribute [rw] port
@@ -19185,10 +19149,6 @@ module Aws::RDS
19185
19149
  #
19186
19150
  # Possible values are `audit`, `error`, `general`, and `slowquery`.
19187
19151
  #
19188
- # **Aurora PostgreSQL**
19189
- #
19190
- # Possible value is `postgresql`.
19191
- #
19192
19152
  # For more information about exporting CloudWatch Logs for Amazon
19193
19153
  # Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][1]
19194
19154
  # in the *Amazon Aurora User Guide*.
@@ -19442,13 +19402,9 @@ module Aws::RDS
19442
19402
  # @return [String]
19443
19403
  #
19444
19404
  # @!attribute [rw] engine_version
19445
- # The version of the database engine to use for the new DB cluster.
19446
- #
19447
- # To list all of the available engine versions for MySQL
19448
- # 5.6-compatible Aurora, use the following command:
19449
- #
19450
- # `aws rds describe-db-engine-versions --engine aurora --query
19451
- # "DBEngineVersions[].EngineVersion"`
19405
+ # The version of the database engine to use for the new DB cluster. If
19406
+ # you don't specify an engine version, the default version for the
19407
+ # database engine in the Amazon Web Services Region is used.
19452
19408
  #
19453
19409
  # To list all of the available engine versions for MySQL
19454
19410
  # 5.7-compatible and MySQL 8.0-compatible Aurora, use the following
@@ -19477,8 +19433,8 @@ module Aws::RDS
19477
19433
  #
19478
19434
  # **Aurora MySQL**
19479
19435
  #
19480
- # See [MySQL on Amazon RDS Versions][1] in the *Amazon Aurora User
19481
- # Guide*.
19436
+ # See [Database engine updates for Amazon Aurora MySQL][1] in the
19437
+ # *Amazon Aurora User Guide*.
19482
19438
  #
19483
19439
  # **Aurora PostgreSQL**
19484
19440
  #
@@ -19487,8 +19443,7 @@ module Aws::RDS
19487
19443
  #
19488
19444
  # **MySQL**
19489
19445
  #
19490
- # See [MySQL on Amazon RDS Versions][3] in the *Amazon RDS User
19491
- # Guide.*
19446
+ # See [Amazon RDS for MySQL][3] in the *Amazon RDS User Guide.*
19492
19447
  #
19493
19448
  # **PostgreSQL**
19494
19449
  #
@@ -22803,6 +22758,28 @@ module Aws::RDS
22803
22758
  # @!attribute [rw] iam_role_arn
22804
22759
  # The name of the IAM role to use for writing to the Amazon S3 bucket
22805
22760
  # when exporting a snapshot or cluster.
22761
+ #
22762
+ # In the IAM policy attached to your IAM role, include the following
22763
+ # required actions to allow the transfer of files from Amazon RDS or
22764
+ # Amazon Aurora to an S3 bucket:
22765
+ #
22766
+ # * s3:PutObject*
22767
+ #
22768
+ # * s3:GetObject*
22769
+ #
22770
+ # * s3:ListBucket
22771
+ #
22772
+ # * s3:DeleteObject*
22773
+ #
22774
+ # * s3:GetBucketLocation
22775
+ #
22776
+ # In the policy, include the resources to identify the S3 bucket and
22777
+ # objects in the bucket. The following list of resources shows the
22778
+ # Amazon Resource Name (ARN) format for accessing S3:
22779
+ #
22780
+ # * `arn:aws:s3:::your-s3-bucket `
22781
+ #
22782
+ # * `arn:aws:s3:::your-s3-bucket/*`
22806
22783
  # @return [String]
22807
22784
  #
22808
22785
  # @!attribute [rw] kms_key_id
@@ -23169,7 +23146,7 @@ module Aws::RDS
23169
23146
  # Contains the details about a blue/green deployment.
23170
23147
  #
23171
23148
  # For more information, see [Using Amazon RDS Blue/Green Deployments for
23172
- # database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
23149
+ # database updates][1] in the *Amazon RDS User Guide* and [Using Amazon
23173
23150
  # RDS Blue/Green Deployments for database updates][2] in the *Amazon
23174
23151
  # Aurora User Guide*.
23175
23152
  #
@@ -23193,17 +23170,20 @@ module Aws::RDS
23193
23170
  #
23194
23171
  # Values:
23195
23172
  #
23196
- # * `preparing-for-switchover` - The resource is being prepared to
23197
- # switch over.
23173
+ # * `PROVISIONING` - The resource is being prepared to switch over.
23198
23174
  #
23199
- # * `ready-for-switchover` - The resource is ready to switch over.
23175
+ # * `AVAILABLE` - The resource is ready to switch over.
23200
23176
  #
23201
- # * `switchover-in-progress` - The resource is being switched over.
23177
+ # * `SWITCHOVER_IN_PROGRESS` - The resource is being switched over.
23202
23178
  #
23203
- # * `switchover-completed` - The resource has been switched over.
23179
+ # * `SWITCHOVER_COMPLETED` - The resource has been switched over.
23204
23180
  #
23205
- # * `switchover-failed` - The resource attempted to switch over but
23181
+ # * `SWITCHOVER_FAILED` - The resource attempted to switch over but
23206
23182
  # failed.
23183
+ #
23184
+ # * `MISSING_SOURCE` - The source resource has been deleted.
23185
+ #
23186
+ # * `MISSING_TARGET` - The target resource has been deleted.
23207
23187
  # @return [String]
23208
23188
  #
23209
23189
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverDetail AWS API Documentation
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.172.0'
81
+ GEM_VERSION = '1.173.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.172.0
4
+ version: 1.173.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-02-15 00:00:00.000000000 Z
11
+ date: 2023-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4