aws-sdk-rds 1.252.0 → 1.262.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 +50 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +320 -54
- data/lib/aws-sdk-rds/client_api.rb +39 -0
- data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +16 -14
- data/lib/aws-sdk-rds/db_cluster.rb +104 -19
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +60 -4
- data/lib/aws-sdk-rds/db_engine.rb +0 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +11 -0
- data/lib/aws-sdk-rds/db_instance.rb +18 -2
- data/lib/aws-sdk-rds/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-rds/endpoints.rb +2 -1780
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/plugins/endpoints.rb +1 -330
- data/lib/aws-sdk-rds/resource.rb +21 -7
- data/lib/aws-sdk-rds/types.rb +401 -60
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +34 -6
- data/sig/db_cluster.rbs +16 -3
- data/sig/db_cluster_snapshot.rbs +7 -1
- data/sig/db_engine_version.rbs +3 -0
- data/sig/db_instance.rbs +6 -0
- data/sig/errors.rbs +2 -0
- data/sig/resource.rbs +4 -1
- data/sig/types.rbs +35 -0
- metadata +4 -4
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -725,8 +725,25 @@ module Aws::RDS
|
|
725
725
|
# @option params [required, String] :apply_action
|
726
726
|
# The pending maintenance action to apply to this resource.
|
727
727
|
#
|
728
|
-
# Valid Values:
|
729
|
-
#
|
728
|
+
# Valid Values:
|
729
|
+
#
|
730
|
+
# * `ca-certificate-rotation`
|
731
|
+
#
|
732
|
+
# * `db-upgrade`
|
733
|
+
#
|
734
|
+
# * `hardware-maintenance`
|
735
|
+
#
|
736
|
+
# * `os-upgrade`
|
737
|
+
#
|
738
|
+
# * `system-update`
|
739
|
+
#
|
740
|
+
# For more information about these actions, see [Maintenance actions for
|
741
|
+
# Amazon Aurora][1] or [Maintenance actions for Amazon RDS][2].
|
742
|
+
#
|
743
|
+
#
|
744
|
+
#
|
745
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-aurora
|
746
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-rds
|
730
747
|
#
|
731
748
|
# @option params [required, String] :opt_in_type
|
732
749
|
# A value that specifies the type of opt-in request, or undoes an opt-in
|
@@ -2058,9 +2075,8 @@ module Aws::RDS
|
|
2058
2075
|
# A blue/green deployment creates a staging environment that copies the
|
2059
2076
|
# production environment. In a blue/green deployment, the blue
|
2060
2077
|
# environment is the current production environment. The green
|
2061
|
-
# environment is the staging environment
|
2062
|
-
#
|
2063
|
-
# replication.
|
2078
|
+
# environment is the staging environment, and it stays in sync with the
|
2079
|
+
# current production environment.
|
2064
2080
|
#
|
2065
2081
|
# You can make changes to the databases in the green environment without
|
2066
2082
|
# affecting production workloads. For example, you can upgrade the major
|
@@ -2143,6 +2159,39 @@ module Aws::RDS
|
|
2143
2159
|
#
|
2144
2160
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
2145
2161
|
#
|
2162
|
+
# @option params [Integer] :target_iops
|
2163
|
+
# The amount of Provisioned IOPS (input/output operations per second) to
|
2164
|
+
# allocate for the green DB instance. For information about valid IOPS
|
2165
|
+
# values, see [Amazon RDS DB instance storage][1] in the *Amazon RDS
|
2166
|
+
# User Guide*.
|
2167
|
+
#
|
2168
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
2169
|
+
#
|
2170
|
+
#
|
2171
|
+
#
|
2172
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
2173
|
+
#
|
2174
|
+
# @option params [String] :target_storage_type
|
2175
|
+
# The storage type to associate with the green DB instance.
|
2176
|
+
#
|
2177
|
+
# Valid Values: `gp2 | gp3 | io1 | io2`
|
2178
|
+
#
|
2179
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
2180
|
+
#
|
2181
|
+
# @option params [Integer] :target_allocated_storage
|
2182
|
+
# The amount of storage in gibibytes (GiB) to allocate for the green DB
|
2183
|
+
# instance. You can choose to increase or decrease the allocated storage
|
2184
|
+
# on the green DB instance.
|
2185
|
+
#
|
2186
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
2187
|
+
#
|
2188
|
+
# @option params [Integer] :target_storage_throughput
|
2189
|
+
# The storage throughput value for the green DB instance.
|
2190
|
+
#
|
2191
|
+
# This setting applies only to the `gp3` storage type.
|
2192
|
+
#
|
2193
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
2194
|
+
#
|
2146
2195
|
# @return [Types::CreateBlueGreenDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2147
2196
|
#
|
2148
2197
|
# * {Types::CreateBlueGreenDeploymentResponse#blue_green_deployment #blue_green_deployment} => Types::BlueGreenDeployment
|
@@ -2285,6 +2334,10 @@ module Aws::RDS
|
|
2285
2334
|
# ],
|
2286
2335
|
# target_db_instance_class: "TargetDBInstanceClass",
|
2287
2336
|
# upgrade_target_storage_config: false,
|
2337
|
+
# target_iops: 1,
|
2338
|
+
# target_storage_type: "TargetStorageType",
|
2339
|
+
# target_allocated_storage: 1,
|
2340
|
+
# target_storage_throughput: 1,
|
2288
2341
|
# })
|
2289
2342
|
#
|
2290
2343
|
# @example Response structure
|
@@ -2478,6 +2531,7 @@ module Aws::RDS
|
|
2478
2531
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
2479
2532
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
2480
2533
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
2534
|
+
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
2481
2535
|
#
|
2482
2536
|
# @example Request syntax with placeholder values
|
2483
2537
|
#
|
@@ -2562,6 +2616,8 @@ module Aws::RDS
|
|
2562
2616
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
2563
2617
|
# resp.supports_local_write_forwarding #=> Boolean
|
2564
2618
|
# resp.supports_integrations #=> Boolean
|
2619
|
+
# resp.serverless_v2_features_support.min_capacity #=> Float
|
2620
|
+
# resp.serverless_v2_features_support.max_capacity #=> Float
|
2565
2621
|
#
|
2566
2622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersion AWS API Documentation
|
2567
2623
|
#
|
@@ -2973,13 +3029,15 @@ module Aws::RDS
|
|
2973
3029
|
# mapping isn't enabled.
|
2974
3030
|
#
|
2975
3031
|
# For more information, see [ IAM Database Authentication][1] in the
|
2976
|
-
# *Amazon Aurora User Guide
|
3032
|
+
# *Amazon Aurora User Guide* or [IAM database authentication for
|
3033
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
2977
3034
|
#
|
2978
|
-
# Valid for Cluster Type: Aurora DB clusters
|
3035
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2979
3036
|
#
|
2980
3037
|
#
|
2981
3038
|
#
|
2982
3039
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
3040
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
2983
3041
|
#
|
2984
3042
|
# @option params [Integer] :backtrack_window
|
2985
3043
|
# The target backtrack window, in seconds. To disable backtracking, set
|
@@ -3298,6 +3356,9 @@ module Aws::RDS
|
|
3298
3356
|
#
|
3299
3357
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
3300
3358
|
#
|
3359
|
+
# @option params [String] :database_insights_mode
|
3360
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
3361
|
+
#
|
3301
3362
|
# @option params [Boolean] :enable_performance_insights
|
3302
3363
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
3303
3364
|
#
|
@@ -3350,6 +3411,11 @@ module Aws::RDS
|
|
3350
3411
|
#
|
3351
3412
|
# Valid for: Aurora DB clusters only
|
3352
3413
|
#
|
3414
|
+
# <note markdown="1"> This setting is no longer used. Instead use the
|
3415
|
+
# `ClusterScalabilityType` setting.
|
3416
|
+
#
|
3417
|
+
# </note>
|
3418
|
+
#
|
3353
3419
|
# @option params [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
3354
3420
|
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
3355
3421
|
# cluster.
|
@@ -3480,8 +3546,8 @@ module Aws::RDS
|
|
3480
3546
|
# support for that engine version. For more information, see the
|
3481
3547
|
# following sections:
|
3482
3548
|
#
|
3483
|
-
# * Amazon Aurora
|
3484
|
-
#
|
3549
|
+
# * Amazon Aurora - [Using Amazon RDS Extended Support][1] in the
|
3550
|
+
# *Amazon Aurora User Guide*
|
3485
3551
|
#
|
3486
3552
|
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
3487
3553
|
# RDS User Guide*
|
@@ -3695,6 +3761,7 @@ module Aws::RDS
|
|
3695
3761
|
# auto_minor_version_upgrade: false,
|
3696
3762
|
# monitoring_interval: 1,
|
3697
3763
|
# monitoring_role_arn: "String",
|
3764
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
3698
3765
|
# enable_performance_insights: false,
|
3699
3766
|
# performance_insights_kms_key_id: "String",
|
3700
3767
|
# performance_insights_retention_period: 1,
|
@@ -3702,6 +3769,7 @@ module Aws::RDS
|
|
3702
3769
|
# serverless_v2_scaling_configuration: {
|
3703
3770
|
# min_capacity: 1.0,
|
3704
3771
|
# max_capacity: 1.0,
|
3772
|
+
# seconds_until_auto_pause: 1,
|
3705
3773
|
# },
|
3706
3774
|
# network_type: "String",
|
3707
3775
|
# cluster_scalability_type: "standard", # accepts standard, limitless
|
@@ -3834,11 +3902,13 @@ module Aws::RDS
|
|
3834
3902
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
3835
3903
|
# resp.db_cluster.monitoring_interval #=> Integer
|
3836
3904
|
# resp.db_cluster.monitoring_role_arn #=> String
|
3905
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
3837
3906
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
3838
3907
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
3839
3908
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
3840
3909
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
3841
3910
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
3911
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
3842
3912
|
# resp.db_cluster.network_type #=> String
|
3843
3913
|
# resp.db_cluster.db_system_id #=> String
|
3844
3914
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -4325,6 +4395,9 @@ module Aws::RDS
|
|
4325
4395
|
#
|
4326
4396
|
# * Must contain 1 to 64 alphanumeric characters.
|
4327
4397
|
#
|
4398
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
4399
|
+
# underscores, or digits (0-9).
|
4400
|
+
#
|
4328
4401
|
# * Can't be a word reserved by the database engine.
|
4329
4402
|
#
|
4330
4403
|
# Amazon Aurora PostgreSQL
|
@@ -4557,14 +4630,12 @@ module Aws::RDS
|
|
4557
4630
|
# 16384.
|
4558
4631
|
#
|
4559
4632
|
# * Web and Express editions: Must be an integer from 20 to 16384.
|
4560
|
-
#
|
4561
4633
|
# * Provisioned IOPS storage (io1, io2):
|
4562
4634
|
#
|
4563
4635
|
# * Enterprise and Standard editions: Must be an integer from 100 to
|
4564
4636
|
# 16384.
|
4565
4637
|
#
|
4566
4638
|
# * Web and Express editions: Must be an integer from 100 to 16384.
|
4567
|
-
#
|
4568
4639
|
# * Magnetic storage (standard):
|
4569
4640
|
#
|
4570
4641
|
# * Enterprise and Standard editions: Must be an integer from 20 to
|
@@ -5287,6 +5358,9 @@ module Aws::RDS
|
|
5287
5358
|
#
|
5288
5359
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
5289
5360
|
#
|
5361
|
+
# @option params [String] :database_insights_mode
|
5362
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
5363
|
+
#
|
5290
5364
|
# @option params [Boolean] :enable_performance_insights
|
5291
5365
|
# Specifies whether to enable Performance Insights for the DB instance.
|
5292
5366
|
# For more information, see [Using Amazon Performance Insights][1] in
|
@@ -5772,6 +5846,7 @@ module Aws::RDS
|
|
5772
5846
|
# promotion_tier: 1,
|
5773
5847
|
# timezone: "String",
|
5774
5848
|
# enable_iam_database_authentication: false,
|
5849
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
5775
5850
|
# enable_performance_insights: false,
|
5776
5851
|
# performance_insights_kms_key_id: "String",
|
5777
5852
|
# performance_insights_retention_period: 1,
|
@@ -5913,6 +5988,7 @@ module Aws::RDS
|
|
5913
5988
|
# resp.db_instance.db_instance_arn #=> String
|
5914
5989
|
# resp.db_instance.timezone #=> String
|
5915
5990
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
5991
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
5916
5992
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
5917
5993
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
5918
5994
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
@@ -6350,6 +6426,9 @@ module Aws::RDS
|
|
6350
6426
|
#
|
6351
6427
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
6352
6428
|
#
|
6429
|
+
# @option params [String] :database_insights_mode
|
6430
|
+
# Specifies the mode of Database Insights.
|
6431
|
+
#
|
6353
6432
|
# @option params [Boolean] :enable_performance_insights
|
6354
6433
|
# Specifies whether to enable Performance Insights for the read replica.
|
6355
6434
|
#
|
@@ -6714,6 +6793,7 @@ module Aws::RDS
|
|
6714
6793
|
# kms_key_id: "String",
|
6715
6794
|
# pre_signed_url: "String",
|
6716
6795
|
# enable_iam_database_authentication: false,
|
6796
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
6717
6797
|
# enable_performance_insights: false,
|
6718
6798
|
# performance_insights_kms_key_id: "String",
|
6719
6799
|
# performance_insights_retention_period: 1,
|
@@ -6861,6 +6941,7 @@ module Aws::RDS
|
|
6861
6941
|
# resp.db_instance.db_instance_arn #=> String
|
6862
6942
|
# resp.db_instance.timezone #=> String
|
6863
6943
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
6944
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
6864
6945
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
6865
6946
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
6866
6947
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
@@ -8184,6 +8265,7 @@ module Aws::RDS
|
|
8184
8265
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
8185
8266
|
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
8186
8267
|
# resp.global_cluster.global_cluster_members[0].synchronization_status #=> String, one of "connected", "pending-resync"
|
8268
|
+
# resp.global_cluster.endpoint #=> String
|
8187
8269
|
# resp.global_cluster.failover_state.status #=> String, one of "pending", "failing-over", "cancelling"
|
8188
8270
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
8189
8271
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
@@ -8890,6 +8972,7 @@ module Aws::RDS
|
|
8890
8972
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
8891
8973
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
8892
8974
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
8975
|
+
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
8893
8976
|
#
|
8894
8977
|
# @example Request syntax with placeholder values
|
8895
8978
|
#
|
@@ -8960,6 +9043,8 @@ module Aws::RDS
|
|
8960
9043
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
8961
9044
|
# resp.supports_local_write_forwarding #=> Boolean
|
8962
9045
|
# resp.supports_integrations #=> Boolean
|
9046
|
+
# resp.serverless_v2_features_support.min_capacity #=> Float
|
9047
|
+
# resp.serverless_v2_features_support.max_capacity #=> Float
|
8963
9048
|
#
|
8964
9049
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
|
8965
9050
|
#
|
@@ -9199,11 +9284,13 @@ module Aws::RDS
|
|
9199
9284
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
9200
9285
|
# resp.db_cluster.monitoring_interval #=> Integer
|
9201
9286
|
# resp.db_cluster.monitoring_role_arn #=> String
|
9287
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
9202
9288
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
9203
9289
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
9204
9290
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
9205
9291
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
9206
9292
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
9293
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
9207
9294
|
# resp.db_cluster.network_type #=> String
|
9208
9295
|
# resp.db_cluster.db_system_id #=> String
|
9209
9296
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -9774,6 +9861,7 @@ module Aws::RDS
|
|
9774
9861
|
# resp.db_instance.db_instance_arn #=> String
|
9775
9862
|
# resp.db_instance.timezone #=> String
|
9776
9863
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
9864
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
9777
9865
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
9778
9866
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
9779
9867
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
@@ -10140,7 +10228,7 @@ module Aws::RDS
|
|
10140
10228
|
# Deletes an Aurora Limitless Database DB shard group.
|
10141
10229
|
#
|
10142
10230
|
# @option params [required, String] :db_shard_group_identifier
|
10143
|
-
#
|
10231
|
+
# The name of the DB shard group to delete.
|
10144
10232
|
#
|
10145
10233
|
# @return [Types::DBShardGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10146
10234
|
#
|
@@ -10481,6 +10569,7 @@ module Aws::RDS
|
|
10481
10569
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
10482
10570
|
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
10483
10571
|
# resp.global_cluster.global_cluster_members[0].synchronization_status #=> String, one of "connected", "pending-resync"
|
10572
|
+
# resp.global_cluster.endpoint #=> String
|
10484
10573
|
# resp.global_cluster.failover_state.status #=> String, one of "pending", "failing-over", "cancelling"
|
10485
10574
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
10486
10575
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
@@ -11331,7 +11420,6 @@ module Aws::RDS
|
|
11331
11420
|
# backup replication is stopped.
|
11332
11421
|
#
|
11333
11422
|
# ^
|
11334
|
-
#
|
11335
11423
|
# * `db-cluster-id` - Accepts DB cluster identifiers and Amazon Resource
|
11336
11424
|
# Names (ARNs). The results list includes only information about the
|
11337
11425
|
# DB cluster automated backups identified by these ARNs.
|
@@ -11479,7 +11567,6 @@ module Aws::RDS
|
|
11479
11567
|
# * `failed`
|
11480
11568
|
#
|
11481
11569
|
# * `pending`
|
11482
|
-
#
|
11483
11570
|
# The results list includes information about only the backtracks
|
11484
11571
|
# identified by these values.
|
11485
11572
|
#
|
@@ -12643,11 +12730,13 @@ module Aws::RDS
|
|
12643
12730
|
# resp.db_clusters[0].auto_minor_version_upgrade #=> Boolean
|
12644
12731
|
# resp.db_clusters[0].monitoring_interval #=> Integer
|
12645
12732
|
# resp.db_clusters[0].monitoring_role_arn #=> String
|
12733
|
+
# resp.db_clusters[0].database_insights_mode #=> String, one of "standard", "advanced"
|
12646
12734
|
# resp.db_clusters[0].performance_insights_enabled #=> Boolean
|
12647
12735
|
# resp.db_clusters[0].performance_insights_kms_key_id #=> String
|
12648
12736
|
# resp.db_clusters[0].performance_insights_retention_period #=> Integer
|
12649
12737
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
12650
12738
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
12739
|
+
# resp.db_clusters[0].serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
12651
12740
|
# resp.db_clusters[0].network_type #=> String
|
12652
12741
|
# resp.db_clusters[0].db_system_id #=> String
|
12653
12742
|
# resp.db_clusters[0].master_user_secret.secret_arn #=> String
|
@@ -12764,7 +12853,6 @@ module Aws::RDS
|
|
12764
12853
|
# * `provisioned`
|
12765
12854
|
#
|
12766
12855
|
# * `serverless`
|
12767
|
-
#
|
12768
12856
|
# * `engine-version` - Accepts engine versions. The results list only
|
12769
12857
|
# includes information about the DB engine versions for these engine
|
12770
12858
|
# versions.
|
@@ -12951,6 +13039,8 @@ module Aws::RDS
|
|
12951
13039
|
# resp.db_engine_versions[0].supported_ca_certificate_identifiers[0] #=> String
|
12952
13040
|
# resp.db_engine_versions[0].supports_local_write_forwarding #=> Boolean
|
12953
13041
|
# resp.db_engine_versions[0].supports_integrations #=> Boolean
|
13042
|
+
# resp.db_engine_versions[0].serverless_v2_features_support.min_capacity #=> Float
|
13043
|
+
# resp.db_engine_versions[0].serverless_v2_features_support.max_capacity #=> Float
|
12954
13044
|
#
|
12955
13045
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
12956
13046
|
#
|
@@ -12994,7 +13084,6 @@ module Aws::RDS
|
|
12994
13084
|
#
|
12995
13085
|
# * `retained` - Automated backups for deleted instances and after
|
12996
13086
|
# backup replication is stopped.
|
12997
|
-
#
|
12998
13087
|
# * `db-instance-id` - Accepts DB instance identifiers and Amazon
|
12999
13088
|
# Resource Names (ARNs). The results list includes only information
|
13000
13089
|
# about the DB instance automated backups identified by these ARNs.
|
@@ -13359,6 +13448,7 @@ module Aws::RDS
|
|
13359
13448
|
# resp.db_instances[0].db_instance_arn #=> String
|
13360
13449
|
# resp.db_instances[0].timezone #=> String
|
13361
13450
|
# resp.db_instances[0].iam_database_authentication_enabled #=> Boolean
|
13451
|
+
# resp.db_instances[0].database_insights_mode #=> String, one of "standard", "advanced"
|
13362
13452
|
# resp.db_instances[0].performance_insights_enabled #=> Boolean
|
13363
13453
|
# resp.db_instances[0].performance_insights_kms_key_id #=> String
|
13364
13454
|
# resp.db_instances[0].performance_insights_retention_period #=> Integer
|
@@ -14152,7 +14242,6 @@ module Aws::RDS
|
|
14152
14242
|
# * `resolved` - The recommendations which are completed.
|
14153
14243
|
#
|
14154
14244
|
# * `dismissed` - The recommendations that you dismissed.
|
14155
|
-
#
|
14156
14245
|
# The results list only includes the recommendations whose status is
|
14157
14246
|
# one of the specified filter values.
|
14158
14247
|
#
|
@@ -14169,7 +14258,6 @@ module Aws::RDS
|
|
14169
14258
|
# * `low`
|
14170
14259
|
#
|
14171
14260
|
# * `informational`
|
14172
|
-
#
|
14173
14261
|
# * `type-id` - Accepts a list of recommendation type identifiers. The
|
14174
14262
|
# results list only includes the recommendations whose type is one of
|
14175
14263
|
# the specified filter values.
|
@@ -14406,10 +14494,9 @@ module Aws::RDS
|
|
14406
14494
|
# Describes existing Aurora Limitless Database DB shard groups.
|
14407
14495
|
#
|
14408
14496
|
# @option params [String] :db_shard_group_identifier
|
14409
|
-
# The user-supplied DB shard group identifier
|
14410
|
-
#
|
14411
|
-
#
|
14412
|
-
# parameter isn't case-sensitive.
|
14497
|
+
# The user-supplied DB shard group identifier. If this parameter is
|
14498
|
+
# specified, information for only the specific DB shard group is
|
14499
|
+
# returned. This parameter isn't case-sensitive.
|
14413
14500
|
#
|
14414
14501
|
# Constraints:
|
14415
14502
|
#
|
@@ -16070,6 +16157,7 @@ module Aws::RDS
|
|
16070
16157
|
# resp.global_clusters[0].global_cluster_members[0].is_writer #=> Boolean
|
16071
16158
|
# resp.global_clusters[0].global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
16072
16159
|
# resp.global_clusters[0].global_cluster_members[0].synchronization_status #=> String, one of "connected", "pending-resync"
|
16160
|
+
# resp.global_clusters[0].endpoint #=> String
|
16073
16161
|
# resp.global_clusters[0].failover_state.status #=> String, one of "pending", "failing-over", "cancelling"
|
16074
16162
|
# resp.global_clusters[0].failover_state.from_db_cluster_arn #=> String
|
16075
16163
|
# resp.global_clusters[0].failover_state.to_db_cluster_arn #=> String
|
@@ -17576,10 +17664,10 @@ module Aws::RDS
|
|
17576
17664
|
# For more information, see [Using RDS Data API][1] in the *Amazon
|
17577
17665
|
# Aurora User Guide*.
|
17578
17666
|
#
|
17579
|
-
# <note markdown="1"> This operation applies only to Aurora
|
17580
|
-
#
|
17581
|
-
#
|
17582
|
-
#
|
17667
|
+
# <note markdown="1"> This operation applies only to Aurora Serverless v2 and provisioned DB
|
17668
|
+
# clusters. To disable the HTTP endpoint for Aurora Serverless v1 DB
|
17669
|
+
# clusters, use the `EnableHttpEndpoint` parameter of the
|
17670
|
+
# `ModifyDBCluster` operation.
|
17583
17671
|
#
|
17584
17672
|
# </note>
|
17585
17673
|
#
|
@@ -17721,10 +17809,10 @@ module Aws::RDS
|
|
17721
17809
|
# For more information, see [Using RDS Data API][1] in the *Amazon
|
17722
17810
|
# Aurora User Guide*.
|
17723
17811
|
#
|
17724
|
-
# <note markdown="1"> This operation applies only to Aurora
|
17725
|
-
#
|
17726
|
-
#
|
17727
|
-
#
|
17812
|
+
# <note markdown="1"> This operation applies only to Aurora Serverless v2 and provisioned DB
|
17813
|
+
# clusters. To enable the HTTP endpoint for Aurora Serverless v1 DB
|
17814
|
+
# clusters, use the `EnableHttpEndpoint` parameter of the
|
17815
|
+
# `ModifyDBCluster` operation.
|
17728
17816
|
#
|
17729
17817
|
# </note>
|
17730
17818
|
#
|
@@ -17960,11 +18048,13 @@ module Aws::RDS
|
|
17960
18048
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
17961
18049
|
# resp.db_cluster.monitoring_interval #=> Integer
|
17962
18050
|
# resp.db_cluster.monitoring_role_arn #=> String
|
18051
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
17963
18052
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
17964
18053
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
17965
18054
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
17966
18055
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
17967
18056
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
18057
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
17968
18058
|
# resp.db_cluster.network_type #=> String
|
17969
18059
|
# resp.db_cluster.db_system_id #=> String
|
17970
18060
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -18116,6 +18206,7 @@ module Aws::RDS
|
|
18116
18206
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
18117
18207
|
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18118
18208
|
# resp.global_cluster.global_cluster_members[0].synchronization_status #=> String, one of "connected", "pending-resync"
|
18209
|
+
# resp.global_cluster.endpoint #=> String
|
18119
18210
|
# resp.global_cluster.failover_state.status #=> String, one of "pending", "failing-over", "cancelling"
|
18120
18211
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
18121
18212
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
@@ -18596,6 +18687,7 @@ module Aws::RDS
|
|
18596
18687
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
18597
18688
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
18598
18689
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
18690
|
+
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
18599
18691
|
#
|
18600
18692
|
# @example Request syntax with placeholder values
|
18601
18693
|
#
|
@@ -18668,6 +18760,8 @@ module Aws::RDS
|
|
18668
18760
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
18669
18761
|
# resp.supports_local_write_forwarding #=> Boolean
|
18670
18762
|
# resp.supports_integrations #=> Boolean
|
18763
|
+
# resp.serverless_v2_features_support.min_capacity #=> Float
|
18764
|
+
# resp.serverless_v2_features_support.max_capacity #=> Float
|
18671
18765
|
#
|
18672
18766
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
|
18673
18767
|
#
|
@@ -18722,11 +18816,11 @@ module Aws::RDS
|
|
18722
18816
|
# Example: `my-cluster2`
|
18723
18817
|
#
|
18724
18818
|
# @option params [Boolean] :apply_immediately
|
18725
|
-
# Specifies whether the modifications in this request
|
18726
|
-
#
|
18727
|
-
#
|
18728
|
-
#
|
18729
|
-
#
|
18819
|
+
# Specifies whether the modifications in this request are asynchronously
|
18820
|
+
# applied as soon as possible, regardless of the
|
18821
|
+
# `PreferredMaintenanceWindow` setting for the DB cluster. If this
|
18822
|
+
# parameter is disabled, changes to the DB cluster are applied during
|
18823
|
+
# the next maintenance window.
|
18730
18824
|
#
|
18731
18825
|
# Most modifications can be applied immediately or during the next
|
18732
18826
|
# scheduled maintenance window. Some modifications, such as turning on
|
@@ -18848,13 +18942,15 @@ module Aws::RDS
|
|
18848
18942
|
# mapping isn't enabled.
|
18849
18943
|
#
|
18850
18944
|
# For more information, see [ IAM Database Authentication][1] in the
|
18851
|
-
# *Amazon Aurora User Guide
|
18945
|
+
# *Amazon Aurora User Guide* or [IAM database authentication for
|
18946
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
18852
18947
|
#
|
18853
|
-
# Valid for Cluster Type: Aurora DB clusters
|
18948
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
18854
18949
|
#
|
18855
18950
|
#
|
18856
18951
|
#
|
18857
18952
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
18953
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
18858
18954
|
#
|
18859
18955
|
# @option params [Integer] :backtrack_window
|
18860
18956
|
# The target backtrack window, in seconds. To disable backtracking, set
|
@@ -19019,9 +19115,9 @@ module Aws::RDS
|
|
19019
19115
|
# Aurora User Guide*.
|
19020
19116
|
#
|
19021
19117
|
# <note markdown="1"> This parameter applies only to Aurora Serverless v1 DB clusters. To
|
19022
|
-
# enable or disable the HTTP endpoint for an Aurora
|
19023
|
-
#
|
19024
|
-
#
|
19118
|
+
# enable or disable the HTTP endpoint for an Aurora Serverless v2 or
|
19119
|
+
# provisioned DB cluster, use the `EnableHttpEndpoint` and
|
19120
|
+
# `DisableHttpEndpoint` operations.
|
19025
19121
|
#
|
19026
19122
|
# </note>
|
19027
19123
|
#
|
@@ -19162,13 +19258,16 @@ module Aws::RDS
|
|
19162
19258
|
#
|
19163
19259
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
19164
19260
|
#
|
19261
|
+
# @option params [String] :database_insights_mode
|
19262
|
+
# Specifies the mode of Database Insights to enable for the cluster.
|
19263
|
+
#
|
19165
19264
|
# @option params [Boolean] :enable_performance_insights
|
19166
19265
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
19167
19266
|
#
|
19168
19267
|
# For more information, see [ Using Amazon Performance Insights][1] in
|
19169
19268
|
# the *Amazon RDS User Guide*.
|
19170
19269
|
#
|
19171
|
-
# Valid for Cluster Type: Multi-AZ DB clusters
|
19270
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
19172
19271
|
#
|
19173
19272
|
#
|
19174
19273
|
#
|
@@ -19375,6 +19474,12 @@ module Aws::RDS
|
|
19375
19474
|
#
|
19376
19475
|
# Valid for: Aurora DB clusters only
|
19377
19476
|
#
|
19477
|
+
# <note markdown="1"> This setting is no longer used. Instead use the
|
19478
|
+
# `ClusterScalabilityType` setting when you create your Aurora Limitless
|
19479
|
+
# Database DB cluster.
|
19480
|
+
#
|
19481
|
+
# </note>
|
19482
|
+
#
|
19378
19483
|
# @option params [String] :ca_certificate_identifier
|
19379
19484
|
# The CA certificate identifier to use for the DB cluster's server
|
19380
19485
|
# certificate.
|
@@ -19511,12 +19616,14 @@ module Aws::RDS
|
|
19511
19616
|
# auto_minor_version_upgrade: false,
|
19512
19617
|
# monitoring_interval: 1,
|
19513
19618
|
# monitoring_role_arn: "String",
|
19619
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
19514
19620
|
# enable_performance_insights: false,
|
19515
19621
|
# performance_insights_kms_key_id: "String",
|
19516
19622
|
# performance_insights_retention_period: 1,
|
19517
19623
|
# serverless_v2_scaling_configuration: {
|
19518
19624
|
# min_capacity: 1.0,
|
19519
19625
|
# max_capacity: 1.0,
|
19626
|
+
# seconds_until_auto_pause: 1,
|
19520
19627
|
# },
|
19521
19628
|
# network_type: "String",
|
19522
19629
|
# manage_master_user_password: false,
|
@@ -19650,11 +19757,13 @@ module Aws::RDS
|
|
19650
19757
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
19651
19758
|
# resp.db_cluster.monitoring_interval #=> Integer
|
19652
19759
|
# resp.db_cluster.monitoring_role_arn #=> String
|
19760
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
19653
19761
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
19654
19762
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
19655
19763
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
19656
19764
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
19657
19765
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
19766
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
19658
19767
|
# resp.db_cluster.network_type #=> String
|
19659
19768
|
# resp.db_cluster.db_system_id #=> String
|
19660
19769
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -20761,6 +20870,9 @@ module Aws::RDS
|
|
20761
20870
|
#
|
20762
20871
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
20763
20872
|
#
|
20873
|
+
# @option params [String] :database_insights_mode
|
20874
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
20875
|
+
#
|
20764
20876
|
# @option params [Boolean] :enable_performance_insights
|
20765
20877
|
# Specifies whether to enable Performance Insights for the DB instance.
|
20766
20878
|
#
|
@@ -21210,6 +21322,7 @@ module Aws::RDS
|
|
21210
21322
|
# disable_domain: false,
|
21211
21323
|
# promotion_tier: 1,
|
21212
21324
|
# enable_iam_database_authentication: false,
|
21325
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
21213
21326
|
# enable_performance_insights: false,
|
21214
21327
|
# performance_insights_kms_key_id: "String",
|
21215
21328
|
# performance_insights_retention_period: 1,
|
@@ -21357,6 +21470,7 @@ module Aws::RDS
|
|
21357
21470
|
# resp.db_instance.db_instance_arn #=> String
|
21358
21471
|
# resp.db_instance.timezone #=> String
|
21359
21472
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
21473
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
21360
21474
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
21361
21475
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
21362
21476
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
@@ -22618,6 +22732,7 @@ module Aws::RDS
|
|
22618
22732
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
22619
22733
|
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
22620
22734
|
# resp.global_cluster.global_cluster_members[0].synchronization_status #=> String, one of "connected", "pending-resync"
|
22735
|
+
# resp.global_cluster.endpoint #=> String
|
22621
22736
|
# resp.global_cluster.failover_state.status #=> String, one of "pending", "failing-over", "cancelling"
|
22622
22737
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
22623
22738
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
@@ -23173,6 +23288,7 @@ module Aws::RDS
|
|
23173
23288
|
# resp.db_instance.db_instance_arn #=> String
|
23174
23289
|
# resp.db_instance.timezone #=> String
|
23175
23290
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
23291
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
23176
23292
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
23177
23293
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
23178
23294
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
@@ -23375,11 +23491,13 @@ module Aws::RDS
|
|
23375
23491
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
23376
23492
|
# resp.db_cluster.monitoring_interval #=> Integer
|
23377
23493
|
# resp.db_cluster.monitoring_role_arn #=> String
|
23494
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
23378
23495
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
23379
23496
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
23380
23497
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
23381
23498
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
23382
23499
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
23500
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
23383
23501
|
# resp.db_cluster.network_type #=> String
|
23384
23502
|
# resp.db_cluster.db_system_id #=> String
|
23385
23503
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -23676,11 +23794,13 @@ module Aws::RDS
|
|
23676
23794
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
23677
23795
|
# resp.db_cluster.monitoring_interval #=> Integer
|
23678
23796
|
# resp.db_cluster.monitoring_role_arn #=> String
|
23797
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
23679
23798
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
23680
23799
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
23681
23800
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
23682
23801
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
23683
23802
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
23803
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
23684
23804
|
# resp.db_cluster.network_type #=> String
|
23685
23805
|
# resp.db_cluster.db_system_id #=> String
|
23686
23806
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -23894,6 +24014,7 @@ module Aws::RDS
|
|
23894
24014
|
# resp.db_instance.db_instance_arn #=> String
|
23895
24015
|
# resp.db_instance.timezone #=> String
|
23896
24016
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
24017
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
23897
24018
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
23898
24019
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
23899
24020
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
@@ -24147,6 +24268,7 @@ module Aws::RDS
|
|
24147
24268
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
24148
24269
|
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
24149
24270
|
# resp.global_cluster.global_cluster_members[0].synchronization_status #=> String, one of "connected", "pending-resync"
|
24271
|
+
# resp.global_cluster.endpoint #=> String
|
24150
24272
|
# resp.global_cluster.failover_state.status #=> String, one of "pending", "failing-over", "cancelling"
|
24151
24273
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
24152
24274
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
@@ -25002,8 +25124,8 @@ module Aws::RDS
|
|
25002
25124
|
# support for that engine version. For more information, see the
|
25003
25125
|
# following sections:
|
25004
25126
|
#
|
25005
|
-
# * Amazon Aurora
|
25006
|
-
#
|
25127
|
+
# * Amazon Aurora - [Using Amazon RDS Extended Support][1] in the
|
25128
|
+
# *Amazon Aurora User Guide*
|
25007
25129
|
#
|
25008
25130
|
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
25009
25131
|
# RDS User Guide*
|
@@ -25135,6 +25257,7 @@ module Aws::RDS
|
|
25135
25257
|
# serverless_v2_scaling_configuration: {
|
25136
25258
|
# min_capacity: 1.0,
|
25137
25259
|
# max_capacity: 1.0,
|
25260
|
+
# seconds_until_auto_pause: 1,
|
25138
25261
|
# },
|
25139
25262
|
# network_type: "String",
|
25140
25263
|
# manage_master_user_password: false,
|
@@ -25263,11 +25386,13 @@ module Aws::RDS
|
|
25263
25386
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
25264
25387
|
# resp.db_cluster.monitoring_interval #=> Integer
|
25265
25388
|
# resp.db_cluster.monitoring_role_arn #=> String
|
25389
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
25266
25390
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
25267
25391
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
25268
25392
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
25269
25393
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
25270
25394
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
25395
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
25271
25396
|
# resp.db_cluster.network_type #=> String
|
25272
25397
|
# resp.db_cluster.db_system_id #=> String
|
25273
25398
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -25490,13 +25615,15 @@ module Aws::RDS
|
|
25490
25615
|
# mapping isn't enabled.
|
25491
25616
|
#
|
25492
25617
|
# For more information, see [ IAM Database Authentication][1] in the
|
25493
|
-
# *Amazon Aurora User Guide
|
25618
|
+
# *Amazon Aurora User Guide* or [ IAM database authentication for
|
25619
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
25494
25620
|
#
|
25495
|
-
# Valid for: Aurora DB clusters
|
25621
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
25496
25622
|
#
|
25497
25623
|
#
|
25498
25624
|
#
|
25499
25625
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
25626
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
25500
25627
|
#
|
25501
25628
|
# @option params [Integer] :backtrack_window
|
25502
25629
|
# The target backtrack window, in seconds. To disable backtracking, set
|
@@ -25741,6 +25868,59 @@ module Aws::RDS
|
|
25741
25868
|
# @option params [Types::RdsCustomClusterConfiguration] :rds_custom_cluster_configuration
|
25742
25869
|
# Reserved for future use.
|
25743
25870
|
#
|
25871
|
+
# @option params [Integer] :monitoring_interval
|
25872
|
+
# The interval, in seconds, between points when Enhanced Monitoring
|
25873
|
+
# metrics are collected for the DB cluster. To turn off collecting
|
25874
|
+
# Enhanced Monitoring metrics, specify `0`.
|
25875
|
+
#
|
25876
|
+
# If `MonitoringRoleArn` is specified, also set `MonitoringInterval` to
|
25877
|
+
# a value other than `0`.
|
25878
|
+
#
|
25879
|
+
# Valid Values: `0 | 1 | 5 | 10 | 15 | 30 | 60`
|
25880
|
+
#
|
25881
|
+
# Default: `0`
|
25882
|
+
#
|
25883
|
+
# @option params [String] :monitoring_role_arn
|
25884
|
+
# The Amazon Resource Name (ARN) for the IAM role that permits RDS to
|
25885
|
+
# send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example
|
25886
|
+
# is `arn:aws:iam:123456789012:role/emaccess`.
|
25887
|
+
#
|
25888
|
+
# If `MonitoringInterval` is set to a value other than `0`, supply a
|
25889
|
+
# `MonitoringRoleArn` value.
|
25890
|
+
#
|
25891
|
+
# @option params [Boolean] :enable_performance_insights
|
25892
|
+
# Specifies whether to turn on Performance Insights for the DB cluster.
|
25893
|
+
#
|
25894
|
+
# @option params [String] :performance_insights_kms_key_id
|
25895
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
25896
|
+
# Performance Insights data.
|
25897
|
+
#
|
25898
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
25899
|
+
# alias ARN, or alias name for the KMS key.
|
25900
|
+
#
|
25901
|
+
# If you don't specify a value for `PerformanceInsightsKMSKeyId`, then
|
25902
|
+
# Amazon RDS uses your default KMS key. There is a default KMS key for
|
25903
|
+
# your Amazon Web Services account. Your Amazon Web Services account has
|
25904
|
+
# a different default KMS key for each Amazon Web Services Region.
|
25905
|
+
#
|
25906
|
+
# @option params [Integer] :performance_insights_retention_period
|
25907
|
+
# The number of days to retain Performance Insights data.
|
25908
|
+
#
|
25909
|
+
# Valid Values:
|
25910
|
+
#
|
25911
|
+
# * `7`
|
25912
|
+
#
|
25913
|
+
# * *month* * 31, where *month* is a number of months from 1-23.
|
25914
|
+
# Examples: `93` (3 months * 31), `341` (11 months * 31), `589` (19
|
25915
|
+
# months * 31)
|
25916
|
+
#
|
25917
|
+
# * `731`
|
25918
|
+
#
|
25919
|
+
# Default: `7` days
|
25920
|
+
#
|
25921
|
+
# If you specify a retention period that isn't valid, such as `94`,
|
25922
|
+
# Amazon RDS issues an error.
|
25923
|
+
#
|
25744
25924
|
# @option params [String] :engine_lifecycle_support
|
25745
25925
|
# The life cycle type for this DB cluster.
|
25746
25926
|
#
|
@@ -25760,8 +25940,8 @@ module Aws::RDS
|
|
25760
25940
|
# support for that engine version. For more information, see the
|
25761
25941
|
# following sections:
|
25762
25942
|
#
|
25763
|
-
# * Amazon Aurora
|
25764
|
-
#
|
25943
|
+
# * Amazon Aurora - [Using Amazon RDS Extended Support][1] in the
|
25944
|
+
# *Amazon Aurora User Guide*
|
25765
25945
|
#
|
25766
25946
|
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
25767
25947
|
# RDS User Guide*
|
@@ -25892,6 +26072,7 @@ module Aws::RDS
|
|
25892
26072
|
# serverless_v2_scaling_configuration: {
|
25893
26073
|
# min_capacity: 1.0,
|
25894
26074
|
# max_capacity: 1.0,
|
26075
|
+
# seconds_until_auto_pause: 1,
|
25895
26076
|
# },
|
25896
26077
|
# network_type: "String",
|
25897
26078
|
# rds_custom_cluster_configuration: {
|
@@ -25899,6 +26080,11 @@ module Aws::RDS
|
|
25899
26080
|
# transit_gateway_multicast_domain_id: "String",
|
25900
26081
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
25901
26082
|
# },
|
26083
|
+
# monitoring_interval: 1,
|
26084
|
+
# monitoring_role_arn: "String",
|
26085
|
+
# enable_performance_insights: false,
|
26086
|
+
# performance_insights_kms_key_id: "String",
|
26087
|
+
# performance_insights_retention_period: 1,
|
25902
26088
|
# engine_lifecycle_support: "String",
|
25903
26089
|
# })
|
25904
26090
|
#
|
@@ -26022,11 +26208,13 @@ module Aws::RDS
|
|
26022
26208
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
26023
26209
|
# resp.db_cluster.monitoring_interval #=> Integer
|
26024
26210
|
# resp.db_cluster.monitoring_role_arn #=> String
|
26211
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
26025
26212
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
26026
26213
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
26027
26214
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
26028
26215
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
26029
26216
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
26217
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
26030
26218
|
# resp.db_cluster.network_type #=> String
|
26031
26219
|
# resp.db_cluster.db_system_id #=> String
|
26032
26220
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -26229,13 +26417,15 @@ module Aws::RDS
|
|
26229
26417
|
# mapping isn't enabled.
|
26230
26418
|
#
|
26231
26419
|
# For more information, see [ IAM Database Authentication][1] in the
|
26232
|
-
# *Amazon Aurora User Guide
|
26420
|
+
# *Amazon Aurora User Guide* or [ IAM database authentication for
|
26421
|
+
# MariaDB, MySQL, and PostgreSQL][2] in the *Amazon RDS User Guide*.
|
26233
26422
|
#
|
26234
|
-
# Valid for: Aurora DB clusters
|
26423
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
26235
26424
|
#
|
26236
26425
|
#
|
26237
26426
|
#
|
26238
26427
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
26428
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
26239
26429
|
#
|
26240
26430
|
# @option params [Integer] :backtrack_window
|
26241
26431
|
# The target backtrack window, in seconds. To disable backtracking, set
|
@@ -26480,6 +26670,59 @@ module Aws::RDS
|
|
26480
26670
|
# @option params [Types::RdsCustomClusterConfiguration] :rds_custom_cluster_configuration
|
26481
26671
|
# Reserved for future use.
|
26482
26672
|
#
|
26673
|
+
# @option params [Integer] :monitoring_interval
|
26674
|
+
# The interval, in seconds, between points when Enhanced Monitoring
|
26675
|
+
# metrics are collected for the DB cluster. To turn off collecting
|
26676
|
+
# Enhanced Monitoring metrics, specify `0`.
|
26677
|
+
#
|
26678
|
+
# If `MonitoringRoleArn` is specified, also set `MonitoringInterval` to
|
26679
|
+
# a value other than `0`.
|
26680
|
+
#
|
26681
|
+
# Valid Values: `0 | 1 | 5 | 10 | 15 | 30 | 60`
|
26682
|
+
#
|
26683
|
+
# Default: `0`
|
26684
|
+
#
|
26685
|
+
# @option params [String] :monitoring_role_arn
|
26686
|
+
# The Amazon Resource Name (ARN) for the IAM role that permits RDS to
|
26687
|
+
# send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example
|
26688
|
+
# is `arn:aws:iam:123456789012:role/emaccess`.
|
26689
|
+
#
|
26690
|
+
# If `MonitoringInterval` is set to a value other than `0`, supply a
|
26691
|
+
# `MonitoringRoleArn` value.
|
26692
|
+
#
|
26693
|
+
# @option params [Boolean] :enable_performance_insights
|
26694
|
+
# Specifies whether to turn on Performance Insights for the DB cluster.
|
26695
|
+
#
|
26696
|
+
# @option params [String] :performance_insights_kms_key_id
|
26697
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
26698
|
+
# Performance Insights data.
|
26699
|
+
#
|
26700
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
26701
|
+
# alias ARN, or alias name for the KMS key.
|
26702
|
+
#
|
26703
|
+
# If you don't specify a value for `PerformanceInsightsKMSKeyId`, then
|
26704
|
+
# Amazon RDS uses your default KMS key. There is a default KMS key for
|
26705
|
+
# your Amazon Web Services account. Your Amazon Web Services account has
|
26706
|
+
# a different default KMS key for each Amazon Web Services Region.
|
26707
|
+
#
|
26708
|
+
# @option params [Integer] :performance_insights_retention_period
|
26709
|
+
# The number of days to retain Performance Insights data.
|
26710
|
+
#
|
26711
|
+
# Valid Values:
|
26712
|
+
#
|
26713
|
+
# * `7`
|
26714
|
+
#
|
26715
|
+
# * *month* * 31, where *month* is a number of months from 1-23.
|
26716
|
+
# Examples: `93` (3 months * 31), `341` (11 months * 31), `589` (19
|
26717
|
+
# months * 31)
|
26718
|
+
#
|
26719
|
+
# * `731`
|
26720
|
+
#
|
26721
|
+
# Default: `7` days
|
26722
|
+
#
|
26723
|
+
# If you specify a retention period that isn't valid, such as `94`,
|
26724
|
+
# Amazon RDS issues an error.
|
26725
|
+
#
|
26483
26726
|
# @option params [String] :engine_lifecycle_support
|
26484
26727
|
# The life cycle type for this DB cluster.
|
26485
26728
|
#
|
@@ -26499,8 +26742,8 @@ module Aws::RDS
|
|
26499
26742
|
# support for that engine version. For more information, see the
|
26500
26743
|
# following sections:
|
26501
26744
|
#
|
26502
|
-
# * Amazon Aurora
|
26503
|
-
#
|
26745
|
+
# * Amazon Aurora - [Using Amazon RDS Extended Support][1] in the
|
26746
|
+
# *Amazon Aurora User Guide*
|
26504
26747
|
#
|
26505
26748
|
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
26506
26749
|
# RDS User Guide*
|
@@ -26629,6 +26872,7 @@ module Aws::RDS
|
|
26629
26872
|
# serverless_v2_scaling_configuration: {
|
26630
26873
|
# min_capacity: 1.0,
|
26631
26874
|
# max_capacity: 1.0,
|
26875
|
+
# seconds_until_auto_pause: 1,
|
26632
26876
|
# },
|
26633
26877
|
# network_type: "String",
|
26634
26878
|
# source_db_cluster_resource_id: "String",
|
@@ -26637,6 +26881,11 @@ module Aws::RDS
|
|
26637
26881
|
# transit_gateway_multicast_domain_id: "String",
|
26638
26882
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
26639
26883
|
# },
|
26884
|
+
# monitoring_interval: 1,
|
26885
|
+
# monitoring_role_arn: "String",
|
26886
|
+
# enable_performance_insights: false,
|
26887
|
+
# performance_insights_kms_key_id: "String",
|
26888
|
+
# performance_insights_retention_period: 1,
|
26640
26889
|
# engine_lifecycle_support: "String",
|
26641
26890
|
# })
|
26642
26891
|
#
|
@@ -26760,11 +27009,13 @@ module Aws::RDS
|
|
26760
27009
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
26761
27010
|
# resp.db_cluster.monitoring_interval #=> Integer
|
26762
27011
|
# resp.db_cluster.monitoring_role_arn #=> String
|
27012
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
26763
27013
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
26764
27014
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
26765
27015
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
26766
27016
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
26767
27017
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
27018
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
26768
27019
|
# resp.db_cluster.network_type #=> String
|
26769
27020
|
# resp.db_cluster.db_system_id #=> String
|
26770
27021
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -27623,6 +27874,7 @@ module Aws::RDS
|
|
27623
27874
|
# resp.db_instance.db_instance_arn #=> String
|
27624
27875
|
# resp.db_instance.timezone #=> String
|
27625
27876
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
27877
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
27626
27878
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
27627
27879
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
27628
27880
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
@@ -28032,6 +28284,9 @@ module Aws::RDS
|
|
28032
28284
|
#
|
28033
28285
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.html#MySQL.Procedural.Importing.Enabling.IAM
|
28034
28286
|
#
|
28287
|
+
# @option params [String] :database_insights_mode
|
28288
|
+
# Specifies the mode of Database Insights to enable for the instance.
|
28289
|
+
#
|
28035
28290
|
# @option params [Boolean] :enable_performance_insights
|
28036
28291
|
# Specifies whether to enable Performance Insights for the DB instance.
|
28037
28292
|
#
|
@@ -28284,6 +28539,7 @@ module Aws::RDS
|
|
28284
28539
|
# s3_bucket_name: "String", # required
|
28285
28540
|
# s3_prefix: "String",
|
28286
28541
|
# s3_ingestion_role_arn: "String", # required
|
28542
|
+
# database_insights_mode: "standard", # accepts standard, advanced
|
28287
28543
|
# enable_performance_insights: false,
|
28288
28544
|
# performance_insights_kms_key_id: "String",
|
28289
28545
|
# performance_insights_retention_period: 1,
|
@@ -28421,6 +28677,7 @@ module Aws::RDS
|
|
28421
28677
|
# resp.db_instance.db_instance_arn #=> String
|
28422
28678
|
# resp.db_instance.timezone #=> String
|
28423
28679
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
28680
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
28424
28681
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
28425
28682
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
28426
28683
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
@@ -29378,6 +29635,7 @@ module Aws::RDS
|
|
29378
29635
|
# resp.db_instance.db_instance_arn #=> String
|
29379
29636
|
# resp.db_instance.timezone #=> String
|
29380
29637
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
29638
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
29381
29639
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
29382
29640
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
29383
29641
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
@@ -29808,11 +30066,13 @@ module Aws::RDS
|
|
29808
30066
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
29809
30067
|
# resp.db_cluster.monitoring_interval #=> Integer
|
29810
30068
|
# resp.db_cluster.monitoring_role_arn #=> String
|
30069
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
29811
30070
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
29812
30071
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
29813
30072
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
29814
30073
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
29815
30074
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
30075
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
29816
30076
|
# resp.db_cluster.network_type #=> String
|
29817
30077
|
# resp.db_cluster.db_system_id #=> String
|
29818
30078
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -29998,6 +30258,7 @@ module Aws::RDS
|
|
29998
30258
|
# resp.db_instance.db_instance_arn #=> String
|
29999
30259
|
# resp.db_instance.timezone #=> String
|
30000
30260
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
30261
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
30001
30262
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
30002
30263
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
30003
30264
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
@@ -30650,11 +30911,13 @@ module Aws::RDS
|
|
30650
30911
|
# resp.db_cluster.auto_minor_version_upgrade #=> Boolean
|
30651
30912
|
# resp.db_cluster.monitoring_interval #=> Integer
|
30652
30913
|
# resp.db_cluster.monitoring_role_arn #=> String
|
30914
|
+
# resp.db_cluster.database_insights_mode #=> String, one of "standard", "advanced"
|
30653
30915
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
30654
30916
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
30655
30917
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
30656
30918
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
30657
30919
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
30920
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
|
30658
30921
|
# resp.db_cluster.network_type #=> String
|
30659
30922
|
# resp.db_cluster.db_system_id #=> String
|
30660
30923
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
@@ -30847,6 +31110,7 @@ module Aws::RDS
|
|
30847
31110
|
# resp.db_instance.db_instance_arn #=> String
|
30848
31111
|
# resp.db_instance.timezone #=> String
|
30849
31112
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
31113
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
30850
31114
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
30851
31115
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
30852
31116
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
@@ -31032,11 +31296,11 @@ module Aws::RDS
|
|
31032
31296
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
|
31033
31297
|
#
|
31034
31298
|
# @option params [required, String] :blue_green_deployment_identifier
|
31035
|
-
# The
|
31299
|
+
# The resource ID of the blue/green deployment.
|
31036
31300
|
#
|
31037
31301
|
# Constraints:
|
31038
31302
|
#
|
31039
|
-
# * Must match an existing blue/green deployment
|
31303
|
+
# * Must match an existing blue/green deployment resource ID.
|
31040
31304
|
#
|
31041
31305
|
# ^
|
31042
31306
|
#
|
@@ -31295,6 +31559,7 @@ module Aws::RDS
|
|
31295
31559
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
31296
31560
|
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
31297
31561
|
# resp.global_cluster.global_cluster_members[0].synchronization_status #=> String, one of "connected", "pending-resync"
|
31562
|
+
# resp.global_cluster.endpoint #=> String
|
31298
31563
|
# resp.global_cluster.failover_state.status #=> String, one of "pending", "failing-over", "cancelling"
|
31299
31564
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
31300
31565
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
@@ -31452,6 +31717,7 @@ module Aws::RDS
|
|
31452
31717
|
# resp.db_instance.db_instance_arn #=> String
|
31453
31718
|
# resp.db_instance.timezone #=> String
|
31454
31719
|
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
31720
|
+
# resp.db_instance.database_insights_mode #=> String, one of "standard", "advanced"
|
31455
31721
|
# resp.db_instance.performance_insights_enabled #=> Boolean
|
31456
31722
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
31457
31723
|
# resp.db_instance.performance_insights_retention_period #=> Integer
|
@@ -31528,7 +31794,7 @@ module Aws::RDS
|
|
31528
31794
|
tracer: tracer
|
31529
31795
|
)
|
31530
31796
|
context[:gem_name] = 'aws-sdk-rds'
|
31531
|
-
context[:gem_version] = '1.
|
31797
|
+
context[:gem_version] = '1.262.0'
|
31532
31798
|
Seahorse::Client::Request.new(handlers, context)
|
31533
31799
|
end
|
31534
31800
|
|