aws-sdk-rds 1.230.0 → 1.231.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 +382 -13
- data/lib/aws-sdk-rds/client_api.rb +12 -0
- data/lib/aws-sdk-rds/db_cluster.rb +107 -6
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +37 -0
- data/lib/aws-sdk-rds/db_instance.rb +73 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +33 -0
- data/lib/aws-sdk-rds/event_subscription.rb +6 -6
- data/lib/aws-sdk-rds/resource.rb +97 -9
- data/lib/aws-sdk-rds/types.rb +412 -24
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +16 -7
- data/sig/db_cluster.rbs +6 -1
- data/sig/db_cluster_snapshot.rbs +2 -1
- data/sig/db_instance.rbs +7 -2
- data/sig/db_snapshot.rbs +2 -1
- data/sig/resource.rbs +3 -1
- data/sig/types.rbs +12 -0
- metadata +2 -2
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2057,18 +2057,23 @@ module Aws::RDS
|
|
2057
2057
|
end
|
2058
2058
|
|
2059
2059
|
# @!attribute [rw] availability_zones
|
2060
|
-
# A list of Availability Zones (AZs) where
|
2061
|
-
#
|
2060
|
+
# A list of Availability Zones (AZs) where you specifically want to
|
2061
|
+
# create DB instances in the DB cluster.
|
2062
2062
|
#
|
2063
|
-
# For information on
|
2064
|
-
#
|
2065
|
-
# *Amazon Aurora User Guide*.
|
2063
|
+
# For information on AZs, see [Availability Zones][1] in the *Amazon
|
2064
|
+
# Aurora User Guide*.
|
2066
2065
|
#
|
2067
2066
|
# Valid for Cluster Type: Aurora DB clusters only
|
2068
2067
|
#
|
2068
|
+
# Constraints:
|
2069
2069
|
#
|
2070
|
+
# * Can't specify more than three AZs.
|
2070
2071
|
#
|
2071
|
-
#
|
2072
|
+
# ^
|
2073
|
+
#
|
2074
|
+
#
|
2075
|
+
#
|
2076
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html#Concepts.RegionsAndAvailabilityZones.AvailabilityZones
|
2072
2077
|
# @return [Array<String>]
|
2073
2078
|
#
|
2074
2079
|
# @!attribute [rw] backup_retention_period
|
@@ -2160,7 +2165,22 @@ module Aws::RDS
|
|
2160
2165
|
#
|
2161
2166
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2162
2167
|
#
|
2163
|
-
# Valid Values:
|
2168
|
+
# Valid Values:
|
2169
|
+
#
|
2170
|
+
# * `aurora-mysql`
|
2171
|
+
#
|
2172
|
+
# * `aurora-postgresql`
|
2173
|
+
#
|
2174
|
+
# * `mysql`
|
2175
|
+
#
|
2176
|
+
# * `postgres`
|
2177
|
+
#
|
2178
|
+
# * `neptune` - For information about using Amazon Neptune, see the [
|
2179
|
+
# *Amazon Neptune User Guide* ][1].
|
2180
|
+
#
|
2181
|
+
#
|
2182
|
+
#
|
2183
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/intro.html
|
2164
2184
|
# @return [String]
|
2165
2185
|
#
|
2166
2186
|
# @!attribute [rw] engine_version
|
@@ -2943,6 +2963,44 @@ module Aws::RDS
|
|
2943
2963
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
2944
2964
|
# @return [String]
|
2945
2965
|
#
|
2966
|
+
# @!attribute [rw] engine_lifecycle_support
|
2967
|
+
# The life cycle type for this DB cluster.
|
2968
|
+
#
|
2969
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
2970
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At
|
2971
|
+
# the end of standard support, you can avoid charges for Extended
|
2972
|
+
# Support by setting the value to
|
2973
|
+
# `open-source-rds-extended-support-disabled`. In this case, creating
|
2974
|
+
# the DB cluster will fail if the DB major version is past its end of
|
2975
|
+
# standard support date.
|
2976
|
+
#
|
2977
|
+
# </note>
|
2978
|
+
#
|
2979
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
2980
|
+
# Extended Support. With RDS Extended Support, you can run the
|
2981
|
+
# selected major engine version on your DB cluster past the end of
|
2982
|
+
# standard support for that engine version. For more information, see
|
2983
|
+
# the following sections:
|
2984
|
+
#
|
2985
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
2986
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
2987
|
+
#
|
2988
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
2989
|
+
# RDS User Guide*
|
2990
|
+
#
|
2991
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2992
|
+
#
|
2993
|
+
# Valid Values: `open-source-rds-extended-support |
|
2994
|
+
# open-source-rds-extended-support-disabled`
|
2995
|
+
#
|
2996
|
+
# Default: `open-source-rds-extended-support`
|
2997
|
+
#
|
2998
|
+
#
|
2999
|
+
#
|
3000
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
3001
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
3002
|
+
# @return [String]
|
3003
|
+
#
|
2946
3004
|
# @!attribute [rw] source_region
|
2947
3005
|
# The source region of the snapshot. This is only needed when the
|
2948
3006
|
# shapshot is encrypted and in a different region.
|
@@ -3004,6 +3062,7 @@ module Aws::RDS
|
|
3004
3062
|
:master_user_secret_kms_key_id,
|
3005
3063
|
:enable_local_write_forwarding,
|
3006
3064
|
:ca_certificate_identifier,
|
3065
|
+
:engine_lifecycle_support,
|
3007
3066
|
:source_region)
|
3008
3067
|
SENSITIVE = []
|
3009
3068
|
include Aws::Structure
|
@@ -4522,6 +4581,40 @@ module Aws::RDS
|
|
4522
4581
|
# single-tenant configuration.
|
4523
4582
|
# @return [Boolean]
|
4524
4583
|
#
|
4584
|
+
# @!attribute [rw] engine_lifecycle_support
|
4585
|
+
# The life cycle type for this DB instance.
|
4586
|
+
#
|
4587
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
4588
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
4589
|
+
# the end of standard support, you can avoid charges for Extended
|
4590
|
+
# Support by setting the value to
|
4591
|
+
# `open-source-rds-extended-support-disabled`. In this case, creating
|
4592
|
+
# the DB instance will fail if the DB major version is past its end of
|
4593
|
+
# standard support date.
|
4594
|
+
#
|
4595
|
+
# </note>
|
4596
|
+
#
|
4597
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL.
|
4598
|
+
# For Amazon Aurora DB instances, the life cycle type is managed by
|
4599
|
+
# the DB cluster.
|
4600
|
+
#
|
4601
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
4602
|
+
# Extended Support. With RDS Extended Support, you can run the
|
4603
|
+
# selected major engine version on your DB instance past the end of
|
4604
|
+
# standard support for that engine version. For more information, see
|
4605
|
+
# [Using Amazon RDS Extended Support][1] in the *Amazon RDS User
|
4606
|
+
# Guide*.
|
4607
|
+
#
|
4608
|
+
# Valid Values: `open-source-rds-extended-support |
|
4609
|
+
# open-source-rds-extended-support-disabled`
|
4610
|
+
#
|
4611
|
+
# Default: `open-source-rds-extended-support`
|
4612
|
+
#
|
4613
|
+
#
|
4614
|
+
#
|
4615
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
4616
|
+
# @return [String]
|
4617
|
+
#
|
4525
4618
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
4526
4619
|
#
|
4527
4620
|
class CreateDBInstanceMessage < Struct.new(
|
@@ -4586,7 +4679,8 @@ module Aws::RDS
|
|
4586
4679
|
:ca_certificate_identifier,
|
4587
4680
|
:db_system_id,
|
4588
4681
|
:dedicated_log_volume,
|
4589
|
-
:multi_tenant
|
4682
|
+
:multi_tenant,
|
4683
|
+
:engine_lifecycle_support)
|
4590
4684
|
SENSITIVE = []
|
4591
4685
|
include Aws::Structure
|
4592
4686
|
end
|
@@ -5933,9 +6027,9 @@ module Aws::RDS
|
|
5933
6027
|
# set this parameter to `db-instance`. For RDS Proxy events, specify
|
5934
6028
|
# `db-proxy`. If this value isn't specified, all events are returned.
|
5935
6029
|
#
|
5936
|
-
# Valid Values
|
5937
|
-
#
|
5938
|
-
#
|
6030
|
+
# Valid Values:` db-instance | db-cluster | db-parameter-group |
|
6031
|
+
# db-security-group | db-snapshot | db-cluster-snapshot | db-proxy |
|
6032
|
+
# zero-etl | custom-engine-version | blue-green-deployment `
|
5939
6033
|
# @return [String]
|
5940
6034
|
#
|
5941
6035
|
# @!attribute [rw] event_categories
|
@@ -6075,6 +6169,39 @@ module Aws::RDS
|
|
6075
6169
|
# ^
|
6076
6170
|
# @return [String]
|
6077
6171
|
#
|
6172
|
+
# @!attribute [rw] engine_lifecycle_support
|
6173
|
+
# The life cycle type for this global database cluster.
|
6174
|
+
#
|
6175
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
6176
|
+
# which enrolls your global cluster into Amazon RDS Extended Support.
|
6177
|
+
# At the end of standard support, you can avoid charges for Extended
|
6178
|
+
# Support by setting the value to
|
6179
|
+
# `open-source-rds-extended-support-disabled`. In this case, creating
|
6180
|
+
# the global cluster will fail if the DB major version is past its end
|
6181
|
+
# of standard support date.
|
6182
|
+
#
|
6183
|
+
# </note>
|
6184
|
+
#
|
6185
|
+
# This setting only applies to Aurora PostgreSQL-based global
|
6186
|
+
# databases.
|
6187
|
+
#
|
6188
|
+
# You can use this setting to enroll your global cluster into Amazon
|
6189
|
+
# RDS Extended Support. With RDS Extended Support, you can run the
|
6190
|
+
# selected major engine version on your global cluster past the end of
|
6191
|
+
# standard support for that engine version. For more information, see
|
6192
|
+
# [Using Amazon RDS Extended Support][1] in the *Amazon Aurora User
|
6193
|
+
# Guide*.
|
6194
|
+
#
|
6195
|
+
# Valid Values: `open-source-rds-extended-support |
|
6196
|
+
# open-source-rds-extended-support-disabled`
|
6197
|
+
#
|
6198
|
+
# Default: `open-source-rds-extended-support`
|
6199
|
+
#
|
6200
|
+
#
|
6201
|
+
#
|
6202
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
6203
|
+
# @return [String]
|
6204
|
+
#
|
6078
6205
|
# @!attribute [rw] deletion_protection
|
6079
6206
|
# Specifies whether to enable deletion protection for the new global
|
6080
6207
|
# database cluster. The global database can't be deleted when
|
@@ -6115,6 +6242,7 @@ module Aws::RDS
|
|
6115
6242
|
:source_db_cluster_identifier,
|
6116
6243
|
:engine,
|
6117
6244
|
:engine_version,
|
6245
|
+
:engine_lifecycle_support,
|
6118
6246
|
:deletion_protection,
|
6119
6247
|
:database_name,
|
6120
6248
|
:storage_encrypted)
|
@@ -6978,6 +7106,12 @@ module Aws::RDS
|
|
6978
7106
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
6979
7107
|
# @return [Types::CertificateDetails]
|
6980
7108
|
#
|
7109
|
+
# @!attribute [rw] engine_lifecycle_support
|
7110
|
+
# The life cycle type for the DB cluster.
|
7111
|
+
#
|
7112
|
+
# For more information, see CreateDBCluster.
|
7113
|
+
# @return [String]
|
7114
|
+
#
|
6981
7115
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
|
6982
7116
|
#
|
6983
7117
|
class DBCluster < Struct.new(
|
@@ -7059,7 +7193,8 @@ module Aws::RDS
|
|
7059
7193
|
:aws_backup_recovery_point_arn,
|
7060
7194
|
:limitless_database,
|
7061
7195
|
:storage_throughput,
|
7062
|
-
:certificate_details
|
7196
|
+
:certificate_details,
|
7197
|
+
:engine_lifecycle_support)
|
7063
7198
|
SENSITIVE = []
|
7064
7199
|
include Aws::Structure
|
7065
7200
|
end
|
@@ -8950,6 +9085,12 @@ module Aws::RDS
|
|
8950
9085
|
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
8951
9086
|
# @return [Boolean]
|
8952
9087
|
#
|
9088
|
+
# @!attribute [rw] engine_lifecycle_support
|
9089
|
+
# The life cycle type for the DB instance.
|
9090
|
+
#
|
9091
|
+
# For more information, see CreateDBInstance.
|
9092
|
+
# @return [String]
|
9093
|
+
#
|
8953
9094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
8954
9095
|
#
|
8955
9096
|
class DBInstance < Struct.new(
|
@@ -9037,7 +9178,8 @@ module Aws::RDS
|
|
9037
9178
|
:percent_progress,
|
9038
9179
|
:dedicated_log_volume,
|
9039
9180
|
:is_storage_config_upgrade_available,
|
9040
|
-
:multi_tenant
|
9181
|
+
:multi_tenant,
|
9182
|
+
:engine_lifecycle_support)
|
9041
9183
|
SENSITIVE = []
|
9042
9184
|
include Aws::Structure
|
9043
9185
|
end
|
@@ -15800,6 +15942,12 @@ module Aws::RDS
|
|
15800
15942
|
# Indicates the database engine version.
|
15801
15943
|
# @return [String]
|
15802
15944
|
#
|
15945
|
+
# @!attribute [rw] engine_lifecycle_support
|
15946
|
+
# The life cycle type for the global cluster.
|
15947
|
+
#
|
15948
|
+
# For more information, see CreateGlobalCluster.
|
15949
|
+
# @return [String]
|
15950
|
+
#
|
15803
15951
|
# @!attribute [rw] database_name
|
15804
15952
|
# The default database name within the new global database cluster.
|
15805
15953
|
# @return [String]
|
@@ -15834,6 +15982,7 @@ module Aws::RDS
|
|
15834
15982
|
:status,
|
15835
15983
|
:engine,
|
15836
15984
|
:engine_version,
|
15985
|
+
:engine_lifecycle_support,
|
15837
15986
|
:database_name,
|
15838
15987
|
:storage_encrypted,
|
15839
15988
|
:deletion_protection,
|
@@ -19460,9 +19609,9 @@ module Aws::RDS
|
|
19460
19609
|
# specify `db-proxy`. If this value isn't specified, all events are
|
19461
19610
|
# returned.
|
19462
19611
|
#
|
19463
|
-
# Valid Values
|
19464
|
-
#
|
19465
|
-
#
|
19612
|
+
# Valid Values:` db-instance | db-cluster | db-parameter-group |
|
19613
|
+
# db-security-group | db-snapshot | db-cluster-snapshot | db-proxy |
|
19614
|
+
# zero-etl | custom-engine-version | blue-green-deployment `
|
19466
19615
|
# @return [String]
|
19467
19616
|
#
|
19468
19617
|
# @!attribute [rw] event_categories
|
@@ -20628,8 +20777,17 @@ module Aws::RDS
|
|
20628
20777
|
#
|
20629
20778
|
# @!attribute [rw] action
|
20630
20779
|
# The type of pending maintenance action that is available for the
|
20631
|
-
# resource.
|
20632
|
-
#
|
20780
|
+
# resource.
|
20781
|
+
#
|
20782
|
+
# For more information about maintenance actions, see [Maintaining a
|
20783
|
+
# DB instance][1].
|
20784
|
+
#
|
20785
|
+
# Valid Values:` system-update | db-upgrade | hardware-maintenance |
|
20786
|
+
# ca-certificate-rotation`
|
20787
|
+
#
|
20788
|
+
#
|
20789
|
+
#
|
20790
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html
|
20633
20791
|
# @return [String]
|
20634
20792
|
#
|
20635
20793
|
# @!attribute [rw] auto_applied_after_date
|
@@ -22503,6 +22661,45 @@ module Aws::RDS
|
|
22503
22661
|
# Valid for: Aurora DB clusters only
|
22504
22662
|
# @return [String]
|
22505
22663
|
#
|
22664
|
+
# @!attribute [rw] engine_lifecycle_support
|
22665
|
+
# The life cycle type for this DB cluster.
|
22666
|
+
#
|
22667
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
22668
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At
|
22669
|
+
# the end of standard support, you can avoid charges for Extended
|
22670
|
+
# Support by setting the value to
|
22671
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
22672
|
+
# automatically upgrades your restored DB cluster to a higher engine
|
22673
|
+
# version, if the major engine version is past its end of standard
|
22674
|
+
# support date.
|
22675
|
+
#
|
22676
|
+
# </note>
|
22677
|
+
#
|
22678
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
22679
|
+
# Extended Support. With RDS Extended Support, you can run the
|
22680
|
+
# selected major engine version on your DB cluster past the end of
|
22681
|
+
# standard support for that engine version. For more information, see
|
22682
|
+
# the following sections:
|
22683
|
+
#
|
22684
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
22685
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
22686
|
+
#
|
22687
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
22688
|
+
# RDS User Guide*
|
22689
|
+
#
|
22690
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
22691
|
+
#
|
22692
|
+
# Valid Values: `open-source-rds-extended-support |
|
22693
|
+
# open-source-rds-extended-support-disabled`
|
22694
|
+
#
|
22695
|
+
# Default: `open-source-rds-extended-support`
|
22696
|
+
#
|
22697
|
+
#
|
22698
|
+
#
|
22699
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
22700
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
22701
|
+
# @return [String]
|
22702
|
+
#
|
22506
22703
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3Message AWS API Documentation
|
22507
22704
|
#
|
22508
22705
|
class RestoreDBClusterFromS3Message < Struct.new(
|
@@ -22541,7 +22738,8 @@ module Aws::RDS
|
|
22541
22738
|
:network_type,
|
22542
22739
|
:manage_master_user_password,
|
22543
22740
|
:master_user_secret_kms_key_id,
|
22544
|
-
:storage_type
|
22741
|
+
:storage_type,
|
22742
|
+
:engine_lifecycle_support)
|
22545
22743
|
SENSITIVE = []
|
22546
22744
|
include Aws::Structure
|
22547
22745
|
end
|
@@ -23039,6 +23237,45 @@ module Aws::RDS
|
|
23039
23237
|
# Reserved for future use.
|
23040
23238
|
# @return [Types::RdsCustomClusterConfiguration]
|
23041
23239
|
#
|
23240
|
+
# @!attribute [rw] engine_lifecycle_support
|
23241
|
+
# The life cycle type for this DB cluster.
|
23242
|
+
#
|
23243
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
23244
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At
|
23245
|
+
# the end of standard support, you can avoid charges for Extended
|
23246
|
+
# Support by setting the value to
|
23247
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
23248
|
+
# automatically upgrades your restored DB cluster to a higher engine
|
23249
|
+
# version, if the major engine version is past its end of standard
|
23250
|
+
# support date.
|
23251
|
+
#
|
23252
|
+
# </note>
|
23253
|
+
#
|
23254
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
23255
|
+
# Extended Support. With RDS Extended Support, you can run the
|
23256
|
+
# selected major engine version on your DB cluster past the end of
|
23257
|
+
# standard support for that engine version. For more information, see
|
23258
|
+
# the following sections:
|
23259
|
+
#
|
23260
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
23261
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
23262
|
+
#
|
23263
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
23264
|
+
# RDS User Guide*
|
23265
|
+
#
|
23266
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
23267
|
+
#
|
23268
|
+
# Valid Values: `open-source-rds-extended-support |
|
23269
|
+
# open-source-rds-extended-support-disabled`
|
23270
|
+
#
|
23271
|
+
# Default: `open-source-rds-extended-support`
|
23272
|
+
#
|
23273
|
+
#
|
23274
|
+
#
|
23275
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
23276
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
23277
|
+
# @return [String]
|
23278
|
+
#
|
23042
23279
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
23043
23280
|
#
|
23044
23281
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
@@ -23070,7 +23307,8 @@ module Aws::RDS
|
|
23070
23307
|
:publicly_accessible,
|
23071
23308
|
:serverless_v2_scaling_configuration,
|
23072
23309
|
:network_type,
|
23073
|
-
:rds_custom_cluster_configuration
|
23310
|
+
:rds_custom_cluster_configuration,
|
23311
|
+
:engine_lifecycle_support)
|
23074
23312
|
SENSITIVE = []
|
23075
23313
|
include Aws::Structure
|
23076
23314
|
end
|
@@ -23540,6 +23778,45 @@ module Aws::RDS
|
|
23540
23778
|
# Reserved for future use.
|
23541
23779
|
# @return [Types::RdsCustomClusterConfiguration]
|
23542
23780
|
#
|
23781
|
+
# @!attribute [rw] engine_lifecycle_support
|
23782
|
+
# The life cycle type for this DB cluster.
|
23783
|
+
#
|
23784
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
23785
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At
|
23786
|
+
# the end of standard support, you can avoid charges for Extended
|
23787
|
+
# Support by setting the value to
|
23788
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
23789
|
+
# automatically upgrades your restored DB cluster to a higher engine
|
23790
|
+
# version, if the major engine version is past its end of standard
|
23791
|
+
# support date.
|
23792
|
+
#
|
23793
|
+
# </note>
|
23794
|
+
#
|
23795
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
23796
|
+
# Extended Support. With RDS Extended Support, you can run the
|
23797
|
+
# selected major engine version on your DB cluster past the end of
|
23798
|
+
# standard support for that engine version. For more information, see
|
23799
|
+
# the following sections:
|
23800
|
+
#
|
23801
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
23802
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
23803
|
+
#
|
23804
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
23805
|
+
# RDS User Guide*
|
23806
|
+
#
|
23807
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
23808
|
+
#
|
23809
|
+
# Valid Values: `open-source-rds-extended-support |
|
23810
|
+
# open-source-rds-extended-support-disabled`
|
23811
|
+
#
|
23812
|
+
# Default: `open-source-rds-extended-support`
|
23813
|
+
#
|
23814
|
+
#
|
23815
|
+
#
|
23816
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
23817
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
23818
|
+
# @return [String]
|
23819
|
+
#
|
23543
23820
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
23544
23821
|
#
|
23545
23822
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
@@ -23571,7 +23848,8 @@ module Aws::RDS
|
|
23571
23848
|
:serverless_v2_scaling_configuration,
|
23572
23849
|
:network_type,
|
23573
23850
|
:source_db_cluster_resource_id,
|
23574
|
-
:rds_custom_cluster_configuration
|
23851
|
+
:rds_custom_cluster_configuration,
|
23852
|
+
:engine_lifecycle_support)
|
23575
23853
|
SENSITIVE = []
|
23576
23854
|
include Aws::Structure
|
23577
23855
|
end
|
@@ -24181,6 +24459,41 @@ module Aws::RDS
|
|
24181
24459
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
24182
24460
|
# @return [String]
|
24183
24461
|
#
|
24462
|
+
# @!attribute [rw] engine_lifecycle_support
|
24463
|
+
# The life cycle type for this DB instance.
|
24464
|
+
#
|
24465
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
24466
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
24467
|
+
# the end of standard support, you can avoid charges for Extended
|
24468
|
+
# Support by setting the value to
|
24469
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
24470
|
+
# automatically upgrades your restored DB instance to a higher engine
|
24471
|
+
# version, if the major engine version is past its end of standard
|
24472
|
+
# support date.
|
24473
|
+
#
|
24474
|
+
# </note>
|
24475
|
+
#
|
24476
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
24477
|
+
# Extended Support. With RDS Extended Support, you can run the
|
24478
|
+
# selected major engine version on your DB instance past the end of
|
24479
|
+
# standard support for that engine version. For more information, see
|
24480
|
+
# [Using Amazon RDS Extended Support][1] in the *Amazon RDS User
|
24481
|
+
# Guide*.
|
24482
|
+
#
|
24483
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL.
|
24484
|
+
# For Amazon Aurora DB instances, the life cycle type is managed by
|
24485
|
+
# the DB cluster.
|
24486
|
+
#
|
24487
|
+
# Valid Values: `open-source-rds-extended-support |
|
24488
|
+
# open-source-rds-extended-support-disabled`
|
24489
|
+
#
|
24490
|
+
# Default: `open-source-rds-extended-support`
|
24491
|
+
#
|
24492
|
+
#
|
24493
|
+
#
|
24494
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
24495
|
+
# @return [String]
|
24496
|
+
#
|
24184
24497
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
|
24185
24498
|
#
|
24186
24499
|
class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
|
@@ -24224,7 +24537,8 @@ module Aws::RDS
|
|
24224
24537
|
:db_cluster_snapshot_identifier,
|
24225
24538
|
:allocated_storage,
|
24226
24539
|
:dedicated_log_volume,
|
24227
|
-
:ca_certificate_identifier
|
24540
|
+
:ca_certificate_identifier,
|
24541
|
+
:engine_lifecycle_support)
|
24228
24542
|
SENSITIVE = []
|
24229
24543
|
include Aws::Structure
|
24230
24544
|
end
|
@@ -24808,6 +25122,41 @@ module Aws::RDS
|
|
24808
25122
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
24809
25123
|
# @return [String]
|
24810
25124
|
#
|
25125
|
+
# @!attribute [rw] engine_lifecycle_support
|
25126
|
+
# The life cycle type for this DB instance.
|
25127
|
+
#
|
25128
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
25129
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
25130
|
+
# the end of standard support, you can avoid charges for Extended
|
25131
|
+
# Support by setting the value to
|
25132
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
25133
|
+
# automatically upgrades your restored DB instance to a higher engine
|
25134
|
+
# version, if the major engine version is past its end of standard
|
25135
|
+
# support date.
|
25136
|
+
#
|
25137
|
+
# </note>
|
25138
|
+
#
|
25139
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
25140
|
+
# Extended Support. With RDS Extended Support, you can run the
|
25141
|
+
# selected major engine version on your DB instance past the end of
|
25142
|
+
# standard support for that engine version. For more information, see
|
25143
|
+
# [Using Amazon RDS Extended Support][1] in the *Amazon RDS User
|
25144
|
+
# Guide*.
|
25145
|
+
#
|
25146
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL.
|
25147
|
+
# For Amazon Aurora DB instances, the life cycle type is managed by
|
25148
|
+
# the DB cluster.
|
25149
|
+
#
|
25150
|
+
# Valid Values: `open-source-rds-extended-support |
|
25151
|
+
# open-source-rds-extended-support-disabled`
|
25152
|
+
#
|
25153
|
+
# Default: `open-source-rds-extended-support`
|
25154
|
+
#
|
25155
|
+
#
|
25156
|
+
#
|
25157
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
25158
|
+
# @return [String]
|
25159
|
+
#
|
24811
25160
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
|
24812
25161
|
#
|
24813
25162
|
class RestoreDBInstanceFromS3Message < Struct.new(
|
@@ -24860,7 +25209,8 @@ module Aws::RDS
|
|
24860
25209
|
:manage_master_user_password,
|
24861
25210
|
:master_user_secret_kms_key_id,
|
24862
25211
|
:dedicated_log_volume,
|
24863
|
-
:ca_certificate_identifier
|
25212
|
+
:ca_certificate_identifier,
|
25213
|
+
:engine_lifecycle_support)
|
24864
25214
|
SENSITIVE = []
|
24865
25215
|
include Aws::Structure
|
24866
25216
|
end
|
@@ -25477,6 +25827,41 @@ module Aws::RDS
|
|
25477
25827
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
25478
25828
|
# @return [String]
|
25479
25829
|
#
|
25830
|
+
# @!attribute [rw] engine_lifecycle_support
|
25831
|
+
# The life cycle type for this DB instance.
|
25832
|
+
#
|
25833
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
25834
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
25835
|
+
# the end of standard support, you can avoid charges for Extended
|
25836
|
+
# Support by setting the value to
|
25837
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
25838
|
+
# automatically upgrades your restored DB instance to a higher engine
|
25839
|
+
# version, if the major engine version is past its end of standard
|
25840
|
+
# support date.
|
25841
|
+
#
|
25842
|
+
# </note>
|
25843
|
+
#
|
25844
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
25845
|
+
# Extended Support. With RDS Extended Support, you can run the
|
25846
|
+
# selected major engine version on your DB instance past the end of
|
25847
|
+
# standard support for that engine version. For more information, see
|
25848
|
+
# [Using Amazon RDS Extended Support][1] in the *Amazon RDS User
|
25849
|
+
# Guide*.
|
25850
|
+
#
|
25851
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL.
|
25852
|
+
# For Amazon Aurora DB instances, the life cycle type is managed by
|
25853
|
+
# the DB cluster.
|
25854
|
+
#
|
25855
|
+
# Valid Values: `open-source-rds-extended-support |
|
25856
|
+
# open-source-rds-extended-support-disabled`
|
25857
|
+
#
|
25858
|
+
# Default: `open-source-rds-extended-support`
|
25859
|
+
#
|
25860
|
+
#
|
25861
|
+
#
|
25862
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
25863
|
+
# @return [String]
|
25864
|
+
#
|
25480
25865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
25481
25866
|
#
|
25482
25867
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
@@ -25524,7 +25909,8 @@ module Aws::RDS
|
|
25524
25909
|
:storage_throughput,
|
25525
25910
|
:allocated_storage,
|
25526
25911
|
:dedicated_log_volume,
|
25527
|
-
:ca_certificate_identifier
|
25912
|
+
:ca_certificate_identifier,
|
25913
|
+
:engine_lifecycle_support)
|
25528
25914
|
SENSITIVE = []
|
25529
25915
|
include Aws::Structure
|
25530
25916
|
end
|
@@ -27041,6 +27427,8 @@ module Aws::RDS
|
|
27041
27427
|
# @!attribute [rw] auto_upgrade
|
27042
27428
|
# Indicates whether the target version is applied to any source DB
|
27043
27429
|
# instances that have `AutoMinorVersionUpgrade` set to true.
|
27430
|
+
#
|
27431
|
+
# This parameter is dynamic, and is set by RDS.
|
27044
27432
|
# @return [Boolean]
|
27045
27433
|
#
|
27046
27434
|
# @!attribute [rw] is_major_version_upgrade
|