aws-sdk-rds 1.110.0 → 1.115.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/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +354 -33
- data/lib/aws-sdk-rds/client_api.rb +38 -0
- data/lib/aws-sdk-rds/db_cluster.rb +28 -14
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +10 -2
- data/lib/aws-sdk-rds/db_instance.rb +66 -8
- data/lib/aws-sdk-rds/option_group.rb +24 -0
- data/lib/aws-sdk-rds/resource.rb +126 -16
- data/lib/aws-sdk-rds/types.rb +377 -40
- metadata +4 -4
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -960,14 +960,7 @@ module Aws::RDS
|
|
960
960
|
#
|
961
961
|
# * Must specify a valid DB cluster parameter group.
|
962
962
|
#
|
963
|
-
#
|
964
|
-
# as the copy, specify a valid DB parameter group identifier, for
|
965
|
-
# example `my-db-cluster-param-group`, or a valid ARN.
|
966
|
-
#
|
967
|
-
# * If the source DB parameter group is in a different AWS Region than
|
968
|
-
# the copy, specify a valid DB cluster parameter group ARN, for
|
969
|
-
# example
|
970
|
-
# `arn:aws:rds:us-east-1:123456789012:cluster-pg:custom-cluster-group1`.
|
963
|
+
# ^
|
971
964
|
#
|
972
965
|
#
|
973
966
|
#
|
@@ -1237,8 +1230,7 @@ module Aws::RDS
|
|
1237
1230
|
#
|
1238
1231
|
# * Must specify a valid DB parameter group.
|
1239
1232
|
#
|
1240
|
-
#
|
1241
|
-
# `my-db-param-group`, or a valid ARN.
|
1233
|
+
# ^
|
1242
1234
|
#
|
1243
1235
|
#
|
1244
1236
|
#
|
@@ -2101,7 +2093,7 @@ module Aws::RDS
|
|
2101
2093
|
#
|
2102
2094
|
# **Aurora PostgreSQL**
|
2103
2095
|
#
|
2104
|
-
# Possible
|
2096
|
+
# Possible value is `postgresql`.
|
2105
2097
|
#
|
2106
2098
|
#
|
2107
2099
|
#
|
@@ -2109,7 +2101,7 @@ module Aws::RDS
|
|
2109
2101
|
# @return [Array<String>]
|
2110
2102
|
#
|
2111
2103
|
# @!attribute [rw] engine_mode
|
2112
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
2104
|
+
# The DB engine mode of the DB cluster, either `provisioned`,
|
2113
2105
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
2114
2106
|
#
|
2115
2107
|
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
@@ -2205,12 +2197,19 @@ module Aws::RDS
|
|
2205
2197
|
# @return [String]
|
2206
2198
|
#
|
2207
2199
|
# @!attribute [rw] enable_global_write_forwarding
|
2208
|
-
# A value that indicates whether to enable
|
2209
|
-
#
|
2210
|
-
#
|
2211
|
-
#
|
2212
|
-
#
|
2213
|
-
#
|
2200
|
+
# A value that indicates whether to enable this DB cluster to forward
|
2201
|
+
# write operations to the primary cluster of an Aurora global database
|
2202
|
+
# (GlobalCluster). By default, write operations are not allowed on
|
2203
|
+
# Aurora DB clusters that are secondary clusters in an Aurora global
|
2204
|
+
# database.
|
2205
|
+
#
|
2206
|
+
# You can set this value only on Aurora DB clusters that are members
|
2207
|
+
# of an Aurora global database. With this parameter enabled, a
|
2208
|
+
# secondary cluster can forward writes to the current primary cluster
|
2209
|
+
# and the resulting changes are replicated back to this cluster. For
|
2210
|
+
# the primary DB cluster of an Aurora global database, this value is
|
2211
|
+
# used immediately if the primary is demoted by the
|
2212
|
+
# FailoverGlobalCluster API operation, but it does nothing until then.
|
2214
2213
|
# @return [Boolean]
|
2215
2214
|
#
|
2216
2215
|
# @!attribute [rw] source_region
|
@@ -2525,8 +2524,8 @@ module Aws::RDS
|
|
2525
2524
|
# **PostgreSQL**
|
2526
2525
|
#
|
2527
2526
|
# The name of the database to create when the DB instance is created.
|
2528
|
-
# If this parameter isn't specified,
|
2529
|
-
# instance.
|
2527
|
+
# If this parameter isn't specified, a database named `postgres` is
|
2528
|
+
# created in the DB instance.
|
2530
2529
|
#
|
2531
2530
|
# Constraints:
|
2532
2531
|
#
|
@@ -2555,17 +2554,34 @@ module Aws::RDS
|
|
2555
2554
|
#
|
2556
2555
|
# Not applicable. Must be null.
|
2557
2556
|
#
|
2558
|
-
# **Amazon Aurora**
|
2557
|
+
# **Amazon Aurora MySQL**
|
2559
2558
|
#
|
2560
|
-
# The name of the database to create when the primary instance of
|
2561
|
-
# DB cluster is created. If this parameter isn't
|
2562
|
-
# database is created in
|
2559
|
+
# The name of the database to create when the primary DB instance of
|
2560
|
+
# the Aurora MySQL DB cluster is created. If this parameter isn't
|
2561
|
+
# specified for an Aurora MySQL DB cluster, no database is created in
|
2562
|
+
# the DB cluster.
|
2563
2563
|
#
|
2564
2564
|
# Constraints:
|
2565
2565
|
#
|
2566
|
-
# *
|
2566
|
+
# * It must contain 1 to 64 alphanumeric characters.
|
2567
2567
|
#
|
2568
|
-
# *
|
2568
|
+
# * It can't be a word reserved by the database engine.
|
2569
|
+
#
|
2570
|
+
# **Amazon Aurora PostgreSQL**
|
2571
|
+
#
|
2572
|
+
# The name of the database to create when the primary DB instance of
|
2573
|
+
# the Aurora PostgreSQL DB cluster is created. If this parameter
|
2574
|
+
# isn't specified for an Aurora PostgreSQL DB cluster, a database
|
2575
|
+
# named `postgres` is created in the DB cluster.
|
2576
|
+
#
|
2577
|
+
# Constraints:
|
2578
|
+
#
|
2579
|
+
# * It must contain 1 to 63 alphanumeric characters.
|
2580
|
+
#
|
2581
|
+
# * It must begin with a letter or an underscore. Subsequent
|
2582
|
+
# characters can be letters, underscores, or digits (0 to 9).
|
2583
|
+
#
|
2584
|
+
# * It can't be a word reserved by the database engine.
|
2569
2585
|
# @return [String]
|
2570
2586
|
#
|
2571
2587
|
# @!attribute [rw] db_instance_identifier
|
@@ -3397,6 +3413,14 @@ module Aws::RDS
|
|
3397
3413
|
# @!attribute [rw] max_allocated_storage
|
3398
3414
|
# The upper limit to which Amazon RDS can automatically scale the
|
3399
3415
|
# storage of the DB instance.
|
3416
|
+
#
|
3417
|
+
# For more information about this setting, including limitations that
|
3418
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
3419
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
3420
|
+
#
|
3421
|
+
#
|
3422
|
+
#
|
3423
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
3400
3424
|
# @return [Integer]
|
3401
3425
|
#
|
3402
3426
|
# @!attribute [rw] enable_customer_owned_ip
|
@@ -3972,6 +3996,14 @@ module Aws::RDS
|
|
3972
3996
|
# @!attribute [rw] max_allocated_storage
|
3973
3997
|
# The upper limit to which Amazon RDS can automatically scale the
|
3974
3998
|
# storage of the DB instance.
|
3999
|
+
#
|
4000
|
+
# For more information about this setting, including limitations that
|
4001
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
4002
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
4003
|
+
#
|
4004
|
+
#
|
4005
|
+
#
|
4006
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
3975
4007
|
# @return [Integer]
|
3976
4008
|
#
|
3977
4009
|
# @!attribute [rw] source_region
|
@@ -4681,6 +4713,30 @@ module Aws::RDS
|
|
4681
4713
|
# @!attribute [rw] engine_name
|
4682
4714
|
# Specifies the name of the engine that this option group should be
|
4683
4715
|
# associated with.
|
4716
|
+
#
|
4717
|
+
# Valid Values:
|
4718
|
+
#
|
4719
|
+
# * `mariadb`
|
4720
|
+
#
|
4721
|
+
# * `mysql`
|
4722
|
+
#
|
4723
|
+
# * `oracle-ee`
|
4724
|
+
#
|
4725
|
+
# * `oracle-se2`
|
4726
|
+
#
|
4727
|
+
# * `oracle-se1`
|
4728
|
+
#
|
4729
|
+
# * `oracle-se`
|
4730
|
+
#
|
4731
|
+
# * `postgres`
|
4732
|
+
#
|
4733
|
+
# * `sqlserver-ee`
|
4734
|
+
#
|
4735
|
+
# * `sqlserver-se`
|
4736
|
+
#
|
4737
|
+
# * `sqlserver-ex`
|
4738
|
+
#
|
4739
|
+
# * `sqlserver-web`
|
4684
4740
|
# @return [String]
|
4685
4741
|
#
|
4686
4742
|
# @!attribute [rw] major_engine_version
|
@@ -5744,7 +5800,13 @@ module Aws::RDS
|
|
5744
5800
|
# @return [Time]
|
5745
5801
|
#
|
5746
5802
|
# @!attribute [rw] engine
|
5747
|
-
# Specifies the name of the database engine
|
5803
|
+
# Specifies the name of the database engine for this DB cluster
|
5804
|
+
# snapshot.
|
5805
|
+
# @return [String]
|
5806
|
+
#
|
5807
|
+
# @!attribute [rw] engine_mode
|
5808
|
+
# Provides the engine mode of the database engine for this DB cluster
|
5809
|
+
# snapshot.
|
5748
5810
|
# @return [String]
|
5749
5811
|
#
|
5750
5812
|
# @!attribute [rw] allocated_storage
|
@@ -5770,7 +5832,7 @@ module Aws::RDS
|
|
5770
5832
|
# @return [Time]
|
5771
5833
|
#
|
5772
5834
|
# @!attribute [rw] master_username
|
5773
|
-
# Provides the master username for
|
5835
|
+
# Provides the master username for this DB cluster snapshot.
|
5774
5836
|
# @return [String]
|
5775
5837
|
#
|
5776
5838
|
# @!attribute [rw] engine_version
|
@@ -5835,6 +5897,7 @@ module Aws::RDS
|
|
5835
5897
|
:db_cluster_identifier,
|
5836
5898
|
:snapshot_create_time,
|
5837
5899
|
:engine,
|
5900
|
+
:engine_mode,
|
5838
5901
|
:allocated_storage,
|
5839
5902
|
:status,
|
5840
5903
|
:port,
|
@@ -6517,6 +6580,10 @@ module Aws::RDS
|
|
6517
6580
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
6518
6581
|
# @return [Boolean]
|
6519
6582
|
#
|
6583
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
6584
|
+
# The Amazon Resource Name (ARN) of the recovery point in AWS Backup.
|
6585
|
+
# @return [String]
|
6586
|
+
#
|
6520
6587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
6521
6588
|
#
|
6522
6589
|
class DBInstance < Struct.new(
|
@@ -6582,7 +6649,8 @@ module Aws::RDS
|
|
6582
6649
|
:max_allocated_storage,
|
6583
6650
|
:tag_list,
|
6584
6651
|
:db_instance_automated_backups_replications,
|
6585
|
-
:customer_owned_ip_enabled
|
6652
|
+
:customer_owned_ip_enabled,
|
6653
|
+
:aws_backup_recovery_point_arn)
|
6586
6654
|
SENSITIVE = []
|
6587
6655
|
include Aws::Structure
|
6588
6656
|
end
|
@@ -9211,6 +9279,36 @@ module Aws::RDS
|
|
9211
9279
|
#
|
9212
9280
|
# @!attribute [rw] engine
|
9213
9281
|
# The database engine to return.
|
9282
|
+
#
|
9283
|
+
# Valid Values:
|
9284
|
+
#
|
9285
|
+
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
9286
|
+
#
|
9287
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
9288
|
+
#
|
9289
|
+
# * `aurora-postgresql`
|
9290
|
+
#
|
9291
|
+
# * `mariadb`
|
9292
|
+
#
|
9293
|
+
# * `mysql`
|
9294
|
+
#
|
9295
|
+
# * `oracle-ee`
|
9296
|
+
#
|
9297
|
+
# * `oracle-se2`
|
9298
|
+
#
|
9299
|
+
# * `oracle-se1`
|
9300
|
+
#
|
9301
|
+
# * `oracle-se`
|
9302
|
+
#
|
9303
|
+
# * `postgres`
|
9304
|
+
#
|
9305
|
+
# * `sqlserver-ee`
|
9306
|
+
#
|
9307
|
+
# * `sqlserver-se`
|
9308
|
+
#
|
9309
|
+
# * `sqlserver-ex`
|
9310
|
+
#
|
9311
|
+
# * `sqlserver-web`
|
9214
9312
|
# @return [String]
|
9215
9313
|
#
|
9216
9314
|
# @!attribute [rw] engine_version
|
@@ -10809,6 +10907,30 @@ module Aws::RDS
|
|
10809
10907
|
# @!attribute [rw] engine_name
|
10810
10908
|
# A required parameter. Options available for the given engine name
|
10811
10909
|
# are described.
|
10910
|
+
#
|
10911
|
+
# Valid Values:
|
10912
|
+
#
|
10913
|
+
# * `mariadb`
|
10914
|
+
#
|
10915
|
+
# * `mysql`
|
10916
|
+
#
|
10917
|
+
# * `oracle-ee`
|
10918
|
+
#
|
10919
|
+
# * `oracle-se2`
|
10920
|
+
#
|
10921
|
+
# * `oracle-se1`
|
10922
|
+
#
|
10923
|
+
# * `oracle-se`
|
10924
|
+
#
|
10925
|
+
# * `postgres`
|
10926
|
+
#
|
10927
|
+
# * `sqlserver-ee`
|
10928
|
+
#
|
10929
|
+
# * `sqlserver-se`
|
10930
|
+
#
|
10931
|
+
# * `sqlserver-ex`
|
10932
|
+
#
|
10933
|
+
# * `sqlserver-web`
|
10812
10934
|
# @return [String]
|
10813
10935
|
#
|
10814
10936
|
# @!attribute [rw] major_engine_version
|
@@ -10896,6 +11018,30 @@ module Aws::RDS
|
|
10896
11018
|
# @!attribute [rw] engine_name
|
10897
11019
|
# Filters the list of option groups to only include groups associated
|
10898
11020
|
# with a specific database engine.
|
11021
|
+
#
|
11022
|
+
# Valid Values:
|
11023
|
+
#
|
11024
|
+
# * `mariadb`
|
11025
|
+
#
|
11026
|
+
# * `mysql`
|
11027
|
+
#
|
11028
|
+
# * `oracle-ee`
|
11029
|
+
#
|
11030
|
+
# * `oracle-se2`
|
11031
|
+
#
|
11032
|
+
# * `oracle-se1`
|
11033
|
+
#
|
11034
|
+
# * `oracle-se`
|
11035
|
+
#
|
11036
|
+
# * `postgres`
|
11037
|
+
#
|
11038
|
+
# * `sqlserver-ee`
|
11039
|
+
#
|
11040
|
+
# * `sqlserver-se`
|
11041
|
+
#
|
11042
|
+
# * `sqlserver-ex`
|
11043
|
+
#
|
11044
|
+
# * `sqlserver-web`
|
10899
11045
|
# @return [String]
|
10900
11046
|
#
|
10901
11047
|
# @!attribute [rw] major_engine_version
|
@@ -10939,6 +11085,36 @@ module Aws::RDS
|
|
10939
11085
|
#
|
10940
11086
|
# @!attribute [rw] engine
|
10941
11087
|
# The name of the engine to retrieve DB instance options for.
|
11088
|
+
#
|
11089
|
+
# Valid Values:
|
11090
|
+
#
|
11091
|
+
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
11092
|
+
#
|
11093
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
11094
|
+
#
|
11095
|
+
# * `aurora-postgresql`
|
11096
|
+
#
|
11097
|
+
# * `mariadb`
|
11098
|
+
#
|
11099
|
+
# * `mysql`
|
11100
|
+
#
|
11101
|
+
# * `oracle-ee`
|
11102
|
+
#
|
11103
|
+
# * `oracle-se2`
|
11104
|
+
#
|
11105
|
+
# * `oracle-se1`
|
11106
|
+
#
|
11107
|
+
# * `oracle-se`
|
11108
|
+
#
|
11109
|
+
# * `postgres`
|
11110
|
+
#
|
11111
|
+
# * `sqlserver-ee`
|
11112
|
+
#
|
11113
|
+
# * `sqlserver-se`
|
11114
|
+
#
|
11115
|
+
# * `sqlserver-ex`
|
11116
|
+
#
|
11117
|
+
# * `sqlserver-web`
|
10942
11118
|
# @return [String]
|
10943
11119
|
#
|
10944
11120
|
# @!attribute [rw] engine_version
|
@@ -12021,6 +12197,103 @@ module Aws::RDS
|
|
12021
12197
|
include Aws::Structure
|
12022
12198
|
end
|
12023
12199
|
|
12200
|
+
# @note When making an API call, you may pass FailoverGlobalClusterMessage
|
12201
|
+
# data as a hash:
|
12202
|
+
#
|
12203
|
+
# {
|
12204
|
+
# global_cluster_identifier: "GlobalClusterIdentifier", # required
|
12205
|
+
# target_db_cluster_identifier: "DBClusterIdentifier", # required
|
12206
|
+
# }
|
12207
|
+
#
|
12208
|
+
# @!attribute [rw] global_cluster_identifier
|
12209
|
+
# Identifier of the Aurora global database (GlobalCluster) that should
|
12210
|
+
# be failed over. The identifier is the unique key assigned by the
|
12211
|
+
# user when the Aurora global database was created. In other words,
|
12212
|
+
# it's the name of the Aurora global database that you want to fail
|
12213
|
+
# over.
|
12214
|
+
#
|
12215
|
+
# Constraints:
|
12216
|
+
#
|
12217
|
+
# * Must match the identifier of an existing GlobalCluster (Aurora
|
12218
|
+
# global database).
|
12219
|
+
#
|
12220
|
+
# ^
|
12221
|
+
# @return [String]
|
12222
|
+
#
|
12223
|
+
# @!attribute [rw] target_db_cluster_identifier
|
12224
|
+
# Identifier of the secondary Aurora DB cluster that you want to
|
12225
|
+
# promote to primary for the Aurora global database (GlobalCluster.)
|
12226
|
+
# Use the Amazon Resource Name (ARN) for the identifier so that Aurora
|
12227
|
+
# can locate the cluster in its AWS Region.
|
12228
|
+
# @return [String]
|
12229
|
+
#
|
12230
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverGlobalClusterMessage AWS API Documentation
|
12231
|
+
#
|
12232
|
+
class FailoverGlobalClusterMessage < Struct.new(
|
12233
|
+
:global_cluster_identifier,
|
12234
|
+
:target_db_cluster_identifier)
|
12235
|
+
SENSITIVE = []
|
12236
|
+
include Aws::Structure
|
12237
|
+
end
|
12238
|
+
|
12239
|
+
# @!attribute [rw] global_cluster
|
12240
|
+
# A data type representing an Aurora global database.
|
12241
|
+
# @return [Types::GlobalCluster]
|
12242
|
+
#
|
12243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverGlobalClusterResult AWS API Documentation
|
12244
|
+
#
|
12245
|
+
class FailoverGlobalClusterResult < Struct.new(
|
12246
|
+
:global_cluster)
|
12247
|
+
SENSITIVE = []
|
12248
|
+
include Aws::Structure
|
12249
|
+
end
|
12250
|
+
|
12251
|
+
# Contains the state of scheduled or in-process failover operations on
|
12252
|
+
# an Aurora global database (GlobalCluster). This Data type is empty
|
12253
|
+
# unless a failover operation is scheduled or is currently underway on
|
12254
|
+
# the Aurora global database.
|
12255
|
+
#
|
12256
|
+
# @!attribute [rw] status
|
12257
|
+
# The current status of the Aurora global database (GlobalCluster).
|
12258
|
+
# Possible values are as follows:
|
12259
|
+
#
|
12260
|
+
# * pending – A request to fail over the Aurora global database
|
12261
|
+
# (GlobalCluster) has been received by the service. The
|
12262
|
+
# `GlobalCluster`'s primary DB cluster and the specified secondary
|
12263
|
+
# DB cluster are being verified before the failover process can
|
12264
|
+
# start.
|
12265
|
+
#
|
12266
|
+
# * failing-over – This status covers the range of Aurora internal
|
12267
|
+
# operations that take place during the failover process, such as
|
12268
|
+
# demoting the primary Aurora DB cluster, promoting the secondary
|
12269
|
+
# Aurora DB, and synchronizing replicas.
|
12270
|
+
#
|
12271
|
+
# * cancelling – The request to fail over the Aurora global database
|
12272
|
+
# (GlobalCluster) was cancelled and the primary Aurora DB cluster
|
12273
|
+
# and the selected secondary Aurora DB cluster are returning to
|
12274
|
+
# their previous states.
|
12275
|
+
# @return [String]
|
12276
|
+
#
|
12277
|
+
# @!attribute [rw] from_db_cluster_arn
|
12278
|
+
# The Amazon Resource Name (ARN) of the Aurora DB cluster that is
|
12279
|
+
# currently being demoted, and which is associated with this state.
|
12280
|
+
# @return [String]
|
12281
|
+
#
|
12282
|
+
# @!attribute [rw] to_db_cluster_arn
|
12283
|
+
# The Amazon Resource Name (ARN) of the Aurora DB cluster that is
|
12284
|
+
# currently being promoted, and which is associated with this state.
|
12285
|
+
# @return [String]
|
12286
|
+
#
|
12287
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverState AWS API Documentation
|
12288
|
+
#
|
12289
|
+
class FailoverState < Struct.new(
|
12290
|
+
:status,
|
12291
|
+
:from_db_cluster_arn,
|
12292
|
+
:to_db_cluster_arn)
|
12293
|
+
SENSITIVE = []
|
12294
|
+
include Aws::Structure
|
12295
|
+
end
|
12296
|
+
|
12024
12297
|
# A filter name and value pair that is used to return a more specific
|
12025
12298
|
# list of results from a describe operation. Filters can be used to
|
12026
12299
|
# match a set of resources by specific criteria, such as IDs. The
|
@@ -12116,6 +12389,14 @@ module Aws::RDS
|
|
12116
12389
|
# database cluster. Currently limited to 1 item.
|
12117
12390
|
# @return [Array<Types::GlobalClusterMember>]
|
12118
12391
|
#
|
12392
|
+
# @!attribute [rw] failover_state
|
12393
|
+
# A data object containing all properties for the current state of an
|
12394
|
+
# in-process or pending failover process for this Aurora global
|
12395
|
+
# database. This object is empty unless the FailoverGlobalCluster API
|
12396
|
+
# operation has been called on this Aurora global database
|
12397
|
+
# (GlobalCluster).
|
12398
|
+
# @return [Types::FailoverState]
|
12399
|
+
#
|
12119
12400
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/GlobalCluster AWS API Documentation
|
12120
12401
|
#
|
12121
12402
|
class GlobalCluster < Struct.new(
|
@@ -12128,7 +12409,8 @@ module Aws::RDS
|
|
12128
12409
|
:database_name,
|
12129
12410
|
:storage_encrypted,
|
12130
12411
|
:deletion_protection,
|
12131
|
-
:global_cluster_members
|
12412
|
+
:global_cluster_members,
|
12413
|
+
:failover_state)
|
12132
12414
|
SENSITIVE = []
|
12133
12415
|
include Aws::Structure
|
12134
12416
|
end
|
@@ -13156,12 +13438,19 @@ module Aws::RDS
|
|
13156
13438
|
# @return [Boolean]
|
13157
13439
|
#
|
13158
13440
|
# @!attribute [rw] enable_global_write_forwarding
|
13159
|
-
# A value that indicates whether to enable
|
13160
|
-
#
|
13161
|
-
#
|
13162
|
-
#
|
13163
|
-
#
|
13164
|
-
#
|
13441
|
+
# A value that indicates whether to enable this DB cluster to forward
|
13442
|
+
# write operations to the primary cluster of an Aurora global database
|
13443
|
+
# (GlobalCluster). By default, write operations are not allowed on
|
13444
|
+
# Aurora DB clusters that are secondary clusters in an Aurora global
|
13445
|
+
# database.
|
13446
|
+
#
|
13447
|
+
# You can set this value only on Aurora DB clusters that are members
|
13448
|
+
# of an Aurora global database. With this parameter enabled, a
|
13449
|
+
# secondary cluster can forward writes to the current primary cluster
|
13450
|
+
# and the resulting changes are replicated back to this cluster. For
|
13451
|
+
# the primary DB cluster of an Aurora global database, this value is
|
13452
|
+
# used immediately if the primary is demoted by the
|
13453
|
+
# FailoverGlobalCluster API operation, but it does nothing until then.
|
13165
13454
|
# @return [Boolean]
|
13166
13455
|
#
|
13167
13456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
@@ -13386,6 +13675,7 @@ module Aws::RDS
|
|
13386
13675
|
# certificate_rotation_restart: false,
|
13387
13676
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
13388
13677
|
# enable_customer_owned_ip: false,
|
13678
|
+
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
13389
13679
|
# }
|
13390
13680
|
#
|
13391
13681
|
# @!attribute [rw] db_instance_identifier
|
@@ -14026,6 +14316,14 @@ module Aws::RDS
|
|
14026
14316
|
# @!attribute [rw] max_allocated_storage
|
14027
14317
|
# The upper limit to which Amazon RDS can automatically scale the
|
14028
14318
|
# storage of the DB instance.
|
14319
|
+
#
|
14320
|
+
# For more information about this setting, including limitations that
|
14321
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
14322
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
14323
|
+
#
|
14324
|
+
#
|
14325
|
+
#
|
14326
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
14029
14327
|
# @return [Integer]
|
14030
14328
|
#
|
14031
14329
|
# @!attribute [rw] certificate_rotation_restart
|
@@ -14100,6 +14398,10 @@ module Aws::RDS
|
|
14100
14398
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
14101
14399
|
# @return [Boolean]
|
14102
14400
|
#
|
14401
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
14402
|
+
# The Amazon Resource Name (ARN) of the recovery point in AWS Backup.
|
14403
|
+
# @return [String]
|
14404
|
+
#
|
14103
14405
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
14104
14406
|
#
|
14105
14407
|
class ModifyDBInstanceMessage < Struct.new(
|
@@ -14146,7 +14448,8 @@ module Aws::RDS
|
|
14146
14448
|
:max_allocated_storage,
|
14147
14449
|
:certificate_rotation_restart,
|
14148
14450
|
:replica_mode,
|
14149
|
-
:enable_customer_owned_ip
|
14451
|
+
:enable_customer_owned_ip,
|
14452
|
+
:aws_backup_recovery_point_arn)
|
14150
14453
|
SENSITIVE = []
|
14151
14454
|
include Aws::Structure
|
14152
14455
|
end
|
@@ -18770,6 +19073,14 @@ module Aws::RDS
|
|
18770
19073
|
# @!attribute [rw] max_allocated_storage
|
18771
19074
|
# The upper limit to which Amazon RDS can automatically scale the
|
18772
19075
|
# storage of the DB instance.
|
19076
|
+
#
|
19077
|
+
# For more information about this setting, including limitations that
|
19078
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
19079
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
19080
|
+
#
|
19081
|
+
#
|
19082
|
+
#
|
19083
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
18773
19084
|
# @return [Integer]
|
18774
19085
|
#
|
18775
19086
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
|
@@ -19212,6 +19523,14 @@ module Aws::RDS
|
|
19212
19523
|
# @!attribute [rw] max_allocated_storage
|
19213
19524
|
# The upper limit to which Amazon RDS can automatically scale the
|
19214
19525
|
# storage of the DB instance.
|
19526
|
+
#
|
19527
|
+
# For more information about this setting, including limitations that
|
19528
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
19529
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
19530
|
+
#
|
19531
|
+
#
|
19532
|
+
#
|
19533
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
19215
19534
|
# @return [Integer]
|
19216
19535
|
#
|
19217
19536
|
# @!attribute [rw] source_db_instance_automated_backups_arn
|
@@ -20313,8 +20632,23 @@ module Aws::RDS
|
|
20313
20632
|
# @return [Boolean]
|
20314
20633
|
#
|
20315
20634
|
# @!attribute [rw] is_major_version_upgrade
|
20316
|
-
# A value that indicates whether
|
20317
|
-
# major version.
|
20635
|
+
# A value that indicates whether upgrading to the target version
|
20636
|
+
# requires upgrading the major version of the database engine.
|
20637
|
+
# @return [Boolean]
|
20638
|
+
#
|
20639
|
+
# @!attribute [rw] supported_engine_modes
|
20640
|
+
# A list of the supported DB engine modes for the target engine
|
20641
|
+
# version.
|
20642
|
+
# @return [Array<String>]
|
20643
|
+
#
|
20644
|
+
# @!attribute [rw] supports_parallel_query
|
20645
|
+
# A value that indicates whether you can use Aurora parallel query
|
20646
|
+
# with the target engine version.
|
20647
|
+
# @return [Boolean]
|
20648
|
+
#
|
20649
|
+
# @!attribute [rw] supports_global_databases
|
20650
|
+
# A value that indicates whether you can use Aurora global databases
|
20651
|
+
# with the target engine version.
|
20318
20652
|
# @return [Boolean]
|
20319
20653
|
#
|
20320
20654
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UpgradeTarget AWS API Documentation
|
@@ -20324,7 +20658,10 @@ module Aws::RDS
|
|
20324
20658
|
:engine_version,
|
20325
20659
|
:description,
|
20326
20660
|
:auto_upgrade,
|
20327
|
-
:is_major_version_upgrade
|
20661
|
+
:is_major_version_upgrade,
|
20662
|
+
:supported_engine_modes,
|
20663
|
+
:supports_parallel_query,
|
20664
|
+
:supports_global_databases)
|
20328
20665
|
SENSITIVE = []
|
20329
20666
|
include Aws::Structure
|
20330
20667
|
end
|