aws-sdk-rds 1.140.0 → 1.141.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +123 -113
- data/lib/aws-sdk-rds/db_cluster.rb +81 -13
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +27 -5
- data/lib/aws-sdk-rds/resource.rb +21 -5
- data/lib/aws-sdk-rds/types.rb +121 -83
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e248d47852abad8f0ecfadb7315aea8cef5ecb60291f49ba60fe3abec2a50b85
|
4
|
+
data.tar.gz: 9fb8d954dc5fd35088eb5e1677f83bc83c48e5889b84e04e3cb2b7ab95e1ca99
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6132b869605fc5a3d94f51d84bff179840cf0941f3cb070eb2faae88080f5902f26117689326449c808023248fd67b25e118e7f134b68fa650639b415b22737
|
7
|
+
data.tar.gz: 5c65d20cab700c1125bd4a058f2342d796a94fe9ea666d19056b883a6d306488b63a3250269d72929db4a6dfc2b14d41880ded16911798e36646cec9ab9a5552
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.141.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1099,11 +1099,6 @@ module Aws::RDS
|
|
1099
1099
|
# deployments with two readable standby DB instances][5] in the *Amazon
|
1100
1100
|
# RDS User Guide.*
|
1101
1101
|
#
|
1102
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
1103
|
-
# change.
|
1104
|
-
#
|
1105
|
-
# </note>
|
1106
|
-
#
|
1107
1102
|
#
|
1108
1103
|
#
|
1109
1104
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -2122,11 +2117,6 @@ module Aws::RDS
|
|
2122
2117
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
2123
2118
|
# RDS User Guide.*
|
2124
2119
|
#
|
2125
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
2126
|
-
# change.
|
2127
|
-
#
|
2128
|
-
# </note>
|
2129
|
-
#
|
2130
2120
|
#
|
2131
2121
|
#
|
2132
2122
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -2525,8 +2515,15 @@ module Aws::RDS
|
|
2525
2515
|
# @option params [Array<String>] :enable_cloudwatch_logs_exports
|
2526
2516
|
# The list of log types that need to be enabled for exporting to
|
2527
2517
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
2528
|
-
# used.
|
2529
|
-
#
|
2518
|
+
# used.
|
2519
|
+
#
|
2520
|
+
# **RDS for MySQL**
|
2521
|
+
#
|
2522
|
+
# Possible values are `error`, `general`, and `slowquery`.
|
2523
|
+
#
|
2524
|
+
# **RDS for PostgreSQL**
|
2525
|
+
#
|
2526
|
+
# Possible values are `postgresql` and `upgrade`.
|
2530
2527
|
#
|
2531
2528
|
# **Aurora MySQL**
|
2532
2529
|
#
|
@@ -2536,11 +2533,20 @@ module Aws::RDS
|
|
2536
2533
|
#
|
2537
2534
|
# Possible value is `postgresql`.
|
2538
2535
|
#
|
2539
|
-
#
|
2536
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
2537
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
2538
|
+
# *Amazon Relational Database Service User Guide*.
|
2539
|
+
#
|
2540
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
2541
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
2542
|
+
# the *Amazon Aurora User Guide*.
|
2540
2543
|
#
|
2544
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2541
2545
|
#
|
2542
2546
|
#
|
2543
|
-
#
|
2547
|
+
#
|
2548
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
2549
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
2544
2550
|
#
|
2545
2551
|
# @option params [String] :engine_mode
|
2546
2552
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
@@ -2624,7 +2630,7 @@ module Aws::RDS
|
|
2624
2630
|
# A value that indicates whether to copy all tags from the DB cluster to
|
2625
2631
|
# snapshots of the DB cluster. The default is not to copy them.
|
2626
2632
|
#
|
2627
|
-
# Valid for: Aurora DB clusters
|
2633
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2628
2634
|
#
|
2629
2635
|
# @option params [String] :domain
|
2630
2636
|
# The Active Directory directory ID to create the DB cluster in.
|
@@ -3161,11 +3167,6 @@ module Aws::RDS
|
|
3161
3167
|
# deployments with two readable standby DB instances][3] in the *Amazon
|
3162
3168
|
# RDS User Guide.*
|
3163
3169
|
#
|
3164
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
3165
|
-
# change.
|
3166
|
-
#
|
3167
|
-
# </note>
|
3168
|
-
#
|
3169
3170
|
#
|
3170
3171
|
#
|
3171
3172
|
# [1]: https://console.aws.amazon.com/rds/
|
@@ -3304,11 +3305,6 @@ module Aws::RDS
|
|
3304
3305
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
3305
3306
|
# RDS User Guide.*
|
3306
3307
|
#
|
3307
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
3308
|
-
# change.
|
3309
|
-
#
|
3310
|
-
# </note>
|
3311
|
-
#
|
3312
3308
|
#
|
3313
3309
|
#
|
3314
3310
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -6644,11 +6640,6 @@ module Aws::RDS
|
|
6644
6640
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
6645
6641
|
# RDS User Guide.*
|
6646
6642
|
#
|
6647
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
6648
|
-
# change.
|
6649
|
-
#
|
6650
|
-
# </note>
|
6651
|
-
#
|
6652
6643
|
#
|
6653
6644
|
#
|
6654
6645
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -6900,11 +6891,6 @@ module Aws::RDS
|
|
6900
6891
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
6901
6892
|
# RDS User Guide.*
|
6902
6893
|
#
|
6903
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
6904
|
-
# change.
|
6905
|
-
#
|
6906
|
-
# </note>
|
6907
|
-
#
|
6908
6894
|
#
|
6909
6895
|
#
|
6910
6896
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -6962,11 +6948,6 @@ module Aws::RDS
|
|
6962
6948
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
6963
6949
|
# RDS User Guide.*
|
6964
6950
|
#
|
6965
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
6966
|
-
# change.
|
6967
|
-
#
|
6968
|
-
# </note>
|
6969
|
-
#
|
6970
6951
|
#
|
6971
6952
|
#
|
6972
6953
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -8342,11 +8323,6 @@ module Aws::RDS
|
|
8342
8323
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
8343
8324
|
# RDS User Guide.*
|
8344
8325
|
#
|
8345
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
8346
|
-
# change.
|
8347
|
-
#
|
8348
|
-
# </note>
|
8349
|
-
#
|
8350
8326
|
#
|
8351
8327
|
#
|
8352
8328
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -8444,11 +8420,6 @@ module Aws::RDS
|
|
8444
8420
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
8445
8421
|
# RDS User Guide.*
|
8446
8422
|
#
|
8447
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
8448
|
-
# change.
|
8449
|
-
#
|
8450
|
-
# </note>
|
8451
|
-
#
|
8452
8423
|
#
|
8453
8424
|
#
|
8454
8425
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -8622,11 +8593,6 @@ module Aws::RDS
|
|
8622
8593
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
8623
8594
|
# RDS User Guide.*
|
8624
8595
|
#
|
8625
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
8626
|
-
# change.
|
8627
|
-
#
|
8628
|
-
# </note>
|
8629
|
-
#
|
8630
8596
|
#
|
8631
8597
|
#
|
8632
8598
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -8828,11 +8794,6 @@ module Aws::RDS
|
|
8828
8794
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
8829
8795
|
# RDS User Guide.*
|
8830
8796
|
#
|
8831
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
8832
|
-
# change.
|
8833
|
-
#
|
8834
|
-
# </note>
|
8835
|
-
#
|
8836
8797
|
# This operation can also return information for Amazon Neptune DB
|
8837
8798
|
# instances and Amazon DocumentDB instances.
|
8838
8799
|
#
|
@@ -12613,11 +12574,6 @@ module Aws::RDS
|
|
12613
12574
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
12614
12575
|
# RDS User Guide.*
|
12615
12576
|
#
|
12616
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
12617
|
-
# change.
|
12618
|
-
#
|
12619
|
-
# </note>
|
12620
|
-
#
|
12621
12577
|
#
|
12622
12578
|
#
|
12623
12579
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -13375,11 +13331,6 @@ module Aws::RDS
|
|
13375
13331
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
13376
13332
|
# RDS User Guide.*
|
13377
13333
|
#
|
13378
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
13379
|
-
# change.
|
13380
|
-
#
|
13381
|
-
# </note>
|
13382
|
-
#
|
13383
13334
|
#
|
13384
13335
|
#
|
13385
13336
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -13557,9 +13508,39 @@ module Aws::RDS
|
|
13557
13508
|
#
|
13558
13509
|
# @option params [Types::CloudwatchLogsExportConfiguration] :cloudwatch_logs_export_configuration
|
13559
13510
|
# The configuration setting for the log types to be enabled for export
|
13560
|
-
# to CloudWatch Logs for a specific DB cluster.
|
13511
|
+
# to CloudWatch Logs for a specific DB cluster. The values in the list
|
13512
|
+
# depend on the DB engine being used.
|
13513
|
+
#
|
13514
|
+
# **RDS for MySQL**
|
13515
|
+
#
|
13516
|
+
# Possible values are `error`, `general`, and `slowquery`.
|
13517
|
+
#
|
13518
|
+
# **RDS for PostgreSQL**
|
13519
|
+
#
|
13520
|
+
# Possible values are `postgresql` and `upgrade`.
|
13521
|
+
#
|
13522
|
+
# **Aurora MySQL**
|
13523
|
+
#
|
13524
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
13525
|
+
#
|
13526
|
+
# **Aurora PostgreSQL**
|
13527
|
+
#
|
13528
|
+
# Possible value is `postgresql`.
|
13529
|
+
#
|
13530
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
13531
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
13532
|
+
# *Amazon Relational Database Service User Guide*.
|
13533
|
+
#
|
13534
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
13535
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
13536
|
+
# the *Amazon Aurora User Guide*.
|
13537
|
+
#
|
13538
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13561
13539
|
#
|
13562
|
-
#
|
13540
|
+
#
|
13541
|
+
#
|
13542
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
13543
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
13563
13544
|
#
|
13564
13545
|
# @option params [String] :engine_version
|
13565
13546
|
# The version number of the database engine to which you want to
|
@@ -13688,7 +13669,7 @@ module Aws::RDS
|
|
13688
13669
|
# A value that indicates whether to copy all tags from the DB cluster to
|
13689
13670
|
# snapshots of the DB cluster. The default is not to copy them.
|
13690
13671
|
#
|
13691
|
-
# Valid for: Aurora DB clusters
|
13672
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
13692
13673
|
#
|
13693
13674
|
# @option params [Boolean] :enable_global_write_forwarding
|
13694
13675
|
# A value that indicates whether to enable this DB cluster to forward
|
@@ -14110,11 +14091,6 @@ module Aws::RDS
|
|
14110
14091
|
# deployments with two readable standby DB instances][3] in the *Amazon
|
14111
14092
|
# RDS User Guide.*
|
14112
14093
|
#
|
14113
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
14114
|
-
# change.
|
14115
|
-
#
|
14116
|
-
# </note>
|
14117
|
-
#
|
14118
14094
|
#
|
14119
14095
|
#
|
14120
14096
|
# [1]: https://console.aws.amazon.com/rds/
|
@@ -16800,8 +16776,7 @@ module Aws::RDS
|
|
16800
16776
|
# a DB cluster results in a momentary outage, during which the DB
|
16801
16777
|
# cluster status is set to rebooting.
|
16802
16778
|
#
|
16803
|
-
# Use this operation only for a non-Aurora Multi-AZ DB cluster.
|
16804
|
-
# Multi-AZ DB clusters feature is in preview and is subject to change.
|
16779
|
+
# Use this operation only for a non-Aurora Multi-AZ DB cluster.
|
16805
16780
|
#
|
16806
16781
|
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
16807
16782
|
# deployments with two readable standby DB instances][1] in the *Amazon
|
@@ -17273,11 +17248,6 @@ module Aws::RDS
|
|
17273
17248
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
17274
17249
|
# RDS User Guide.*
|
17275
17250
|
#
|
17276
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
17277
|
-
# change.
|
17278
|
-
#
|
17279
|
-
# </note>
|
17280
|
-
#
|
17281
17251
|
#
|
17282
17252
|
#
|
17283
17253
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -17484,11 +17454,6 @@ module Aws::RDS
|
|
17484
17454
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
17485
17455
|
# RDS User Guide.*
|
17486
17456
|
#
|
17487
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
17488
|
-
# change.
|
17489
|
-
#
|
17490
|
-
# </note>
|
17491
|
-
#
|
17492
17457
|
#
|
17493
17458
|
#
|
17494
17459
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -17952,8 +17917,19 @@ module Aws::RDS
|
|
17952
17917
|
# @option params [Array<String>] :enable_cloudwatch_logs_exports
|
17953
17918
|
# The list of logs that the restored DB cluster is to export to
|
17954
17919
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
17955
|
-
# used.
|
17956
|
-
#
|
17920
|
+
# used.
|
17921
|
+
#
|
17922
|
+
# **Aurora MySQL**
|
17923
|
+
#
|
17924
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
17925
|
+
#
|
17926
|
+
# **Aurora PostgreSQL**
|
17927
|
+
#
|
17928
|
+
# Possible value is `postgresql`.
|
17929
|
+
#
|
17930
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
17931
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][1] in
|
17932
|
+
# the *Amazon Aurora User Guide*.
|
17957
17933
|
#
|
17958
17934
|
#
|
17959
17935
|
#
|
@@ -18165,11 +18141,6 @@ module Aws::RDS
|
|
18165
18141
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
18166
18142
|
# RDS User Guide.*
|
18167
18143
|
#
|
18168
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
18169
|
-
# change.
|
18170
|
-
#
|
18171
|
-
# </note>
|
18172
|
-
#
|
18173
18144
|
#
|
18174
18145
|
#
|
18175
18146
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -18382,14 +18353,36 @@ module Aws::RDS
|
|
18382
18353
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
18383
18354
|
# used.
|
18384
18355
|
#
|
18385
|
-
#
|
18386
|
-
# CloudWatch Logs ][1] in the *Amazon Aurora User Guide*.
|
18356
|
+
# **RDS for MySQL**
|
18387
18357
|
#
|
18388
|
-
#
|
18358
|
+
# Possible values are `error`, `general`, and `slowquery`.
|
18389
18359
|
#
|
18360
|
+
# **RDS for PostgreSQL**
|
18390
18361
|
#
|
18362
|
+
# Possible values are `postgresql` and `upgrade`.
|
18391
18363
|
#
|
18392
|
-
#
|
18364
|
+
# **Aurora MySQL**
|
18365
|
+
#
|
18366
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
18367
|
+
#
|
18368
|
+
# **Aurora PostgreSQL**
|
18369
|
+
#
|
18370
|
+
# Possible value is `postgresql`.
|
18371
|
+
#
|
18372
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
18373
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
18374
|
+
# *Amazon Relational Database Service User Guide*.
|
18375
|
+
#
|
18376
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
18377
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
18378
|
+
# the *Amazon Aurora User Guide*.
|
18379
|
+
#
|
18380
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18381
|
+
#
|
18382
|
+
#
|
18383
|
+
#
|
18384
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
18385
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
18393
18386
|
#
|
18394
18387
|
# @option params [String] :engine_mode
|
18395
18388
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
@@ -18439,7 +18432,7 @@ module Aws::RDS
|
|
18439
18432
|
# cluster to snapshots of the restored DB cluster. The default is not to
|
18440
18433
|
# copy them.
|
18441
18434
|
#
|
18442
|
-
# Valid for: Aurora DB clusters
|
18435
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18443
18436
|
#
|
18444
18437
|
# @option params [String] :domain
|
18445
18438
|
# Specify the Active Directory directory ID to restore the DB cluster
|
@@ -18744,11 +18737,6 @@ module Aws::RDS
|
|
18744
18737
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
18745
18738
|
# RDS User Guide.*
|
18746
18739
|
#
|
18747
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
18748
|
-
# change.
|
18749
|
-
#
|
18750
|
-
# </note>
|
18751
|
-
#
|
18752
18740
|
#
|
18753
18741
|
#
|
18754
18742
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -18930,14 +18918,36 @@ module Aws::RDS
|
|
18930
18918
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
18931
18919
|
# used.
|
18932
18920
|
#
|
18933
|
-
#
|
18934
|
-
# CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
18921
|
+
# **RDS for MySQL**
|
18935
18922
|
#
|
18936
|
-
#
|
18923
|
+
# Possible values are `error`, `general`, and `slowquery`.
|
18937
18924
|
#
|
18925
|
+
# **RDS for PostgreSQL**
|
18938
18926
|
#
|
18927
|
+
# Possible values are `postgresql` and `upgrade`.
|
18939
18928
|
#
|
18940
|
-
#
|
18929
|
+
# **Aurora MySQL**
|
18930
|
+
#
|
18931
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
18932
|
+
#
|
18933
|
+
# **Aurora PostgreSQL**
|
18934
|
+
#
|
18935
|
+
# Possible value is `postgresql`.
|
18936
|
+
#
|
18937
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
18938
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
18939
|
+
# *Amazon Relational Database Service User Guide*.
|
18940
|
+
#
|
18941
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
18942
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
18943
|
+
# the *Amazon Aurora User Guide*.
|
18944
|
+
#
|
18945
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18946
|
+
#
|
18947
|
+
#
|
18948
|
+
#
|
18949
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
18950
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
18941
18951
|
#
|
18942
18952
|
# @option params [String] :db_cluster_parameter_group_name
|
18943
18953
|
# The name of the DB cluster parameter group to associate with this DB
|
@@ -18969,7 +18979,7 @@ module Aws::RDS
|
|
18969
18979
|
# cluster to snapshots of the restored DB cluster. The default is not to
|
18970
18980
|
# copy them.
|
18971
18981
|
#
|
18972
|
-
# Valid for: Aurora DB clusters
|
18982
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18973
18983
|
#
|
18974
18984
|
# @option params [String] :domain
|
18975
18985
|
# Specify the Active Directory directory ID to restore the DB cluster
|
@@ -22434,7 +22444,7 @@ module Aws::RDS
|
|
22434
22444
|
params: params,
|
22435
22445
|
config: config)
|
22436
22446
|
context[:gem_name] = 'aws-sdk-rds'
|
22437
|
-
context[:gem_version] = '1.
|
22447
|
+
context[:gem_version] = '1.141.0'
|
22438
22448
|
Seahorse::Client::Request.new(handlers, context)
|
22439
22449
|
end
|
22440
22450
|
|
@@ -1138,8 +1138,15 @@ module Aws::RDS
|
|
1138
1138
|
# @option options [Array<String>] :enable_cloudwatch_logs_exports
|
1139
1139
|
# The list of log types that need to be enabled for exporting to
|
1140
1140
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
1141
|
-
# used.
|
1142
|
-
#
|
1141
|
+
# used.
|
1142
|
+
#
|
1143
|
+
# **RDS for MySQL**
|
1144
|
+
#
|
1145
|
+
# Possible values are `error`, `general`, and `slowquery`.
|
1146
|
+
#
|
1147
|
+
# **RDS for PostgreSQL**
|
1148
|
+
#
|
1149
|
+
# Possible values are `postgresql` and `upgrade`.
|
1143
1150
|
#
|
1144
1151
|
# **Aurora MySQL**
|
1145
1152
|
#
|
@@ -1149,11 +1156,20 @@ module Aws::RDS
|
|
1149
1156
|
#
|
1150
1157
|
# Possible value is `postgresql`.
|
1151
1158
|
#
|
1152
|
-
#
|
1159
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
1160
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
1161
|
+
# *Amazon Relational Database Service User Guide*.
|
1153
1162
|
#
|
1163
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
1164
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
1165
|
+
# the *Amazon Aurora User Guide*.
|
1154
1166
|
#
|
1167
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
1155
1168
|
#
|
1156
|
-
#
|
1169
|
+
#
|
1170
|
+
#
|
1171
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
1172
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
1157
1173
|
# @option options [String] :engine_mode
|
1158
1174
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
1159
1175
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
@@ -1231,7 +1247,7 @@ module Aws::RDS
|
|
1231
1247
|
# A value that indicates whether to copy all tags from the DB cluster to
|
1232
1248
|
# snapshots of the DB cluster. The default is not to copy them.
|
1233
1249
|
#
|
1234
|
-
# Valid for: Aurora DB clusters
|
1250
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
1235
1251
|
# @option options [String] :domain
|
1236
1252
|
# The Active Directory directory ID to create the DB cluster in.
|
1237
1253
|
#
|
@@ -1743,9 +1759,39 @@ module Aws::RDS
|
|
1743
1759
|
# Valid for: Aurora MySQL DB clusters only
|
1744
1760
|
# @option options [Types::CloudwatchLogsExportConfiguration] :cloudwatch_logs_export_configuration
|
1745
1761
|
# The configuration setting for the log types to be enabled for export
|
1746
|
-
# to CloudWatch Logs for a specific DB cluster.
|
1762
|
+
# to CloudWatch Logs for a specific DB cluster. The values in the list
|
1763
|
+
# depend on the DB engine being used.
|
1747
1764
|
#
|
1748
|
-
#
|
1765
|
+
# **RDS for MySQL**
|
1766
|
+
#
|
1767
|
+
# Possible values are `error`, `general`, and `slowquery`.
|
1768
|
+
#
|
1769
|
+
# **RDS for PostgreSQL**
|
1770
|
+
#
|
1771
|
+
# Possible values are `postgresql` and `upgrade`.
|
1772
|
+
#
|
1773
|
+
# **Aurora MySQL**
|
1774
|
+
#
|
1775
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
1776
|
+
#
|
1777
|
+
# **Aurora PostgreSQL**
|
1778
|
+
#
|
1779
|
+
# Possible value is `postgresql`.
|
1780
|
+
#
|
1781
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
1782
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
1783
|
+
# *Amazon Relational Database Service User Guide*.
|
1784
|
+
#
|
1785
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
1786
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
1787
|
+
# the *Amazon Aurora User Guide*.
|
1788
|
+
#
|
1789
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
1790
|
+
#
|
1791
|
+
#
|
1792
|
+
#
|
1793
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
1794
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
1749
1795
|
# @option options [String] :engine_version
|
1750
1796
|
# The version number of the database engine to which you want to
|
1751
1797
|
# upgrade. Changing this parameter results in an outage. The change is
|
@@ -1865,7 +1911,7 @@ module Aws::RDS
|
|
1865
1911
|
# A value that indicates whether to copy all tags from the DB cluster to
|
1866
1912
|
# snapshots of the DB cluster. The default is not to copy them.
|
1867
1913
|
#
|
1868
|
-
# Valid for: Aurora DB clusters
|
1914
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
1869
1915
|
# @option options [Boolean] :enable_global_write_forwarding
|
1870
1916
|
# A value that indicates whether to enable this DB cluster to forward
|
1871
1917
|
# write operations to the primary cluster of an Aurora global database
|
@@ -2197,14 +2243,36 @@ module Aws::RDS
|
|
2197
2243
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
2198
2244
|
# used.
|
2199
2245
|
#
|
2200
|
-
#
|
2201
|
-
# CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
2246
|
+
# **RDS for MySQL**
|
2202
2247
|
#
|
2203
|
-
#
|
2248
|
+
# Possible values are `error`, `general`, and `slowquery`.
|
2249
|
+
#
|
2250
|
+
# **RDS for PostgreSQL**
|
2251
|
+
#
|
2252
|
+
# Possible values are `postgresql` and `upgrade`.
|
2253
|
+
#
|
2254
|
+
# **Aurora MySQL**
|
2204
2255
|
#
|
2256
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
2257
|
+
#
|
2258
|
+
# **Aurora PostgreSQL**
|
2259
|
+
#
|
2260
|
+
# Possible value is `postgresql`.
|
2261
|
+
#
|
2262
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
2263
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
2264
|
+
# *Amazon Relational Database Service User Guide*.
|
2205
2265
|
#
|
2266
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
2267
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
2268
|
+
# the *Amazon Aurora User Guide*.
|
2206
2269
|
#
|
2207
|
-
#
|
2270
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2271
|
+
#
|
2272
|
+
#
|
2273
|
+
#
|
2274
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
2275
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
2208
2276
|
# @option options [String] :db_cluster_parameter_group_name
|
2209
2277
|
# The name of the DB cluster parameter group to associate with this DB
|
2210
2278
|
# cluster. If this argument is omitted, the default DB cluster parameter
|
@@ -2233,7 +2301,7 @@ module Aws::RDS
|
|
2233
2301
|
# cluster to snapshots of the restored DB cluster. The default is not to
|
2234
2302
|
# copy them.
|
2235
2303
|
#
|
2236
|
-
# Valid for: Aurora DB clusters
|
2304
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2237
2305
|
# @option options [String] :domain
|
2238
2306
|
# Specify the Active Directory directory ID to restore the DB cluster
|
2239
2307
|
# in. The domain must be created prior to this operation.
|
@@ -721,14 +721,36 @@ module Aws::RDS
|
|
721
721
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
722
722
|
# used.
|
723
723
|
#
|
724
|
-
#
|
725
|
-
# CloudWatch Logs ][1] in the *Amazon Aurora User Guide*.
|
724
|
+
# **RDS for MySQL**
|
726
725
|
#
|
727
|
-
#
|
726
|
+
# Possible values are `error`, `general`, and `slowquery`.
|
727
|
+
#
|
728
|
+
# **RDS for PostgreSQL**
|
729
|
+
#
|
730
|
+
# Possible values are `postgresql` and `upgrade`.
|
731
|
+
#
|
732
|
+
# **Aurora MySQL**
|
733
|
+
#
|
734
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
735
|
+
#
|
736
|
+
# **Aurora PostgreSQL**
|
728
737
|
#
|
738
|
+
# Possible value is `postgresql`.
|
729
739
|
#
|
740
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
741
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
742
|
+
# *Amazon Relational Database Service User Guide*.
|
730
743
|
#
|
731
|
-
#
|
744
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
745
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
746
|
+
# the *Amazon Aurora User Guide*.
|
747
|
+
#
|
748
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
749
|
+
#
|
750
|
+
#
|
751
|
+
#
|
752
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
753
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
732
754
|
# @option options [String] :engine_mode
|
733
755
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
734
756
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
@@ -773,7 +795,7 @@ module Aws::RDS
|
|
773
795
|
# cluster to snapshots of the restored DB cluster. The default is not to
|
774
796
|
# copy them.
|
775
797
|
#
|
776
|
-
# Valid for: Aurora DB clusters
|
798
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
777
799
|
# @option options [String] :domain
|
778
800
|
# Specify the Active Directory directory ID to restore the DB cluster
|
779
801
|
# in. The domain must be created prior to this operation. Currently,
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -467,8 +467,15 @@ module Aws::RDS
|
|
467
467
|
# @option options [Array<String>] :enable_cloudwatch_logs_exports
|
468
468
|
# The list of log types that need to be enabled for exporting to
|
469
469
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
470
|
-
# used.
|
471
|
-
#
|
470
|
+
# used.
|
471
|
+
#
|
472
|
+
# **RDS for MySQL**
|
473
|
+
#
|
474
|
+
# Possible values are `error`, `general`, and `slowquery`.
|
475
|
+
#
|
476
|
+
# **RDS for PostgreSQL**
|
477
|
+
#
|
478
|
+
# Possible values are `postgresql` and `upgrade`.
|
472
479
|
#
|
473
480
|
# **Aurora MySQL**
|
474
481
|
#
|
@@ -478,11 +485,20 @@ module Aws::RDS
|
|
478
485
|
#
|
479
486
|
# Possible value is `postgresql`.
|
480
487
|
#
|
481
|
-
#
|
488
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
489
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
490
|
+
# *Amazon Relational Database Service User Guide*.
|
491
|
+
#
|
492
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
493
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
494
|
+
# the *Amazon Aurora User Guide*.
|
495
|
+
#
|
496
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
482
497
|
#
|
483
498
|
#
|
484
499
|
#
|
485
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
500
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
501
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
486
502
|
# @option options [String] :engine_mode
|
487
503
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
488
504
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
@@ -560,7 +576,7 @@ module Aws::RDS
|
|
560
576
|
# A value that indicates whether to copy all tags from the DB cluster to
|
561
577
|
# snapshots of the DB cluster. The default is not to copy them.
|
562
578
|
#
|
563
|
-
# Valid for: Aurora DB clusters
|
579
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
564
580
|
# @option options [String] :domain
|
565
581
|
# The Active Directory directory ID to create the DB cluster in.
|
566
582
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2346,8 +2346,15 @@ module Aws::RDS
|
|
2346
2346
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
2347
2347
|
# The list of log types that need to be enabled for exporting to
|
2348
2348
|
# CloudWatch Logs. The values in the list depend on the DB engine
|
2349
|
-
# being used.
|
2350
|
-
#
|
2349
|
+
# being used.
|
2350
|
+
#
|
2351
|
+
# **RDS for MySQL**
|
2352
|
+
#
|
2353
|
+
# Possible values are `error`, `general`, and `slowquery`.
|
2354
|
+
#
|
2355
|
+
# **RDS for PostgreSQL**
|
2356
|
+
#
|
2357
|
+
# Possible values are `postgresql` and `upgrade`.
|
2351
2358
|
#
|
2352
2359
|
# **Aurora MySQL**
|
2353
2360
|
#
|
@@ -2357,11 +2364,20 @@ module Aws::RDS
|
|
2357
2364
|
#
|
2358
2365
|
# Possible value is `postgresql`.
|
2359
2366
|
#
|
2360
|
-
#
|
2367
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
2368
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
2369
|
+
# *Amazon Relational Database Service User Guide*.
|
2370
|
+
#
|
2371
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
2372
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
2373
|
+
# in the *Amazon Aurora User Guide*.
|
2361
2374
|
#
|
2375
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2362
2376
|
#
|
2363
2377
|
#
|
2364
|
-
#
|
2378
|
+
#
|
2379
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
2380
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
2365
2381
|
# @return [Array<String>]
|
2366
2382
|
#
|
2367
2383
|
# @!attribute [rw] engine_mode
|
@@ -2452,7 +2468,7 @@ module Aws::RDS
|
|
2452
2468
|
# A value that indicates whether to copy all tags from the DB cluster
|
2453
2469
|
# to snapshots of the DB cluster. The default is not to copy them.
|
2454
2470
|
#
|
2455
|
-
# Valid for: Aurora DB clusters
|
2471
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2456
2472
|
# @return [Boolean]
|
2457
2473
|
#
|
2458
2474
|
# @!attribute [rw] domain
|
@@ -2871,11 +2887,6 @@ module Aws::RDS
|
|
2871
2887
|
# deployments with two readable standby DB instances][2] in the
|
2872
2888
|
# *Amazon RDS User Guide.*
|
2873
2889
|
#
|
2874
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
2875
|
-
# change.
|
2876
|
-
#
|
2877
|
-
# </note>
|
2878
|
-
#
|
2879
2890
|
#
|
2880
2891
|
#
|
2881
2892
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -5774,11 +5785,6 @@ module Aws::RDS
|
|
5774
5785
|
# deployments with two readable standby DB instances][2] in the *Amazon
|
5775
5786
|
# RDS User Guide.*
|
5776
5787
|
#
|
5777
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
5778
|
-
# change.
|
5779
|
-
#
|
5780
|
-
# </note>
|
5781
|
-
#
|
5782
5788
|
#
|
5783
5789
|
#
|
5784
5790
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -9470,11 +9476,6 @@ module Aws::RDS
|
|
9470
9476
|
# deployments with two readable standby DB instances][2] in the
|
9471
9477
|
# *Amazon RDS User Guide.*
|
9472
9478
|
#
|
9473
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
9474
|
-
# change.
|
9475
|
-
#
|
9476
|
-
# </note>
|
9477
|
-
#
|
9478
9479
|
#
|
9479
9480
|
#
|
9480
9481
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -13812,11 +13813,6 @@ module Aws::RDS
|
|
13812
13813
|
# deployments with two readable standby DB instances][2] in the
|
13813
13814
|
# *Amazon RDS User Guide.*
|
13814
13815
|
#
|
13815
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
13816
|
-
# change.
|
13817
|
-
#
|
13818
|
-
# </note>
|
13819
|
-
#
|
13820
13816
|
#
|
13821
13817
|
#
|
13822
13818
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -15055,9 +15051,39 @@ module Aws::RDS
|
|
15055
15051
|
#
|
15056
15052
|
# @!attribute [rw] cloudwatch_logs_export_configuration
|
15057
15053
|
# The configuration setting for the log types to be enabled for export
|
15058
|
-
# to CloudWatch Logs for a specific DB cluster.
|
15054
|
+
# to CloudWatch Logs for a specific DB cluster. The values in the list
|
15055
|
+
# depend on the DB engine being used.
|
15059
15056
|
#
|
15060
|
-
#
|
15057
|
+
# **RDS for MySQL**
|
15058
|
+
#
|
15059
|
+
# Possible values are `error`, `general`, and `slowquery`.
|
15060
|
+
#
|
15061
|
+
# **RDS for PostgreSQL**
|
15062
|
+
#
|
15063
|
+
# Possible values are `postgresql` and `upgrade`.
|
15064
|
+
#
|
15065
|
+
# **Aurora MySQL**
|
15066
|
+
#
|
15067
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
15068
|
+
#
|
15069
|
+
# **Aurora PostgreSQL**
|
15070
|
+
#
|
15071
|
+
# Possible value is `postgresql`.
|
15072
|
+
#
|
15073
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
15074
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
15075
|
+
# *Amazon Relational Database Service User Guide*.
|
15076
|
+
#
|
15077
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
15078
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
15079
|
+
# in the *Amazon Aurora User Guide*.
|
15080
|
+
#
|
15081
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
15082
|
+
#
|
15083
|
+
#
|
15084
|
+
#
|
15085
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
15086
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
15061
15087
|
# @return [Types::CloudwatchLogsExportConfiguration]
|
15062
15088
|
#
|
15063
15089
|
# @!attribute [rw] engine_version
|
@@ -15197,7 +15223,7 @@ module Aws::RDS
|
|
15197
15223
|
# A value that indicates whether to copy all tags from the DB cluster
|
15198
15224
|
# to snapshots of the DB cluster. The default is not to copy them.
|
15199
15225
|
#
|
15200
|
-
# Valid for: Aurora DB clusters
|
15226
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
15201
15227
|
# @return [Boolean]
|
15202
15228
|
#
|
15203
15229
|
# @!attribute [rw] enable_global_write_forwarding
|
@@ -15470,11 +15496,6 @@ module Aws::RDS
|
|
15470
15496
|
# deployments with two readable standby DB instances][2] in the
|
15471
15497
|
# *Amazon RDS User Guide.*
|
15472
15498
|
#
|
15473
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
15474
|
-
# change.
|
15475
|
-
#
|
15476
|
-
# </note>
|
15477
|
-
#
|
15478
15499
|
#
|
15479
15500
|
#
|
15480
15501
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -17946,9 +17967,6 @@ module Aws::RDS
|
|
17946
17967
|
# @!attribute [rw] supports_clusters
|
17947
17968
|
# Whether DB instances can be configured as a Multi-AZ DB cluster.
|
17948
17969
|
#
|
17949
|
-
# The Multi-AZ DB clusters feature is in preview and is subject to
|
17950
|
-
# change.
|
17951
|
-
#
|
17952
17970
|
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
17953
17971
|
# deployments with two readable standby DB instances][1] in the
|
17954
17972
|
# *Amazon RDS User Guide.*
|
@@ -18479,11 +18497,6 @@ module Aws::RDS
|
|
18479
18497
|
# deployments with two readable standby DB instances][2] in the
|
18480
18498
|
# *Amazon RDS User Guide.*
|
18481
18499
|
#
|
18482
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
18483
|
-
# change.
|
18484
|
-
#
|
18485
|
-
# </note>
|
18486
|
-
#
|
18487
18500
|
#
|
18488
18501
|
#
|
18489
18502
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -18742,11 +18755,6 @@ module Aws::RDS
|
|
18742
18755
|
# deployments with two readable standby DB instances][2] in the
|
18743
18756
|
# *Amazon RDS User Guide.*
|
18744
18757
|
#
|
18745
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
18746
|
-
# change.
|
18747
|
-
#
|
18748
|
-
# </note>
|
18749
|
-
#
|
18750
18758
|
#
|
18751
18759
|
#
|
18752
18760
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -19777,8 +19785,19 @@ module Aws::RDS
|
|
19777
19785
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
19778
19786
|
# The list of logs that the restored DB cluster is to export to
|
19779
19787
|
# CloudWatch Logs. The values in the list depend on the DB engine
|
19780
|
-
# being used.
|
19781
|
-
#
|
19788
|
+
# being used.
|
19789
|
+
#
|
19790
|
+
# **Aurora MySQL**
|
19791
|
+
#
|
19792
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
19793
|
+
#
|
19794
|
+
# **Aurora PostgreSQL**
|
19795
|
+
#
|
19796
|
+
# Possible value is `postgresql`.
|
19797
|
+
#
|
19798
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
19799
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][1]
|
19800
|
+
# in the *Amazon Aurora User Guide*.
|
19782
19801
|
#
|
19783
19802
|
#
|
19784
19803
|
#
|
@@ -19880,11 +19899,6 @@ module Aws::RDS
|
|
19880
19899
|
# deployments with two readable standby DB instances][2] in the
|
19881
19900
|
# *Amazon RDS User Guide.*
|
19882
19901
|
#
|
19883
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
19884
|
-
# change.
|
19885
|
-
#
|
19886
|
-
# </note>
|
19887
|
-
#
|
19888
19902
|
#
|
19889
19903
|
#
|
19890
19904
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -20168,14 +20182,36 @@ module Aws::RDS
|
|
20168
20182
|
# CloudWatch Logs. The values in the list depend on the DB engine
|
20169
20183
|
# being used.
|
20170
20184
|
#
|
20171
|
-
#
|
20172
|
-
# CloudWatch Logs ][1] in the *Amazon Aurora User Guide*.
|
20185
|
+
# **RDS for MySQL**
|
20173
20186
|
#
|
20174
|
-
#
|
20187
|
+
# Possible values are `error`, `general`, and `slowquery`.
|
20175
20188
|
#
|
20189
|
+
# **RDS for PostgreSQL**
|
20176
20190
|
#
|
20191
|
+
# Possible values are `postgresql` and `upgrade`.
|
20177
20192
|
#
|
20178
|
-
#
|
20193
|
+
# **Aurora MySQL**
|
20194
|
+
#
|
20195
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
20196
|
+
#
|
20197
|
+
# **Aurora PostgreSQL**
|
20198
|
+
#
|
20199
|
+
# Possible value is `postgresql`.
|
20200
|
+
#
|
20201
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
20202
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
20203
|
+
# *Amazon Relational Database Service User Guide*.
|
20204
|
+
#
|
20205
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
20206
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
20207
|
+
# in the *Amazon Aurora User Guide*.
|
20208
|
+
#
|
20209
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
20210
|
+
#
|
20211
|
+
#
|
20212
|
+
#
|
20213
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
20214
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
20179
20215
|
# @return [Array<String>]
|
20180
20216
|
#
|
20181
20217
|
# @!attribute [rw] engine_mode
|
@@ -20231,7 +20267,7 @@ module Aws::RDS
|
|
20231
20267
|
# cluster to snapshots of the restored DB cluster. The default is not
|
20232
20268
|
# to copy them.
|
20233
20269
|
#
|
20234
|
-
# Valid for: Aurora DB clusters
|
20270
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
20235
20271
|
# @return [Boolean]
|
20236
20272
|
#
|
20237
20273
|
# @!attribute [rw] domain
|
@@ -20402,11 +20438,6 @@ module Aws::RDS
|
|
20402
20438
|
# deployments with two readable standby DB instances][2] in the
|
20403
20439
|
# *Amazon RDS User Guide.*
|
20404
20440
|
#
|
20405
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
20406
|
-
# change.
|
20407
|
-
#
|
20408
|
-
# </note>
|
20409
|
-
#
|
20410
20441
|
#
|
20411
20442
|
#
|
20412
20443
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -20653,14 +20684,36 @@ module Aws::RDS
|
|
20653
20684
|
# CloudWatch Logs. The values in the list depend on the DB engine
|
20654
20685
|
# being used.
|
20655
20686
|
#
|
20656
|
-
#
|
20657
|
-
# CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
20687
|
+
# **RDS for MySQL**
|
20658
20688
|
#
|
20659
|
-
#
|
20689
|
+
# Possible values are `error`, `general`, and `slowquery`.
|
20660
20690
|
#
|
20691
|
+
# **RDS for PostgreSQL**
|
20661
20692
|
#
|
20693
|
+
# Possible values are `postgresql` and `upgrade`.
|
20662
20694
|
#
|
20663
|
-
#
|
20695
|
+
# **Aurora MySQL**
|
20696
|
+
#
|
20697
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
20698
|
+
#
|
20699
|
+
# **Aurora PostgreSQL**
|
20700
|
+
#
|
20701
|
+
# Possible value is `postgresql`.
|
20702
|
+
#
|
20703
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
20704
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
20705
|
+
# *Amazon Relational Database Service User Guide*.
|
20706
|
+
#
|
20707
|
+
# For more information about exporting CloudWatch Logs for Amazon
|
20708
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
20709
|
+
# in the *Amazon Aurora User Guide*.
|
20710
|
+
#
|
20711
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
20712
|
+
#
|
20713
|
+
#
|
20714
|
+
#
|
20715
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
20716
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
20664
20717
|
# @return [Array<String>]
|
20665
20718
|
#
|
20666
20719
|
# @!attribute [rw] db_cluster_parameter_group_name
|
@@ -20696,7 +20749,7 @@ module Aws::RDS
|
|
20696
20749
|
# cluster to snapshots of the restored DB cluster. The default is not
|
20697
20750
|
# to copy them.
|
20698
20751
|
#
|
20699
|
-
# Valid for: Aurora DB clusters
|
20752
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
20700
20753
|
# @return [Boolean]
|
20701
20754
|
#
|
20702
20755
|
# @!attribute [rw] domain
|
@@ -20885,11 +20938,6 @@ module Aws::RDS
|
|
20885
20938
|
# deployments with two readable standby DB instances][2] in the
|
20886
20939
|
# *Amazon RDS User Guide.*
|
20887
20940
|
#
|
20888
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
20889
|
-
# change.
|
20890
|
-
#
|
20891
|
-
# </note>
|
20892
|
-
#
|
20893
20941
|
#
|
20894
20942
|
#
|
20895
20943
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -23034,11 +23082,6 @@ module Aws::RDS
|
|
23034
23082
|
# deployments with two readable standby DB instances][2] in the
|
23035
23083
|
# *Amazon RDS User Guide.*
|
23036
23084
|
#
|
23037
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
23038
|
-
# change.
|
23039
|
-
#
|
23040
|
-
# </note>
|
23041
|
-
#
|
23042
23085
|
#
|
23043
23086
|
#
|
23044
23087
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -23362,11 +23405,6 @@ module Aws::RDS
|
|
23362
23405
|
# deployments with two readable standby DB instances][2] in the
|
23363
23406
|
# *Amazon RDS User Guide.*
|
23364
23407
|
#
|
23365
|
-
# <note markdown="1"> The Multi-AZ DB clusters feature is in preview and is subject to
|
23366
|
-
# change.
|
23367
|
-
#
|
23368
|
-
# </note>
|
23369
|
-
#
|
23370
23408
|
#
|
23371
23409
|
#
|
23372
23410
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
data/lib/aws-sdk-rds.rb
CHANGED
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.
|
4
|
+
version: 1.141.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: 2022-
|
11
|
+
date: 2022-03-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|