aws-sdk-rds 1.230.0 → 1.232.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +452 -21
- 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 +116 -5
- data/lib/aws-sdk-rds/db_snapshot.rb +61 -4
- data/lib/aws-sdk-rds/event_subscription.rb +6 -6
- data/lib/aws-sdk-rds/resource.rb +112 -10
- data/lib/aws-sdk-rds/types.rb +486 -33
- 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
|
+
#
|
2070
|
+
# * Can't specify more than three AZs.
|
2071
|
+
#
|
2072
|
+
# ^
|
2069
2073
|
#
|
2070
2074
|
#
|
2071
|
-
#
|
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
|
@@ -3860,12 +3919,23 @@ module Aws::RDS
|
|
3860
3919
|
# @!attribute [rw] license_model
|
3861
3920
|
# The license model information for this DB instance.
|
3862
3921
|
#
|
3922
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
3923
|
+
# Bring Your Own License (BYOL) model requires a custom parameter
|
3924
|
+
# group. The Db2 license through Amazon Web Services Marketplace model
|
3925
|
+
# requires an Amazon Web Services Marketplace subscription. For more
|
3926
|
+
# information, see [RDS for Db2 licensing options][1] in the *Amazon
|
3927
|
+
# RDS User Guide*.
|
3928
|
+
#
|
3929
|
+
# The default for RDS for Db2 is `bring-your-own-license`.
|
3930
|
+
#
|
3931
|
+
# </note>
|
3932
|
+
#
|
3863
3933
|
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
3864
3934
|
# instances.
|
3865
3935
|
#
|
3866
3936
|
# Valid Values:
|
3867
3937
|
#
|
3868
|
-
# * RDS for Db2 - `bring-your-own-license`
|
3938
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
3869
3939
|
#
|
3870
3940
|
# * RDS for MariaDB - `general-public-license`
|
3871
3941
|
#
|
@@ -3876,6 +3946,10 @@ module Aws::RDS
|
|
3876
3946
|
# * RDS for Oracle - `bring-your-own-license | license-included`
|
3877
3947
|
#
|
3878
3948
|
# * RDS for PostgreSQL - `postgresql-license`
|
3949
|
+
#
|
3950
|
+
#
|
3951
|
+
#
|
3952
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
3879
3953
|
# @return [String]
|
3880
3954
|
#
|
3881
3955
|
# @!attribute [rw] iops
|
@@ -4522,6 +4596,40 @@ module Aws::RDS
|
|
4522
4596
|
# single-tenant configuration.
|
4523
4597
|
# @return [Boolean]
|
4524
4598
|
#
|
4599
|
+
# @!attribute [rw] engine_lifecycle_support
|
4600
|
+
# The life cycle type for this DB instance.
|
4601
|
+
#
|
4602
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
4603
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
4604
|
+
# the end of standard support, you can avoid charges for Extended
|
4605
|
+
# Support by setting the value to
|
4606
|
+
# `open-source-rds-extended-support-disabled`. In this case, creating
|
4607
|
+
# the DB instance will fail if the DB major version is past its end of
|
4608
|
+
# standard support date.
|
4609
|
+
#
|
4610
|
+
# </note>
|
4611
|
+
#
|
4612
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL.
|
4613
|
+
# For Amazon Aurora DB instances, the life cycle type is managed by
|
4614
|
+
# the DB cluster.
|
4615
|
+
#
|
4616
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
4617
|
+
# Extended Support. With RDS Extended Support, you can run the
|
4618
|
+
# selected major engine version on your DB instance past the end of
|
4619
|
+
# standard support for that engine version. For more information, see
|
4620
|
+
# [Using Amazon RDS Extended Support][1] in the *Amazon RDS User
|
4621
|
+
# Guide*.
|
4622
|
+
#
|
4623
|
+
# Valid Values: `open-source-rds-extended-support |
|
4624
|
+
# open-source-rds-extended-support-disabled`
|
4625
|
+
#
|
4626
|
+
# Default: `open-source-rds-extended-support`
|
4627
|
+
#
|
4628
|
+
#
|
4629
|
+
#
|
4630
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
4631
|
+
# @return [String]
|
4632
|
+
#
|
4525
4633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
4526
4634
|
#
|
4527
4635
|
class CreateDBInstanceMessage < Struct.new(
|
@@ -4586,7 +4694,8 @@ module Aws::RDS
|
|
4586
4694
|
:ca_certificate_identifier,
|
4587
4695
|
:db_system_id,
|
4588
4696
|
:dedicated_log_volume,
|
4589
|
-
:multi_tenant
|
4697
|
+
:multi_tenant,
|
4698
|
+
:engine_lifecycle_support)
|
4590
4699
|
SENSITIVE = []
|
4591
4700
|
include Aws::Structure
|
4592
4701
|
end
|
@@ -5933,9 +6042,9 @@ module Aws::RDS
|
|
5933
6042
|
# set this parameter to `db-instance`. For RDS Proxy events, specify
|
5934
6043
|
# `db-proxy`. If this value isn't specified, all events are returned.
|
5935
6044
|
#
|
5936
|
-
# Valid Values
|
5937
|
-
#
|
5938
|
-
#
|
6045
|
+
# Valid Values:` db-instance | db-cluster | db-parameter-group |
|
6046
|
+
# db-security-group | db-snapshot | db-cluster-snapshot | db-proxy |
|
6047
|
+
# zero-etl | custom-engine-version | blue-green-deployment `
|
5939
6048
|
# @return [String]
|
5940
6049
|
#
|
5941
6050
|
# @!attribute [rw] event_categories
|
@@ -6075,6 +6184,39 @@ module Aws::RDS
|
|
6075
6184
|
# ^
|
6076
6185
|
# @return [String]
|
6077
6186
|
#
|
6187
|
+
# @!attribute [rw] engine_lifecycle_support
|
6188
|
+
# The life cycle type for this global database cluster.
|
6189
|
+
#
|
6190
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
6191
|
+
# which enrolls your global cluster into Amazon RDS Extended Support.
|
6192
|
+
# At the end of standard support, you can avoid charges for Extended
|
6193
|
+
# Support by setting the value to
|
6194
|
+
# `open-source-rds-extended-support-disabled`. In this case, creating
|
6195
|
+
# the global cluster will fail if the DB major version is past its end
|
6196
|
+
# of standard support date.
|
6197
|
+
#
|
6198
|
+
# </note>
|
6199
|
+
#
|
6200
|
+
# This setting only applies to Aurora PostgreSQL-based global
|
6201
|
+
# databases.
|
6202
|
+
#
|
6203
|
+
# You can use this setting to enroll your global cluster into Amazon
|
6204
|
+
# RDS Extended Support. With RDS Extended Support, you can run the
|
6205
|
+
# selected major engine version on your global cluster past the end of
|
6206
|
+
# standard support for that engine version. For more information, see
|
6207
|
+
# [Using Amazon RDS Extended Support][1] in the *Amazon Aurora User
|
6208
|
+
# Guide*.
|
6209
|
+
#
|
6210
|
+
# Valid Values: `open-source-rds-extended-support |
|
6211
|
+
# open-source-rds-extended-support-disabled`
|
6212
|
+
#
|
6213
|
+
# Default: `open-source-rds-extended-support`
|
6214
|
+
#
|
6215
|
+
#
|
6216
|
+
#
|
6217
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
6218
|
+
# @return [String]
|
6219
|
+
#
|
6078
6220
|
# @!attribute [rw] deletion_protection
|
6079
6221
|
# Specifies whether to enable deletion protection for the new global
|
6080
6222
|
# database cluster. The global database can't be deleted when
|
@@ -6115,6 +6257,7 @@ module Aws::RDS
|
|
6115
6257
|
:source_db_cluster_identifier,
|
6116
6258
|
:engine,
|
6117
6259
|
:engine_version,
|
6260
|
+
:engine_lifecycle_support,
|
6118
6261
|
:deletion_protection,
|
6119
6262
|
:database_name,
|
6120
6263
|
:storage_encrypted)
|
@@ -6978,6 +7121,12 @@ module Aws::RDS
|
|
6978
7121
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
6979
7122
|
# @return [Types::CertificateDetails]
|
6980
7123
|
#
|
7124
|
+
# @!attribute [rw] engine_lifecycle_support
|
7125
|
+
# The life cycle type for the DB cluster.
|
7126
|
+
#
|
7127
|
+
# For more information, see CreateDBCluster.
|
7128
|
+
# @return [String]
|
7129
|
+
#
|
6981
7130
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
|
6982
7131
|
#
|
6983
7132
|
class DBCluster < Struct.new(
|
@@ -7059,7 +7208,8 @@ module Aws::RDS
|
|
7059
7208
|
:aws_backup_recovery_point_arn,
|
7060
7209
|
:limitless_database,
|
7061
7210
|
:storage_throughput,
|
7062
|
-
:certificate_details
|
7211
|
+
:certificate_details,
|
7212
|
+
:engine_lifecycle_support)
|
7063
7213
|
SENSITIVE = []
|
7064
7214
|
include Aws::Structure
|
7065
7215
|
end
|
@@ -8516,7 +8666,7 @@ module Aws::RDS
|
|
8516
8666
|
#
|
8517
8667
|
# @!attribute [rw] license_model
|
8518
8668
|
# The license model information for this DB instance. This setting
|
8519
|
-
# doesn't apply to RDS Custom DB instances.
|
8669
|
+
# doesn't apply to Amazon Aurora or RDS Custom DB instances.
|
8520
8670
|
# @return [String]
|
8521
8671
|
#
|
8522
8672
|
# @!attribute [rw] iops
|
@@ -8950,6 +9100,12 @@ module Aws::RDS
|
|
8950
9100
|
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
8951
9101
|
# @return [Boolean]
|
8952
9102
|
#
|
9103
|
+
# @!attribute [rw] engine_lifecycle_support
|
9104
|
+
# The life cycle type for the DB instance.
|
9105
|
+
#
|
9106
|
+
# For more information, see CreateDBInstance.
|
9107
|
+
# @return [String]
|
9108
|
+
#
|
8953
9109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
8954
9110
|
#
|
8955
9111
|
class DBInstance < Struct.new(
|
@@ -9037,7 +9193,8 @@ module Aws::RDS
|
|
9037
9193
|
:percent_progress,
|
9038
9194
|
:dedicated_log_volume,
|
9039
9195
|
:is_storage_config_upgrade_available,
|
9040
|
-
:multi_tenant
|
9196
|
+
:multi_tenant,
|
9197
|
+
:engine_lifecycle_support)
|
9041
9198
|
SENSITIVE = []
|
9042
9199
|
include Aws::Structure
|
9043
9200
|
end
|
@@ -15800,6 +15957,12 @@ module Aws::RDS
|
|
15800
15957
|
# Indicates the database engine version.
|
15801
15958
|
# @return [String]
|
15802
15959
|
#
|
15960
|
+
# @!attribute [rw] engine_lifecycle_support
|
15961
|
+
# The life cycle type for the global cluster.
|
15962
|
+
#
|
15963
|
+
# For more information, see CreateGlobalCluster.
|
15964
|
+
# @return [String]
|
15965
|
+
#
|
15803
15966
|
# @!attribute [rw] database_name
|
15804
15967
|
# The default database name within the new global database cluster.
|
15805
15968
|
# @return [String]
|
@@ -15834,6 +15997,7 @@ module Aws::RDS
|
|
15834
15997
|
:status,
|
15835
15998
|
:engine,
|
15836
15999
|
:engine_version,
|
16000
|
+
:engine_lifecycle_support,
|
15837
16001
|
:database_name,
|
15838
16002
|
:storage_encrypted,
|
15839
16003
|
:deletion_protection,
|
@@ -19460,9 +19624,9 @@ module Aws::RDS
|
|
19460
19624
|
# specify `db-proxy`. If this value isn't specified, all events are
|
19461
19625
|
# returned.
|
19462
19626
|
#
|
19463
|
-
# Valid Values
|
19464
|
-
#
|
19465
|
-
#
|
19627
|
+
# Valid Values:` db-instance | db-cluster | db-parameter-group |
|
19628
|
+
# db-security-group | db-snapshot | db-cluster-snapshot | db-proxy |
|
19629
|
+
# zero-etl | custom-engine-version | blue-green-deployment `
|
19466
19630
|
# @return [String]
|
19467
19631
|
#
|
19468
19632
|
# @!attribute [rw] event_categories
|
@@ -20628,8 +20792,17 @@ module Aws::RDS
|
|
20628
20792
|
#
|
20629
20793
|
# @!attribute [rw] action
|
20630
20794
|
# The type of pending maintenance action that is available for the
|
20631
|
-
# resource.
|
20632
|
-
#
|
20795
|
+
# resource.
|
20796
|
+
#
|
20797
|
+
# For more information about maintenance actions, see [Maintaining a
|
20798
|
+
# DB instance][1].
|
20799
|
+
#
|
20800
|
+
# Valid Values:` system-update | db-upgrade | hardware-maintenance |
|
20801
|
+
# ca-certificate-rotation`
|
20802
|
+
#
|
20803
|
+
#
|
20804
|
+
#
|
20805
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html
|
20633
20806
|
# @return [String]
|
20634
20807
|
#
|
20635
20808
|
# @!attribute [rw] auto_applied_after_date
|
@@ -22503,6 +22676,45 @@ module Aws::RDS
|
|
22503
22676
|
# Valid for: Aurora DB clusters only
|
22504
22677
|
# @return [String]
|
22505
22678
|
#
|
22679
|
+
# @!attribute [rw] engine_lifecycle_support
|
22680
|
+
# The life cycle type for this DB cluster.
|
22681
|
+
#
|
22682
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
22683
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At
|
22684
|
+
# the end of standard support, you can avoid charges for Extended
|
22685
|
+
# Support by setting the value to
|
22686
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
22687
|
+
# automatically upgrades your restored DB cluster to a higher engine
|
22688
|
+
# version, if the major engine version is past its end of standard
|
22689
|
+
# support date.
|
22690
|
+
#
|
22691
|
+
# </note>
|
22692
|
+
#
|
22693
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
22694
|
+
# Extended Support. With RDS Extended Support, you can run the
|
22695
|
+
# selected major engine version on your DB cluster past the end of
|
22696
|
+
# standard support for that engine version. For more information, see
|
22697
|
+
# the following sections:
|
22698
|
+
#
|
22699
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
22700
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
22701
|
+
#
|
22702
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
22703
|
+
# RDS User Guide*
|
22704
|
+
#
|
22705
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
22706
|
+
#
|
22707
|
+
# Valid Values: `open-source-rds-extended-support |
|
22708
|
+
# open-source-rds-extended-support-disabled`
|
22709
|
+
#
|
22710
|
+
# Default: `open-source-rds-extended-support`
|
22711
|
+
#
|
22712
|
+
#
|
22713
|
+
#
|
22714
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
22715
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
22716
|
+
# @return [String]
|
22717
|
+
#
|
22506
22718
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3Message AWS API Documentation
|
22507
22719
|
#
|
22508
22720
|
class RestoreDBClusterFromS3Message < Struct.new(
|
@@ -22541,7 +22753,8 @@ module Aws::RDS
|
|
22541
22753
|
:network_type,
|
22542
22754
|
:manage_master_user_password,
|
22543
22755
|
:master_user_secret_kms_key_id,
|
22544
|
-
:storage_type
|
22756
|
+
:storage_type,
|
22757
|
+
:engine_lifecycle_support)
|
22545
22758
|
SENSITIVE = []
|
22546
22759
|
include Aws::Structure
|
22547
22760
|
end
|
@@ -23039,6 +23252,45 @@ module Aws::RDS
|
|
23039
23252
|
# Reserved for future use.
|
23040
23253
|
# @return [Types::RdsCustomClusterConfiguration]
|
23041
23254
|
#
|
23255
|
+
# @!attribute [rw] engine_lifecycle_support
|
23256
|
+
# The life cycle type for this DB cluster.
|
23257
|
+
#
|
23258
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
23259
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At
|
23260
|
+
# the end of standard support, you can avoid charges for Extended
|
23261
|
+
# Support by setting the value to
|
23262
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
23263
|
+
# automatically upgrades your restored DB cluster to a higher engine
|
23264
|
+
# version, if the major engine version is past its end of standard
|
23265
|
+
# support date.
|
23266
|
+
#
|
23267
|
+
# </note>
|
23268
|
+
#
|
23269
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
23270
|
+
# Extended Support. With RDS Extended Support, you can run the
|
23271
|
+
# selected major engine version on your DB cluster past the end of
|
23272
|
+
# standard support for that engine version. For more information, see
|
23273
|
+
# the following sections:
|
23274
|
+
#
|
23275
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
23276
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
23277
|
+
#
|
23278
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
23279
|
+
# RDS User Guide*
|
23280
|
+
#
|
23281
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
23282
|
+
#
|
23283
|
+
# Valid Values: `open-source-rds-extended-support |
|
23284
|
+
# open-source-rds-extended-support-disabled`
|
23285
|
+
#
|
23286
|
+
# Default: `open-source-rds-extended-support`
|
23287
|
+
#
|
23288
|
+
#
|
23289
|
+
#
|
23290
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
23291
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
23292
|
+
# @return [String]
|
23293
|
+
#
|
23042
23294
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
23043
23295
|
#
|
23044
23296
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
@@ -23070,7 +23322,8 @@ module Aws::RDS
|
|
23070
23322
|
:publicly_accessible,
|
23071
23323
|
:serverless_v2_scaling_configuration,
|
23072
23324
|
:network_type,
|
23073
|
-
:rds_custom_cluster_configuration
|
23325
|
+
:rds_custom_cluster_configuration,
|
23326
|
+
:engine_lifecycle_support)
|
23074
23327
|
SENSITIVE = []
|
23075
23328
|
include Aws::Structure
|
23076
23329
|
end
|
@@ -23540,6 +23793,45 @@ module Aws::RDS
|
|
23540
23793
|
# Reserved for future use.
|
23541
23794
|
# @return [Types::RdsCustomClusterConfiguration]
|
23542
23795
|
#
|
23796
|
+
# @!attribute [rw] engine_lifecycle_support
|
23797
|
+
# The life cycle type for this DB cluster.
|
23798
|
+
#
|
23799
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
23800
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At
|
23801
|
+
# the end of standard support, you can avoid charges for Extended
|
23802
|
+
# Support by setting the value to
|
23803
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
23804
|
+
# automatically upgrades your restored DB cluster to a higher engine
|
23805
|
+
# version, if the major engine version is past its end of standard
|
23806
|
+
# support date.
|
23807
|
+
#
|
23808
|
+
# </note>
|
23809
|
+
#
|
23810
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
23811
|
+
# Extended Support. With RDS Extended Support, you can run the
|
23812
|
+
# selected major engine version on your DB cluster past the end of
|
23813
|
+
# standard support for that engine version. For more information, see
|
23814
|
+
# the following sections:
|
23815
|
+
#
|
23816
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
23817
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
23818
|
+
#
|
23819
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
23820
|
+
# RDS User Guide*
|
23821
|
+
#
|
23822
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
23823
|
+
#
|
23824
|
+
# Valid Values: `open-source-rds-extended-support |
|
23825
|
+
# open-source-rds-extended-support-disabled`
|
23826
|
+
#
|
23827
|
+
# Default: `open-source-rds-extended-support`
|
23828
|
+
#
|
23829
|
+
#
|
23830
|
+
#
|
23831
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
23832
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
23833
|
+
# @return [String]
|
23834
|
+
#
|
23543
23835
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
23544
23836
|
#
|
23545
23837
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
@@ -23571,7 +23863,8 @@ module Aws::RDS
|
|
23571
23863
|
:serverless_v2_scaling_configuration,
|
23572
23864
|
:network_type,
|
23573
23865
|
:source_db_cluster_resource_id,
|
23574
|
-
:rds_custom_cluster_configuration
|
23866
|
+
:rds_custom_cluster_configuration,
|
23867
|
+
:engine_lifecycle_support)
|
23575
23868
|
SENSITIVE = []
|
23576
23869
|
include Aws::Structure
|
23577
23870
|
end
|
@@ -23729,12 +24022,37 @@ module Aws::RDS
|
|
23729
24022
|
# @!attribute [rw] license_model
|
23730
24023
|
# License model information for the restored DB instance.
|
23731
24024
|
#
|
23732
|
-
#
|
24025
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
24026
|
+
# Bring Your Own License (BYOL) model requires a custom parameter
|
24027
|
+
# group. The Db2 license through Amazon Web Services Marketplace model
|
24028
|
+
# requires an Amazon Web Services Marketplace subscription. For more
|
24029
|
+
# information, see [RDS for Db2 licensing options][1] in the *Amazon
|
24030
|
+
# RDS User Guide*.
|
23733
24031
|
#
|
23734
|
-
#
|
24032
|
+
# </note>
|
23735
24033
|
#
|
23736
|
-
#
|
23737
|
-
#
|
24034
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
24035
|
+
# instances.
|
24036
|
+
#
|
24037
|
+
# Valid Values:
|
24038
|
+
#
|
24039
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
24040
|
+
#
|
24041
|
+
# * RDS for MariaDB - `general-public-license`
|
24042
|
+
#
|
24043
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
24044
|
+
#
|
24045
|
+
# * RDS for MySQL - `general-public-license`
|
24046
|
+
#
|
24047
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
24048
|
+
#
|
24049
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
24050
|
+
#
|
24051
|
+
# Default: Same as the source.
|
24052
|
+
#
|
24053
|
+
#
|
24054
|
+
#
|
24055
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
23738
24056
|
# @return [String]
|
23739
24057
|
#
|
23740
24058
|
# @!attribute [rw] db_name
|
@@ -24181,6 +24499,41 @@ module Aws::RDS
|
|
24181
24499
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
24182
24500
|
# @return [String]
|
24183
24501
|
#
|
24502
|
+
# @!attribute [rw] engine_lifecycle_support
|
24503
|
+
# The life cycle type for this DB instance.
|
24504
|
+
#
|
24505
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
24506
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
24507
|
+
# the end of standard support, you can avoid charges for Extended
|
24508
|
+
# Support by setting the value to
|
24509
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
24510
|
+
# automatically upgrades your restored DB instance to a higher engine
|
24511
|
+
# version, if the major engine version is past its end of standard
|
24512
|
+
# support date.
|
24513
|
+
#
|
24514
|
+
# </note>
|
24515
|
+
#
|
24516
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
24517
|
+
# Extended Support. With RDS Extended Support, you can run the
|
24518
|
+
# selected major engine version on your DB instance past the end of
|
24519
|
+
# standard support for that engine version. For more information, see
|
24520
|
+
# [Using Amazon RDS Extended Support][1] in the *Amazon RDS User
|
24521
|
+
# Guide*.
|
24522
|
+
#
|
24523
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL.
|
24524
|
+
# For Amazon Aurora DB instances, the life cycle type is managed by
|
24525
|
+
# the DB cluster.
|
24526
|
+
#
|
24527
|
+
# Valid Values: `open-source-rds-extended-support |
|
24528
|
+
# open-source-rds-extended-support-disabled`
|
24529
|
+
#
|
24530
|
+
# Default: `open-source-rds-extended-support`
|
24531
|
+
#
|
24532
|
+
#
|
24533
|
+
#
|
24534
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
24535
|
+
# @return [String]
|
24536
|
+
#
|
24184
24537
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
|
24185
24538
|
#
|
24186
24539
|
class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
|
@@ -24224,7 +24577,8 @@ module Aws::RDS
|
|
24224
24577
|
:db_cluster_snapshot_identifier,
|
24225
24578
|
:allocated_storage,
|
24226
24579
|
:dedicated_log_volume,
|
24227
|
-
:ca_certificate_identifier
|
24580
|
+
:ca_certificate_identifier,
|
24581
|
+
:engine_lifecycle_support)
|
24228
24582
|
SENSITIVE = []
|
24229
24583
|
include Aws::Structure
|
24230
24584
|
end
|
@@ -24808,6 +25162,41 @@ module Aws::RDS
|
|
24808
25162
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
24809
25163
|
# @return [String]
|
24810
25164
|
#
|
25165
|
+
# @!attribute [rw] engine_lifecycle_support
|
25166
|
+
# The life cycle type for this DB instance.
|
25167
|
+
#
|
25168
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
25169
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
25170
|
+
# the end of standard support, you can avoid charges for Extended
|
25171
|
+
# Support by setting the value to
|
25172
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
25173
|
+
# automatically upgrades your restored DB instance to a higher engine
|
25174
|
+
# version, if the major engine version is past its end of standard
|
25175
|
+
# support date.
|
25176
|
+
#
|
25177
|
+
# </note>
|
25178
|
+
#
|
25179
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
25180
|
+
# Extended Support. With RDS Extended Support, you can run the
|
25181
|
+
# selected major engine version on your DB instance past the end of
|
25182
|
+
# standard support for that engine version. For more information, see
|
25183
|
+
# [Using Amazon RDS Extended Support][1] in the *Amazon RDS User
|
25184
|
+
# Guide*.
|
25185
|
+
#
|
25186
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL.
|
25187
|
+
# For Amazon Aurora DB instances, the life cycle type is managed by
|
25188
|
+
# the DB cluster.
|
25189
|
+
#
|
25190
|
+
# Valid Values: `open-source-rds-extended-support |
|
25191
|
+
# open-source-rds-extended-support-disabled`
|
25192
|
+
#
|
25193
|
+
# Default: `open-source-rds-extended-support`
|
25194
|
+
#
|
25195
|
+
#
|
25196
|
+
#
|
25197
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
25198
|
+
# @return [String]
|
25199
|
+
#
|
24811
25200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
|
24812
25201
|
#
|
24813
25202
|
class RestoreDBInstanceFromS3Message < Struct.new(
|
@@ -24860,7 +25249,8 @@ module Aws::RDS
|
|
24860
25249
|
:manage_master_user_password,
|
24861
25250
|
:master_user_secret_kms_key_id,
|
24862
25251
|
:dedicated_log_volume,
|
24863
|
-
:ca_certificate_identifier
|
25252
|
+
:ca_certificate_identifier,
|
25253
|
+
:engine_lifecycle_support)
|
24864
25254
|
SENSITIVE = []
|
24865
25255
|
include Aws::Structure
|
24866
25256
|
end
|
@@ -25027,12 +25417,37 @@ module Aws::RDS
|
|
25027
25417
|
# @!attribute [rw] license_model
|
25028
25418
|
# The license model information for the restored DB instance.
|
25029
25419
|
#
|
25030
|
-
#
|
25420
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
25421
|
+
# Bring Your Own License (BYOL) model requires a custom parameter
|
25422
|
+
# group. The Db2 license through Amazon Web Services Marketplace model
|
25423
|
+
# requires an Amazon Web Services Marketplace subscription. For more
|
25424
|
+
# information, see [RDS for Db2 licensing options][1] in the *Amazon
|
25425
|
+
# RDS User Guide*.
|
25031
25426
|
#
|
25032
|
-
#
|
25033
|
-
#
|
25427
|
+
# </note>
|
25428
|
+
#
|
25429
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
25430
|
+
# instances.
|
25431
|
+
#
|
25432
|
+
# Valid Values:
|
25433
|
+
#
|
25434
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
25435
|
+
#
|
25436
|
+
# * RDS for MariaDB - `general-public-license`
|
25437
|
+
#
|
25438
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
25439
|
+
#
|
25440
|
+
# * RDS for MySQL - `general-public-license`
|
25441
|
+
#
|
25442
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
25443
|
+
#
|
25444
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
25034
25445
|
#
|
25035
25446
|
# Default: Same as the source.
|
25447
|
+
#
|
25448
|
+
#
|
25449
|
+
#
|
25450
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
25036
25451
|
# @return [String]
|
25037
25452
|
#
|
25038
25453
|
# @!attribute [rw] db_name
|
@@ -25477,6 +25892,41 @@ module Aws::RDS
|
|
25477
25892
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
25478
25893
|
# @return [String]
|
25479
25894
|
#
|
25895
|
+
# @!attribute [rw] engine_lifecycle_support
|
25896
|
+
# The life cycle type for this DB instance.
|
25897
|
+
#
|
25898
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
25899
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
25900
|
+
# the end of standard support, you can avoid charges for Extended
|
25901
|
+
# Support by setting the value to
|
25902
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
25903
|
+
# automatically upgrades your restored DB instance to a higher engine
|
25904
|
+
# version, if the major engine version is past its end of standard
|
25905
|
+
# support date.
|
25906
|
+
#
|
25907
|
+
# </note>
|
25908
|
+
#
|
25909
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
25910
|
+
# Extended Support. With RDS Extended Support, you can run the
|
25911
|
+
# selected major engine version on your DB instance past the end of
|
25912
|
+
# standard support for that engine version. For more information, see
|
25913
|
+
# [Using Amazon RDS Extended Support][1] in the *Amazon RDS User
|
25914
|
+
# Guide*.
|
25915
|
+
#
|
25916
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL.
|
25917
|
+
# For Amazon Aurora DB instances, the life cycle type is managed by
|
25918
|
+
# the DB cluster.
|
25919
|
+
#
|
25920
|
+
# Valid Values: `open-source-rds-extended-support |
|
25921
|
+
# open-source-rds-extended-support-disabled`
|
25922
|
+
#
|
25923
|
+
# Default: `open-source-rds-extended-support`
|
25924
|
+
#
|
25925
|
+
#
|
25926
|
+
#
|
25927
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
25928
|
+
# @return [String]
|
25929
|
+
#
|
25480
25930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
25481
25931
|
#
|
25482
25932
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
@@ -25524,7 +25974,8 @@ module Aws::RDS
|
|
25524
25974
|
:storage_throughput,
|
25525
25975
|
:allocated_storage,
|
25526
25976
|
:dedicated_log_volume,
|
25527
|
-
:ca_certificate_identifier
|
25977
|
+
:ca_certificate_identifier,
|
25978
|
+
:engine_lifecycle_support)
|
25528
25979
|
SENSITIVE = []
|
25529
25980
|
include Aws::Structure
|
25530
25981
|
end
|
@@ -27041,6 +27492,8 @@ module Aws::RDS
|
|
27041
27492
|
# @!attribute [rw] auto_upgrade
|
27042
27493
|
# Indicates whether the target version is applied to any source DB
|
27043
27494
|
# instances that have `AutoMinorVersionUpgrade` set to true.
|
27495
|
+
#
|
27496
|
+
# This parameter is dynamic, and is set by RDS.
|
27044
27497
|
# @return [Boolean]
|
27045
27498
|
#
|
27046
27499
|
# @!attribute [rw] is_major_version_upgrade
|