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/client.rb
CHANGED
@@ -2539,18 +2539,23 @@ module Aws::RDS
|
|
2539
2539
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
2540
2540
|
#
|
2541
2541
|
# @option params [Array<String>] :availability_zones
|
2542
|
-
# A list of Availability Zones (AZs) where
|
2543
|
-
#
|
2542
|
+
# A list of Availability Zones (AZs) where you specifically want to
|
2543
|
+
# create DB instances in the DB cluster.
|
2544
2544
|
#
|
2545
|
-
# For information on
|
2546
|
-
# see [Choosing the Regions and Availability Zones][1] in the *Amazon
|
2545
|
+
# For information on AZs, see [Availability Zones][1] in the *Amazon
|
2547
2546
|
# Aurora User Guide*.
|
2548
2547
|
#
|
2549
2548
|
# Valid for Cluster Type: Aurora DB clusters only
|
2550
2549
|
#
|
2550
|
+
# Constraints:
|
2551
|
+
#
|
2552
|
+
# * Can't specify more than three AZs.
|
2553
|
+
#
|
2554
|
+
# ^
|
2555
|
+
#
|
2551
2556
|
#
|
2552
2557
|
#
|
2553
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html
|
2558
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html#Concepts.RegionsAndAvailabilityZones.AvailabilityZones
|
2554
2559
|
#
|
2555
2560
|
# @option params [Integer] :backup_retention_period
|
2556
2561
|
# The number of days for which automated backups are retained.
|
@@ -2634,7 +2639,22 @@ module Aws::RDS
|
|
2634
2639
|
#
|
2635
2640
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2636
2641
|
#
|
2637
|
-
# Valid Values:
|
2642
|
+
# Valid Values:
|
2643
|
+
#
|
2644
|
+
# * `aurora-mysql`
|
2645
|
+
#
|
2646
|
+
# * `aurora-postgresql`
|
2647
|
+
#
|
2648
|
+
# * `mysql`
|
2649
|
+
#
|
2650
|
+
# * `postgres`
|
2651
|
+
#
|
2652
|
+
# * `neptune` - For information about using Amazon Neptune, see the [
|
2653
|
+
# *Amazon Neptune User Guide* ][1].
|
2654
|
+
#
|
2655
|
+
#
|
2656
|
+
#
|
2657
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/intro.html
|
2638
2658
|
#
|
2639
2659
|
# @option params [String] :engine_version
|
2640
2660
|
# The version number of the database engine to use.
|
@@ -3369,6 +3389,42 @@ module Aws::RDS
|
|
3369
3389
|
#
|
3370
3390
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
3371
3391
|
#
|
3392
|
+
# @option params [String] :engine_lifecycle_support
|
3393
|
+
# The life cycle type for this DB cluster.
|
3394
|
+
#
|
3395
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
3396
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At the
|
3397
|
+
# end of standard support, you can avoid charges for Extended Support by
|
3398
|
+
# setting the value to `open-source-rds-extended-support-disabled`. In
|
3399
|
+
# this case, creating the DB cluster will fail if the DB major version
|
3400
|
+
# is past its end of standard support date.
|
3401
|
+
#
|
3402
|
+
# </note>
|
3403
|
+
#
|
3404
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
3405
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
3406
|
+
# major engine version on your DB cluster past the end of standard
|
3407
|
+
# support for that engine version. For more information, see the
|
3408
|
+
# following sections:
|
3409
|
+
#
|
3410
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
3411
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
3412
|
+
#
|
3413
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
3414
|
+
# RDS User Guide*
|
3415
|
+
#
|
3416
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3417
|
+
#
|
3418
|
+
# Valid Values: `open-source-rds-extended-support |
|
3419
|
+
# open-source-rds-extended-support-disabled`
|
3420
|
+
#
|
3421
|
+
# Default: `open-source-rds-extended-support`
|
3422
|
+
#
|
3423
|
+
#
|
3424
|
+
#
|
3425
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
3426
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
3427
|
+
#
|
3372
3428
|
# @option params [String] :source_region
|
3373
3429
|
# The source region of the snapshot. This is only needed when the
|
3374
3430
|
# shapshot is encrypted and in a different region.
|
@@ -3580,6 +3636,7 @@ module Aws::RDS
|
|
3580
3636
|
# master_user_secret_kms_key_id: "String",
|
3581
3637
|
# enable_local_write_forwarding: false,
|
3582
3638
|
# ca_certificate_identifier: "String",
|
3639
|
+
# engine_lifecycle_support: "String",
|
3583
3640
|
# source_region: "String",
|
3584
3641
|
# })
|
3585
3642
|
#
|
@@ -3721,6 +3778,7 @@ module Aws::RDS
|
|
3721
3778
|
# resp.db_cluster.storage_throughput #=> Integer
|
3722
3779
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
3723
3780
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
3781
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
3724
3782
|
#
|
3725
3783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
3726
3784
|
#
|
@@ -4809,12 +4867,22 @@ module Aws::RDS
|
|
4809
4867
|
# @option params [String] :license_model
|
4810
4868
|
# The license model information for this DB instance.
|
4811
4869
|
#
|
4870
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
4871
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
4872
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
4873
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
4874
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
4875
|
+
#
|
4876
|
+
# The default for RDS for Db2 is `bring-your-own-license`.
|
4877
|
+
#
|
4878
|
+
# </note>
|
4879
|
+
#
|
4812
4880
|
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
4813
4881
|
# instances.
|
4814
4882
|
#
|
4815
4883
|
# Valid Values:
|
4816
4884
|
#
|
4817
|
-
# * RDS for Db2 - `bring-your-own-license`
|
4885
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
4818
4886
|
#
|
4819
4887
|
# * RDS for MariaDB - `general-public-license`
|
4820
4888
|
#
|
@@ -4826,6 +4894,10 @@ module Aws::RDS
|
|
4826
4894
|
#
|
4827
4895
|
# * RDS for PostgreSQL - `postgresql-license`
|
4828
4896
|
#
|
4897
|
+
#
|
4898
|
+
#
|
4899
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
4900
|
+
#
|
4829
4901
|
# @option params [Integer] :iops
|
4830
4902
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
4831
4903
|
# initially allocate for the DB instance. For information about valid
|
@@ -5422,6 +5494,38 @@ module Aws::RDS
|
|
5422
5494
|
# DB instance, you can't later modify this DB instance to use the
|
5423
5495
|
# single-tenant configuration.
|
5424
5496
|
#
|
5497
|
+
# @option params [String] :engine_lifecycle_support
|
5498
|
+
# The life cycle type for this DB instance.
|
5499
|
+
#
|
5500
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
5501
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
5502
|
+
# the end of standard support, you can avoid charges for Extended
|
5503
|
+
# Support by setting the value to
|
5504
|
+
# `open-source-rds-extended-support-disabled`. In this case, creating
|
5505
|
+
# the DB instance will fail if the DB major version is past its end of
|
5506
|
+
# standard support date.
|
5507
|
+
#
|
5508
|
+
# </note>
|
5509
|
+
#
|
5510
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL. For
|
5511
|
+
# Amazon Aurora DB instances, the life cycle type is managed by the DB
|
5512
|
+
# cluster.
|
5513
|
+
#
|
5514
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
5515
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
5516
|
+
# major engine version on your DB instance past the end of standard
|
5517
|
+
# support for that engine version. For more information, see [Using
|
5518
|
+
# Amazon RDS Extended Support][1] in the *Amazon RDS User Guide*.
|
5519
|
+
#
|
5520
|
+
# Valid Values: `open-source-rds-extended-support |
|
5521
|
+
# open-source-rds-extended-support-disabled`
|
5522
|
+
#
|
5523
|
+
# Default: `open-source-rds-extended-support`
|
5524
|
+
#
|
5525
|
+
#
|
5526
|
+
#
|
5527
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
5528
|
+
#
|
5425
5529
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5426
5530
|
#
|
5427
5531
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -5611,6 +5715,7 @@ module Aws::RDS
|
|
5611
5715
|
# db_system_id: "String",
|
5612
5716
|
# dedicated_log_volume: false,
|
5613
5717
|
# multi_tenant: false,
|
5718
|
+
# engine_lifecycle_support: "String",
|
5614
5719
|
# })
|
5615
5720
|
#
|
5616
5721
|
# @example Response structure
|
@@ -5775,6 +5880,7 @@ module Aws::RDS
|
|
5775
5880
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
5776
5881
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
5777
5882
|
# resp.db_instance.multi_tenant #=> Boolean
|
5883
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
5778
5884
|
#
|
5779
5885
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
5780
5886
|
#
|
@@ -6714,6 +6820,7 @@ module Aws::RDS
|
|
6714
6820
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
6715
6821
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
6716
6822
|
# resp.db_instance.multi_tenant #=> Boolean
|
6823
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
6717
6824
|
#
|
6718
6825
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
6719
6826
|
#
|
@@ -7616,9 +7723,9 @@ module Aws::RDS
|
|
7616
7723
|
# parameter to `db-instance`. For RDS Proxy events, specify `db-proxy`.
|
7617
7724
|
# If this value isn't specified, all events are returned.
|
7618
7725
|
#
|
7619
|
-
# Valid Values
|
7620
|
-
#
|
7621
|
-
#
|
7726
|
+
# Valid Values:` db-instance | db-cluster | db-parameter-group |
|
7727
|
+
# db-security-group | db-snapshot | db-cluster-snapshot | db-proxy |
|
7728
|
+
# zero-etl | custom-engine-version | blue-green-deployment `
|
7622
7729
|
#
|
7623
7730
|
# @option params [Array<String>] :event_categories
|
7624
7731
|
# A list of event categories for a particular source type (`SourceType`)
|
@@ -7816,6 +7923,36 @@ module Aws::RDS
|
|
7816
7923
|
#
|
7817
7924
|
# ^
|
7818
7925
|
#
|
7926
|
+
# @option params [String] :engine_lifecycle_support
|
7927
|
+
# The life cycle type for this global database cluster.
|
7928
|
+
#
|
7929
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
7930
|
+
# which enrolls your global cluster into Amazon RDS Extended Support. At
|
7931
|
+
# the end of standard support, you can avoid charges for Extended
|
7932
|
+
# Support by setting the value to
|
7933
|
+
# `open-source-rds-extended-support-disabled`. In this case, creating
|
7934
|
+
# the global cluster will fail if the DB major version is past its end
|
7935
|
+
# of standard support date.
|
7936
|
+
#
|
7937
|
+
# </note>
|
7938
|
+
#
|
7939
|
+
# This setting only applies to Aurora PostgreSQL-based global databases.
|
7940
|
+
#
|
7941
|
+
# You can use this setting to enroll your global cluster into Amazon RDS
|
7942
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
7943
|
+
# major engine version on your global cluster past the end of standard
|
7944
|
+
# support for that engine version. For more information, see [Using
|
7945
|
+
# Amazon RDS Extended Support][1] in the *Amazon Aurora User Guide*.
|
7946
|
+
#
|
7947
|
+
# Valid Values: `open-source-rds-extended-support |
|
7948
|
+
# open-source-rds-extended-support-disabled`
|
7949
|
+
#
|
7950
|
+
# Default: `open-source-rds-extended-support`
|
7951
|
+
#
|
7952
|
+
#
|
7953
|
+
#
|
7954
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
7955
|
+
#
|
7819
7956
|
# @option params [Boolean] :deletion_protection
|
7820
7957
|
# Specifies whether to enable deletion protection for the new global
|
7821
7958
|
# database cluster. The global database can't be deleted when deletion
|
@@ -7883,6 +8020,7 @@ module Aws::RDS
|
|
7883
8020
|
# source_db_cluster_identifier: "String",
|
7884
8021
|
# engine: "String",
|
7885
8022
|
# engine_version: "String",
|
8023
|
+
# engine_lifecycle_support: "String",
|
7886
8024
|
# deletion_protection: false,
|
7887
8025
|
# database_name: "String",
|
7888
8026
|
# storage_encrypted: false,
|
@@ -7896,6 +8034,7 @@ module Aws::RDS
|
|
7896
8034
|
# resp.global_cluster.status #=> String
|
7897
8035
|
# resp.global_cluster.engine #=> String
|
7898
8036
|
# resp.global_cluster.engine_version #=> String
|
8037
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
7899
8038
|
# resp.global_cluster.database_name #=> String
|
7900
8039
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
7901
8040
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -8928,6 +9067,7 @@ module Aws::RDS
|
|
8928
9067
|
# resp.db_cluster.storage_throughput #=> Integer
|
8929
9068
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
8930
9069
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
9070
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
8931
9071
|
#
|
8932
9072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
8933
9073
|
#
|
@@ -9530,6 +9670,7 @@ module Aws::RDS
|
|
9530
9670
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
9531
9671
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
9532
9672
|
# resp.db_instance.multi_tenant #=> Boolean
|
9673
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
9533
9674
|
#
|
9534
9675
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
9535
9676
|
#
|
@@ -10170,6 +10311,7 @@ module Aws::RDS
|
|
10170
10311
|
# resp.global_cluster.status #=> String
|
10171
10312
|
# resp.global_cluster.engine #=> String
|
10172
10313
|
# resp.global_cluster.engine_version #=> String
|
10314
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
10173
10315
|
# resp.global_cluster.database_name #=> String
|
10174
10316
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
10175
10317
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -12357,6 +12499,7 @@ module Aws::RDS
|
|
12357
12499
|
# resp.db_clusters[0].storage_throughput #=> Integer
|
12358
12500
|
# resp.db_clusters[0].certificate_details.ca_identifier #=> String
|
12359
12501
|
# resp.db_clusters[0].certificate_details.valid_till #=> Time
|
12502
|
+
# resp.db_clusters[0].engine_lifecycle_support #=> String
|
12360
12503
|
#
|
12361
12504
|
#
|
12362
12505
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -13100,6 +13243,7 @@ module Aws::RDS
|
|
13100
13243
|
# resp.db_instances[0].dedicated_log_volume #=> Boolean
|
13101
13244
|
# resp.db_instances[0].is_storage_config_upgrade_available #=> Boolean
|
13102
13245
|
# resp.db_instances[0].multi_tenant #=> Boolean
|
13246
|
+
# resp.db_instances[0].engine_lifecycle_support #=> String
|
13103
13247
|
#
|
13104
13248
|
#
|
13105
13249
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -15747,6 +15891,7 @@ module Aws::RDS
|
|
15747
15891
|
# resp.global_clusters[0].status #=> String
|
15748
15892
|
# resp.global_clusters[0].engine #=> String
|
15749
15893
|
# resp.global_clusters[0].engine_version #=> String
|
15894
|
+
# resp.global_clusters[0].engine_lifecycle_support #=> String
|
15750
15895
|
# resp.global_clusters[0].database_name #=> String
|
15751
15896
|
# resp.global_clusters[0].storage_encrypted #=> Boolean
|
15752
15897
|
# resp.global_clusters[0].deletion_protection #=> Boolean
|
@@ -17656,6 +17801,7 @@ module Aws::RDS
|
|
17656
17801
|
# resp.db_cluster.storage_throughput #=> Integer
|
17657
17802
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
17658
17803
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
17804
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
17659
17805
|
#
|
17660
17806
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
17661
17807
|
#
|
@@ -17781,6 +17927,7 @@ module Aws::RDS
|
|
17781
17927
|
# resp.global_cluster.status #=> String
|
17782
17928
|
# resp.global_cluster.engine #=> String
|
17783
17929
|
# resp.global_cluster.engine_version #=> String
|
17930
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
17784
17931
|
# resp.global_cluster.database_name #=> String
|
17785
17932
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
17786
17933
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -19338,6 +19485,7 @@ module Aws::RDS
|
|
19338
19485
|
# resp.db_cluster.storage_throughput #=> Integer
|
19339
19486
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
19340
19487
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
19488
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
19341
19489
|
#
|
19342
19490
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
19343
19491
|
#
|
@@ -21071,6 +21219,7 @@ module Aws::RDS
|
|
21071
21219
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
21072
21220
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
21073
21221
|
# resp.db_instance.multi_tenant #=> Boolean
|
21222
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
21074
21223
|
#
|
21075
21224
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
21076
21225
|
#
|
@@ -22042,9 +22191,9 @@ module Aws::RDS
|
|
22042
22191
|
# set this parameter to db-instance. For RDS Proxy events, specify
|
22043
22192
|
# `db-proxy`. If this value isn't specified, all events are returned.
|
22044
22193
|
#
|
22045
|
-
# Valid Values
|
22046
|
-
#
|
22047
|
-
#
|
22194
|
+
# Valid Values:` db-instance | db-cluster | db-parameter-group |
|
22195
|
+
# db-security-group | db-snapshot | db-cluster-snapshot | db-proxy |
|
22196
|
+
# zero-etl | custom-engine-version | blue-green-deployment `
|
22048
22197
|
#
|
22049
22198
|
# @option params [Array<String>] :event_categories
|
22050
22199
|
# A list of event categories for a source type (`SourceType`) that you
|
@@ -22246,6 +22395,7 @@ module Aws::RDS
|
|
22246
22395
|
# resp.global_cluster.status #=> String
|
22247
22396
|
# resp.global_cluster.engine #=> String
|
22248
22397
|
# resp.global_cluster.engine_version #=> String
|
22398
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
22249
22399
|
# resp.global_cluster.database_name #=> String
|
22250
22400
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
22251
22401
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -22855,6 +23005,7 @@ module Aws::RDS
|
|
22855
23005
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
22856
23006
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
22857
23007
|
# resp.db_instance.multi_tenant #=> Boolean
|
23008
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
22858
23009
|
#
|
22859
23010
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
22860
23011
|
#
|
@@ -23027,6 +23178,7 @@ module Aws::RDS
|
|
23027
23178
|
# resp.db_cluster.storage_throughput #=> Integer
|
23028
23179
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
23029
23180
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
23181
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
23030
23182
|
#
|
23031
23183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
23032
23184
|
#
|
@@ -23322,6 +23474,7 @@ module Aws::RDS
|
|
23322
23474
|
# resp.db_cluster.storage_throughput #=> Integer
|
23323
23475
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
23324
23476
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
23477
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
23325
23478
|
#
|
23326
23479
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
|
23327
23480
|
#
|
@@ -23567,6 +23720,7 @@ module Aws::RDS
|
|
23567
23720
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
23568
23721
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
23569
23722
|
# resp.db_instance.multi_tenant #=> Boolean
|
23723
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
23570
23724
|
#
|
23571
23725
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
23572
23726
|
#
|
@@ -23753,6 +23907,7 @@ module Aws::RDS
|
|
23753
23907
|
# resp.global_cluster.status #=> String
|
23754
23908
|
# resp.global_cluster.engine #=> String
|
23755
23909
|
# resp.global_cluster.engine_version #=> String
|
23910
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
23756
23911
|
# resp.global_cluster.database_name #=> String
|
23757
23912
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
23758
23913
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -24590,6 +24745,43 @@ module Aws::RDS
|
|
24590
24745
|
#
|
24591
24746
|
# Valid for: Aurora DB clusters only
|
24592
24747
|
#
|
24748
|
+
# @option params [String] :engine_lifecycle_support
|
24749
|
+
# The life cycle type for this DB cluster.
|
24750
|
+
#
|
24751
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
24752
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At the
|
24753
|
+
# end of standard support, you can avoid charges for Extended Support by
|
24754
|
+
# setting the value to `open-source-rds-extended-support-disabled`. In
|
24755
|
+
# this case, RDS automatically upgrades your restored DB cluster to a
|
24756
|
+
# higher engine version, if the major engine version is past its end of
|
24757
|
+
# standard support date.
|
24758
|
+
#
|
24759
|
+
# </note>
|
24760
|
+
#
|
24761
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
24762
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
24763
|
+
# major engine version on your DB cluster past the end of standard
|
24764
|
+
# support for that engine version. For more information, see the
|
24765
|
+
# following sections:
|
24766
|
+
#
|
24767
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
24768
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
24769
|
+
#
|
24770
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
24771
|
+
# RDS User Guide*
|
24772
|
+
#
|
24773
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
24774
|
+
#
|
24775
|
+
# Valid Values: `open-source-rds-extended-support |
|
24776
|
+
# open-source-rds-extended-support-disabled`
|
24777
|
+
#
|
24778
|
+
# Default: `open-source-rds-extended-support`
|
24779
|
+
#
|
24780
|
+
#
|
24781
|
+
#
|
24782
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
24783
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
24784
|
+
#
|
24593
24785
|
# @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
24594
24786
|
#
|
24595
24787
|
# * {Types::RestoreDBClusterFromS3Result#db_cluster #db_cluster} => Types::DBCluster
|
@@ -24710,6 +24902,7 @@ module Aws::RDS
|
|
24710
24902
|
# manage_master_user_password: false,
|
24711
24903
|
# master_user_secret_kms_key_id: "String",
|
24712
24904
|
# storage_type: "String",
|
24905
|
+
# engine_lifecycle_support: "String",
|
24713
24906
|
# })
|
24714
24907
|
#
|
24715
24908
|
# @example Response structure
|
@@ -24850,6 +25043,7 @@ module Aws::RDS
|
|
24850
25043
|
# resp.db_cluster.storage_throughput #=> Integer
|
24851
25044
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
24852
25045
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
25046
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
24853
25047
|
#
|
24854
25048
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
24855
25049
|
#
|
@@ -25308,6 +25502,43 @@ module Aws::RDS
|
|
25308
25502
|
# @option params [Types::RdsCustomClusterConfiguration] :rds_custom_cluster_configuration
|
25309
25503
|
# Reserved for future use.
|
25310
25504
|
#
|
25505
|
+
# @option params [String] :engine_lifecycle_support
|
25506
|
+
# The life cycle type for this DB cluster.
|
25507
|
+
#
|
25508
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
25509
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At the
|
25510
|
+
# end of standard support, you can avoid charges for Extended Support by
|
25511
|
+
# setting the value to `open-source-rds-extended-support-disabled`. In
|
25512
|
+
# this case, RDS automatically upgrades your restored DB cluster to a
|
25513
|
+
# higher engine version, if the major engine version is past its end of
|
25514
|
+
# standard support date.
|
25515
|
+
#
|
25516
|
+
# </note>
|
25517
|
+
#
|
25518
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
25519
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
25520
|
+
# major engine version on your DB cluster past the end of standard
|
25521
|
+
# support for that engine version. For more information, see the
|
25522
|
+
# following sections:
|
25523
|
+
#
|
25524
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
25525
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
25526
|
+
#
|
25527
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
25528
|
+
# RDS User Guide*
|
25529
|
+
#
|
25530
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
25531
|
+
#
|
25532
|
+
# Valid Values: `open-source-rds-extended-support |
|
25533
|
+
# open-source-rds-extended-support-disabled`
|
25534
|
+
#
|
25535
|
+
# Default: `open-source-rds-extended-support`
|
25536
|
+
#
|
25537
|
+
#
|
25538
|
+
#
|
25539
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
25540
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
25541
|
+
#
|
25311
25542
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
25312
25543
|
#
|
25313
25544
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -25429,6 +25660,7 @@ module Aws::RDS
|
|
25429
25660
|
# transit_gateway_multicast_domain_id: "String",
|
25430
25661
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
25431
25662
|
# },
|
25663
|
+
# engine_lifecycle_support: "String",
|
25432
25664
|
# })
|
25433
25665
|
#
|
25434
25666
|
# @example Response structure
|
@@ -25569,6 +25801,7 @@ module Aws::RDS
|
|
25569
25801
|
# resp.db_cluster.storage_throughput #=> Integer
|
25570
25802
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
25571
25803
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
25804
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
25572
25805
|
#
|
25573
25806
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
25574
25807
|
#
|
@@ -26003,6 +26236,43 @@ module Aws::RDS
|
|
26003
26236
|
# @option params [Types::RdsCustomClusterConfiguration] :rds_custom_cluster_configuration
|
26004
26237
|
# Reserved for future use.
|
26005
26238
|
#
|
26239
|
+
# @option params [String] :engine_lifecycle_support
|
26240
|
+
# The life cycle type for this DB cluster.
|
26241
|
+
#
|
26242
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
26243
|
+
# which enrolls your DB cluster into Amazon RDS Extended Support. At the
|
26244
|
+
# end of standard support, you can avoid charges for Extended Support by
|
26245
|
+
# setting the value to `open-source-rds-extended-support-disabled`. In
|
26246
|
+
# this case, RDS automatically upgrades your restored DB cluster to a
|
26247
|
+
# higher engine version, if the major engine version is past its end of
|
26248
|
+
# standard support date.
|
26249
|
+
#
|
26250
|
+
# </note>
|
26251
|
+
#
|
26252
|
+
# You can use this setting to enroll your DB cluster into Amazon RDS
|
26253
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
26254
|
+
# major engine version on your DB cluster past the end of standard
|
26255
|
+
# support for that engine version. For more information, see the
|
26256
|
+
# following sections:
|
26257
|
+
#
|
26258
|
+
# * Amazon Aurora (PostgreSQL only) - [Using Amazon RDS Extended
|
26259
|
+
# Support][1] in the *Amazon Aurora User Guide*
|
26260
|
+
#
|
26261
|
+
# * Amazon RDS - [Using Amazon RDS Extended Support][2] in the *Amazon
|
26262
|
+
# RDS User Guide*
|
26263
|
+
#
|
26264
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
26265
|
+
#
|
26266
|
+
# Valid Values: `open-source-rds-extended-support |
|
26267
|
+
# open-source-rds-extended-support-disabled`
|
26268
|
+
#
|
26269
|
+
# Default: `open-source-rds-extended-support`
|
26270
|
+
#
|
26271
|
+
#
|
26272
|
+
#
|
26273
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
26274
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
26275
|
+
#
|
26006
26276
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
26007
26277
|
#
|
26008
26278
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -26123,6 +26393,7 @@ module Aws::RDS
|
|
26123
26393
|
# transit_gateway_multicast_domain_id: "String",
|
26124
26394
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
26125
26395
|
# },
|
26396
|
+
# engine_lifecycle_support: "String",
|
26126
26397
|
# })
|
26127
26398
|
#
|
26128
26399
|
# @example Response structure
|
@@ -26263,6 +26534,7 @@ module Aws::RDS
|
|
26263
26534
|
# resp.db_cluster.storage_throughput #=> Integer
|
26264
26535
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
26265
26536
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
26537
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
26266
26538
|
#
|
26267
26539
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
26268
26540
|
#
|
@@ -26404,12 +26676,36 @@ module Aws::RDS
|
|
26404
26676
|
# @option params [String] :license_model
|
26405
26677
|
# License model information for the restored DB instance.
|
26406
26678
|
#
|
26407
|
-
#
|
26679
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
26680
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
26681
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
26682
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
26683
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
26684
|
+
#
|
26685
|
+
# </note>
|
26686
|
+
#
|
26687
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
26688
|
+
# instances.
|
26689
|
+
#
|
26690
|
+
# Valid Values:
|
26408
26691
|
#
|
26409
|
-
#
|
26692
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
26693
|
+
#
|
26694
|
+
# * RDS for MariaDB - `general-public-license`
|
26695
|
+
#
|
26696
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
26697
|
+
#
|
26698
|
+
# * RDS for MySQL - `general-public-license`
|
26699
|
+
#
|
26700
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
26701
|
+
#
|
26702
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
26703
|
+
#
|
26704
|
+
# Default: Same as the source.
|
26410
26705
|
#
|
26411
|
-
#
|
26412
|
-
#
|
26706
|
+
#
|
26707
|
+
#
|
26708
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
26413
26709
|
#
|
26414
26710
|
# @option params [String] :db_name
|
26415
26711
|
# The name of the database for the restored DB instance.
|
@@ -26816,6 +27112,39 @@ module Aws::RDS
|
|
26816
27112
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
26817
27113
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
26818
27114
|
#
|
27115
|
+
# @option params [String] :engine_lifecycle_support
|
27116
|
+
# The life cycle type for this DB instance.
|
27117
|
+
#
|
27118
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
27119
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
27120
|
+
# the end of standard support, you can avoid charges for Extended
|
27121
|
+
# Support by setting the value to
|
27122
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
27123
|
+
# automatically upgrades your restored DB instance to a higher engine
|
27124
|
+
# version, if the major engine version is past its end of standard
|
27125
|
+
# support date.
|
27126
|
+
#
|
27127
|
+
# </note>
|
27128
|
+
#
|
27129
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
27130
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
27131
|
+
# major engine version on your DB instance past the end of standard
|
27132
|
+
# support for that engine version. For more information, see [Using
|
27133
|
+
# Amazon RDS Extended Support][1] in the *Amazon RDS User Guide*.
|
27134
|
+
#
|
27135
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL. For
|
27136
|
+
# Amazon Aurora DB instances, the life cycle type is managed by the DB
|
27137
|
+
# cluster.
|
27138
|
+
#
|
27139
|
+
# Valid Values: `open-source-rds-extended-support |
|
27140
|
+
# open-source-rds-extended-support-disabled`
|
27141
|
+
#
|
27142
|
+
# Default: `open-source-rds-extended-support`
|
27143
|
+
#
|
27144
|
+
#
|
27145
|
+
#
|
27146
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
27147
|
+
#
|
26819
27148
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
26820
27149
|
#
|
26821
27150
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
@@ -26912,6 +27241,7 @@ module Aws::RDS
|
|
26912
27241
|
# allocated_storage: 1,
|
26913
27242
|
# dedicated_log_volume: false,
|
26914
27243
|
# ca_certificate_identifier: "String",
|
27244
|
+
# engine_lifecycle_support: "String",
|
26915
27245
|
# })
|
26916
27246
|
#
|
26917
27247
|
# @example Response structure
|
@@ -27076,6 +27406,7 @@ module Aws::RDS
|
|
27076
27406
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
27077
27407
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
27078
27408
|
# resp.db_instance.multi_tenant #=> Boolean
|
27409
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
27079
27410
|
#
|
27080
27411
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
27081
27412
|
#
|
@@ -27602,6 +27933,39 @@ module Aws::RDS
|
|
27602
27933
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
27603
27934
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
27604
27935
|
#
|
27936
|
+
# @option params [String] :engine_lifecycle_support
|
27937
|
+
# The life cycle type for this DB instance.
|
27938
|
+
#
|
27939
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
27940
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
27941
|
+
# the end of standard support, you can avoid charges for Extended
|
27942
|
+
# Support by setting the value to
|
27943
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
27944
|
+
# automatically upgrades your restored DB instance to a higher engine
|
27945
|
+
# version, if the major engine version is past its end of standard
|
27946
|
+
# support date.
|
27947
|
+
#
|
27948
|
+
# </note>
|
27949
|
+
#
|
27950
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
27951
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
27952
|
+
# major engine version on your DB instance past the end of standard
|
27953
|
+
# support for that engine version. For more information, see [Using
|
27954
|
+
# Amazon RDS Extended Support][1] in the *Amazon RDS User Guide*.
|
27955
|
+
#
|
27956
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL. For
|
27957
|
+
# Amazon Aurora DB instances, the life cycle type is managed by the DB
|
27958
|
+
# cluster.
|
27959
|
+
#
|
27960
|
+
# Valid Values: `open-source-rds-extended-support |
|
27961
|
+
# open-source-rds-extended-support-disabled`
|
27962
|
+
#
|
27963
|
+
# Default: `open-source-rds-extended-support`
|
27964
|
+
#
|
27965
|
+
#
|
27966
|
+
#
|
27967
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
27968
|
+
#
|
27605
27969
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
27606
27970
|
#
|
27607
27971
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
@@ -27669,6 +28033,7 @@ module Aws::RDS
|
|
27669
28033
|
# master_user_secret_kms_key_id: "String",
|
27670
28034
|
# dedicated_log_volume: false,
|
27671
28035
|
# ca_certificate_identifier: "String",
|
28036
|
+
# engine_lifecycle_support: "String",
|
27672
28037
|
# })
|
27673
28038
|
#
|
27674
28039
|
# @example Response structure
|
@@ -27833,6 +28198,7 @@ module Aws::RDS
|
|
27833
28198
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
27834
28199
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
27835
28200
|
# resp.db_instance.multi_tenant #=> Boolean
|
28201
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
27836
28202
|
#
|
27837
28203
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
27838
28204
|
#
|
@@ -27993,13 +28359,37 @@ module Aws::RDS
|
|
27993
28359
|
# @option params [String] :license_model
|
27994
28360
|
# The license model information for the restored DB instance.
|
27995
28361
|
#
|
27996
|
-
#
|
28362
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
28363
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
28364
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
28365
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
28366
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
28367
|
+
#
|
28368
|
+
# </note>
|
28369
|
+
#
|
28370
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
28371
|
+
# instances.
|
28372
|
+
#
|
28373
|
+
# Valid Values:
|
28374
|
+
#
|
28375
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
27997
28376
|
#
|
27998
|
-
#
|
27999
|
-
#
|
28377
|
+
# * RDS for MariaDB - `general-public-license`
|
28378
|
+
#
|
28379
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
28380
|
+
#
|
28381
|
+
# * RDS for MySQL - `general-public-license`
|
28382
|
+
#
|
28383
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
28384
|
+
#
|
28385
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
28000
28386
|
#
|
28001
28387
|
# Default: Same as the source.
|
28002
28388
|
#
|
28389
|
+
#
|
28390
|
+
#
|
28391
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
28392
|
+
#
|
28003
28393
|
# @option params [String] :db_name
|
28004
28394
|
# The database name for the restored DB instance.
|
28005
28395
|
#
|
@@ -28402,6 +28792,39 @@ module Aws::RDS
|
|
28402
28792
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
28403
28793
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
28404
28794
|
#
|
28795
|
+
# @option params [String] :engine_lifecycle_support
|
28796
|
+
# The life cycle type for this DB instance.
|
28797
|
+
#
|
28798
|
+
# <note markdown="1"> By default, this value is set to `open-source-rds-extended-support`,
|
28799
|
+
# which enrolls your DB instance into Amazon RDS Extended Support. At
|
28800
|
+
# the end of standard support, you can avoid charges for Extended
|
28801
|
+
# Support by setting the value to
|
28802
|
+
# `open-source-rds-extended-support-disabled`. In this case, RDS
|
28803
|
+
# automatically upgrades your restored DB instance to a higher engine
|
28804
|
+
# version, if the major engine version is past its end of standard
|
28805
|
+
# support date.
|
28806
|
+
#
|
28807
|
+
# </note>
|
28808
|
+
#
|
28809
|
+
# You can use this setting to enroll your DB instance into Amazon RDS
|
28810
|
+
# Extended Support. With RDS Extended Support, you can run the selected
|
28811
|
+
# major engine version on your DB instance past the end of standard
|
28812
|
+
# support for that engine version. For more information, see [Using
|
28813
|
+
# Amazon RDS Extended Support][1] in the *Amazon RDS User Guide*.
|
28814
|
+
#
|
28815
|
+
# This setting applies only to RDS for MySQL and RDS for PostgreSQL. For
|
28816
|
+
# Amazon Aurora DB instances, the life cycle type is managed by the DB
|
28817
|
+
# cluster.
|
28818
|
+
#
|
28819
|
+
# Valid Values: `open-source-rds-extended-support |
|
28820
|
+
# open-source-rds-extended-support-disabled`
|
28821
|
+
#
|
28822
|
+
# Default: `open-source-rds-extended-support`
|
28823
|
+
#
|
28824
|
+
#
|
28825
|
+
#
|
28826
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
28827
|
+
#
|
28405
28828
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
28406
28829
|
#
|
28407
28830
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -28561,6 +28984,7 @@ module Aws::RDS
|
|
28561
28984
|
# allocated_storage: 1,
|
28562
28985
|
# dedicated_log_volume: false,
|
28563
28986
|
# ca_certificate_identifier: "String",
|
28987
|
+
# engine_lifecycle_support: "String",
|
28564
28988
|
# })
|
28565
28989
|
#
|
28566
28990
|
# @example Response structure
|
@@ -28725,6 +29149,7 @@ module Aws::RDS
|
|
28725
29149
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
28726
29150
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
28727
29151
|
# resp.db_instance.multi_tenant #=> Boolean
|
29152
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
28728
29153
|
#
|
28729
29154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
28730
29155
|
#
|
@@ -29125,6 +29550,7 @@ module Aws::RDS
|
|
29125
29550
|
# resp.db_cluster.storage_throughput #=> Integer
|
29126
29551
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
29127
29552
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
29553
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
29128
29554
|
#
|
29129
29555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
29130
29556
|
#
|
@@ -29342,6 +29768,7 @@ module Aws::RDS
|
|
29342
29768
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
29343
29769
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
29344
29770
|
# resp.db_instance.multi_tenant #=> Boolean
|
29771
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
29345
29772
|
#
|
29346
29773
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
29347
29774
|
#
|
@@ -29966,6 +30393,7 @@ module Aws::RDS
|
|
29966
30393
|
# resp.db_cluster.storage_throughput #=> Integer
|
29967
30394
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
29968
30395
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
30396
|
+
# resp.db_cluster.engine_lifecycle_support #=> String
|
29969
30397
|
#
|
29970
30398
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
29971
30399
|
#
|
@@ -30190,6 +30618,7 @@ module Aws::RDS
|
|
30190
30618
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
30191
30619
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
30192
30620
|
# resp.db_instance.multi_tenant #=> Boolean
|
30621
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
30193
30622
|
#
|
30194
30623
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
30195
30624
|
#
|
@@ -30579,6 +31008,7 @@ module Aws::RDS
|
|
30579
31008
|
# resp.global_cluster.status #=> String
|
30580
31009
|
# resp.global_cluster.engine #=> String
|
30581
31010
|
# resp.global_cluster.engine_version #=> String
|
31011
|
+
# resp.global_cluster.engine_lifecycle_support #=> String
|
30582
31012
|
# resp.global_cluster.database_name #=> String
|
30583
31013
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
30584
31014
|
# resp.global_cluster.deletion_protection #=> Boolean
|
@@ -30790,6 +31220,7 @@ module Aws::RDS
|
|
30790
31220
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
30791
31221
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
30792
31222
|
# resp.db_instance.multi_tenant #=> Boolean
|
31223
|
+
# resp.db_instance.engine_lifecycle_support #=> String
|
30793
31224
|
#
|
30794
31225
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
30795
31226
|
#
|
@@ -30813,7 +31244,7 @@ module Aws::RDS
|
|
30813
31244
|
params: params,
|
30814
31245
|
config: config)
|
30815
31246
|
context[:gem_name] = 'aws-sdk-rds'
|
30816
|
-
context[:gem_version] = '1.
|
31247
|
+
context[:gem_version] = '1.232.0'
|
30817
31248
|
Seahorse::Client::Request.new(handlers, context)
|
30818
31249
|
end
|
30819
31250
|
|