aws-sdk-rds 1.152.0 → 1.155.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +406 -25
- data/lib/aws-sdk-rds/client_api.rb +25 -0
- data/lib/aws-sdk-rds/db_cluster.rb +91 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +22 -0
- data/lib/aws-sdk-rds/db_instance.rb +5 -5
- data/lib/aws-sdk-rds/db_snapshot.rb +15 -0
- data/lib/aws-sdk-rds/resource.rb +22 -0
- data/lib/aws-sdk-rds/types.rb +228 -19
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -665,18 +665,28 @@ module Aws::RDS
|
|
665
665
|
# EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either
|
666
666
|
# EC2SecurityGroupName or EC2SecurityGroupId for non-VPC).
|
667
667
|
#
|
668
|
-
#
|
668
|
+
# You can't authorize ingress from an EC2 security group in one Amazon
|
669
669
|
# Web Services Region to an Amazon RDS DB instance in another. You
|
670
670
|
# can't authorize ingress from a VPC security group in one VPC to an
|
671
671
|
# Amazon RDS DB instance in another.
|
672
672
|
#
|
673
|
-
# </note>
|
674
|
-
#
|
675
673
|
# For an overview of CIDR ranges, go to the [Wikipedia Tutorial][1].
|
676
674
|
#
|
675
|
+
# <note markdown="1"> EC2-Classic was retired on August 15, 2022. If you haven't migrated
|
676
|
+
# from EC2-Classic to a VPC, we recommend that you migrate as soon as
|
677
|
+
# possible. For more information, see [Migrate from EC2-Classic to a
|
678
|
+
# VPC][2] in the *Amazon EC2 User Guide*, the blog [EC2-Classic
|
679
|
+
# Networking is Retiring – Here’s How to Prepare][3], and [Moving a DB
|
680
|
+
# instance not in a VPC into a VPC][4] in the *Amazon RDS User Guide*.
|
681
|
+
#
|
682
|
+
# </note>
|
683
|
+
#
|
677
684
|
#
|
678
685
|
#
|
679
686
|
# [1]: http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing
|
687
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
688
|
+
# [3]: http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/
|
689
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html
|
680
690
|
#
|
681
691
|
# @option params [required, String] :db_security_group_name
|
682
692
|
# The name of the DB security group to add authorization to.
|
@@ -1633,6 +1643,7 @@ module Aws::RDS
|
|
1633
1643
|
# resp.db_snapshot.tag_list[0].key #=> String
|
1634
1644
|
# resp.db_snapshot.tag_list[0].value #=> String
|
1635
1645
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
1646
|
+
# resp.db_snapshot.snapshot_database_time #=> Time
|
1636
1647
|
# resp.db_snapshot.snapshot_target #=> String
|
1637
1648
|
#
|
1638
1649
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
@@ -1829,17 +1840,18 @@ module Aws::RDS
|
|
1829
1840
|
#
|
1830
1841
|
# @option params [required, String] :kms_key_id
|
1831
1842
|
# The Amazon Web Services KMS key identifier for an encrypted CEV. A
|
1832
|
-
# symmetric KMS key is required for RDS Custom, but optional
|
1833
|
-
# RDS.
|
1834
|
-
#
|
1835
|
-
# If you have an existing symmetric KMS key in your account,
|
1836
|
-
# it with RDS Custom. No further action is necessary. If you
|
1837
|
-
# already have a symmetric KMS key in your account,
|
1838
|
-
# instructions in [ Creating symmetric KMS
|
1839
|
-
# Services Key Management Service Developer
|
1843
|
+
# symmetric encryption KMS key is required for RDS Custom, but optional
|
1844
|
+
# for Amazon RDS.
|
1845
|
+
#
|
1846
|
+
# If you have an existing symmetric encryption KMS key in your account,
|
1847
|
+
# you can use it with RDS Custom. No further action is necessary. If you
|
1848
|
+
# don't already have a symmetric encryption KMS key in your account,
|
1849
|
+
# follow the instructions in [ Creating a symmetric encryption KMS
|
1850
|
+
# key][1] in the *Amazon Web Services Key Management Service Developer
|
1851
|
+
# Guide*.
|
1840
1852
|
#
|
1841
|
-
# You can choose the same symmetric key when you create a CEV
|
1842
|
-
# instance, or choose different keys.
|
1853
|
+
# You can choose the same symmetric encryption key when you create a CEV
|
1854
|
+
# and a DB instance, or choose different keys.
|
1843
1855
|
#
|
1844
1856
|
#
|
1845
1857
|
#
|
@@ -2762,6 +2774,28 @@ module Aws::RDS
|
|
2762
2774
|
#
|
2763
2775
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
2764
2776
|
#
|
2777
|
+
# @option params [String] :network_type
|
2778
|
+
# The network type of the DB cluster.
|
2779
|
+
#
|
2780
|
+
# Valid values:
|
2781
|
+
#
|
2782
|
+
# * `IPV4`
|
2783
|
+
#
|
2784
|
+
# * `DUAL`
|
2785
|
+
#
|
2786
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
2787
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
2788
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
2789
|
+
#
|
2790
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
2791
|
+
# the *Amazon Aurora User Guide.*
|
2792
|
+
#
|
2793
|
+
# Valid for: Aurora DB clusters only
|
2794
|
+
#
|
2795
|
+
#
|
2796
|
+
#
|
2797
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
2798
|
+
#
|
2765
2799
|
# @option params [String] :source_region
|
2766
2800
|
# The source region of the snapshot. This is only needed when the
|
2767
2801
|
# shapshot is encrypted and in a different region.
|
@@ -2860,6 +2894,7 @@ module Aws::RDS
|
|
2860
2894
|
# min_capacity: 1.0,
|
2861
2895
|
# max_capacity: 1.0,
|
2862
2896
|
# },
|
2897
|
+
# network_type: "String",
|
2863
2898
|
# source_region: "String",
|
2864
2899
|
# })
|
2865
2900
|
#
|
@@ -2967,6 +3002,7 @@ module Aws::RDS
|
|
2967
3002
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
2968
3003
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
2969
3004
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
3005
|
+
# resp.db_cluster.network_type #=> String
|
2970
3006
|
#
|
2971
3007
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
2972
3008
|
#
|
@@ -5852,11 +5888,24 @@ module Aws::RDS
|
|
5852
5888
|
# Creates a new DB security group. DB security groups control access to
|
5853
5889
|
# a DB instance.
|
5854
5890
|
#
|
5855
|
-
#
|
5891
|
+
# A DB security group controls access to EC2-Classic DB instances that
|
5856
5892
|
# are not in a VPC.
|
5857
5893
|
#
|
5894
|
+
# <note markdown="1"> EC2-Classic was retired on August 15, 2022. If you haven't migrated
|
5895
|
+
# from EC2-Classic to a VPC, we recommend that you migrate as soon as
|
5896
|
+
# possible. For more information, see [Migrate from EC2-Classic to a
|
5897
|
+
# VPC][1] in the *Amazon EC2 User Guide*, the blog [EC2-Classic
|
5898
|
+
# Networking is Retiring – Here’s How to Prepare][2], and [Moving a DB
|
5899
|
+
# instance not in a VPC into a VPC][3] in the *Amazon RDS User Guide*.
|
5900
|
+
#
|
5858
5901
|
# </note>
|
5859
5902
|
#
|
5903
|
+
#
|
5904
|
+
#
|
5905
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
5906
|
+
# [2]: http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/
|
5907
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html
|
5908
|
+
#
|
5860
5909
|
# @option params [required, String] :db_security_group_name
|
5861
5910
|
# The name for the DB security group. This value is stored as a
|
5862
5911
|
# lowercase string.
|
@@ -6042,6 +6091,7 @@ module Aws::RDS
|
|
6042
6091
|
# resp.db_snapshot.tag_list[0].key #=> String
|
6043
6092
|
# resp.db_snapshot.tag_list[0].value #=> String
|
6044
6093
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
6094
|
+
# resp.db_snapshot.snapshot_database_time #=> Time
|
6045
6095
|
# resp.db_snapshot.snapshot_target #=> String
|
6046
6096
|
#
|
6047
6097
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
@@ -6165,11 +6215,18 @@ module Aws::RDS
|
|
6165
6215
|
# `SourceIds`, you are notified of events generated from all RDS sources
|
6166
6216
|
# belonging to your customer account.
|
6167
6217
|
#
|
6168
|
-
#
|
6169
|
-
#
|
6170
|
-
#
|
6218
|
+
# For more information about subscribing to an event for RDS DB engines,
|
6219
|
+
# see [ Subscribing to Amazon RDS event notification][1] in the *Amazon
|
6220
|
+
# RDS User Guide*.
|
6171
6221
|
#
|
6172
|
-
#
|
6222
|
+
# For more information about subscribing to an event for Aurora DB
|
6223
|
+
# engines, see [ Subscribing to Amazon RDS event notification][2] in the
|
6224
|
+
# *Amazon Aurora User Guide*.
|
6225
|
+
#
|
6226
|
+
#
|
6227
|
+
#
|
6228
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.Subscribing.html
|
6229
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Events.Subscribing.html
|
6173
6230
|
#
|
6174
6231
|
# @option params [required, String] :subscription_name
|
6175
6232
|
# The name of the subscription.
|
@@ -6861,6 +6918,7 @@ module Aws::RDS
|
|
6861
6918
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
6862
6919
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
6863
6920
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
6921
|
+
# resp.db_cluster.network_type #=> String
|
6864
6922
|
#
|
6865
6923
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
6866
6924
|
#
|
@@ -7539,11 +7597,24 @@ module Aws::RDS
|
|
7539
7597
|
|
7540
7598
|
# Deletes a DB security group.
|
7541
7599
|
#
|
7542
|
-
#
|
7600
|
+
# The specified DB security group must not be associated with any DB
|
7543
7601
|
# instances.
|
7544
7602
|
#
|
7603
|
+
# <note markdown="1"> EC2-Classic was retired on August 15, 2022. If you haven't migrated
|
7604
|
+
# from EC2-Classic to a VPC, we recommend that you migrate as soon as
|
7605
|
+
# possible. For more information, see [Migrate from EC2-Classic to a
|
7606
|
+
# VPC][1] in the *Amazon EC2 User Guide*, the blog [EC2-Classic
|
7607
|
+
# Networking is Retiring – Here’s How to Prepare][2], and [Moving a DB
|
7608
|
+
# instance not in a VPC into a VPC][3] in the *Amazon RDS User Guide*.
|
7609
|
+
#
|
7545
7610
|
# </note>
|
7546
7611
|
#
|
7612
|
+
#
|
7613
|
+
#
|
7614
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
7615
|
+
# [2]: http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/
|
7616
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html
|
7617
|
+
#
|
7547
7618
|
# @option params [required, String] :db_security_group_name
|
7548
7619
|
# The name of the DB security group to delete.
|
7549
7620
|
#
|
@@ -7661,6 +7732,7 @@ module Aws::RDS
|
|
7661
7732
|
# resp.db_snapshot.tag_list[0].key #=> String
|
7662
7733
|
# resp.db_snapshot.tag_list[0].value #=> String
|
7663
7734
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
7735
|
+
# resp.db_snapshot.snapshot_database_time #=> Time
|
7664
7736
|
# resp.db_snapshot.snapshot_target #=> String
|
7665
7737
|
#
|
7666
7738
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
@@ -8922,6 +8994,7 @@ module Aws::RDS
|
|
8922
8994
|
# resp.db_clusters[0].performance_insights_retention_period #=> Integer
|
8923
8995
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
8924
8996
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
8997
|
+
# resp.db_clusters[0].network_type #=> String
|
8925
8998
|
#
|
8926
8999
|
#
|
8927
9000
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -10161,6 +10234,21 @@ module Aws::RDS
|
|
10161
10234
|
# `DBSecurityGroupName` is specified, the list will contain only the
|
10162
10235
|
# descriptions of the specified DB security group.
|
10163
10236
|
#
|
10237
|
+
# <note markdown="1"> EC2-Classic was retired on August 15, 2022. If you haven't migrated
|
10238
|
+
# from EC2-Classic to a VPC, we recommend that you migrate as soon as
|
10239
|
+
# possible. For more information, see [Migrate from EC2-Classic to a
|
10240
|
+
# VPC][1] in the *Amazon EC2 User Guide*, the blog [EC2-Classic
|
10241
|
+
# Networking is Retiring – Here’s How to Prepare][2], and [Moving a DB
|
10242
|
+
# instance not in a VPC into a VPC][3] in the *Amazon RDS User Guide*.
|
10243
|
+
#
|
10244
|
+
# </note>
|
10245
|
+
#
|
10246
|
+
#
|
10247
|
+
#
|
10248
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
10249
|
+
# [2]: http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/
|
10250
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html
|
10251
|
+
#
|
10164
10252
|
# @option params [String] :db_security_group_name
|
10165
10253
|
# The name of the DB security group to return details for.
|
10166
10254
|
#
|
@@ -10505,6 +10593,7 @@ module Aws::RDS
|
|
10505
10593
|
# resp.db_snapshots[0].tag_list[0].key #=> String
|
10506
10594
|
# resp.db_snapshots[0].tag_list[0].value #=> String
|
10507
10595
|
# resp.db_snapshots[0].original_snapshot_create_time #=> Time
|
10596
|
+
# resp.db_snapshots[0].snapshot_database_time #=> Time
|
10508
10597
|
# resp.db_snapshots[0].snapshot_target #=> String
|
10509
10598
|
#
|
10510
10599
|
#
|
@@ -12683,6 +12772,7 @@ module Aws::RDS
|
|
12683
12772
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
12684
12773
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
12685
12774
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
12775
|
+
# resp.db_cluster.network_type #=> String
|
12686
12776
|
#
|
12687
12777
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
12688
12778
|
#
|
@@ -13757,6 +13847,28 @@ module Aws::RDS
|
|
13757
13847
|
#
|
13758
13848
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
13759
13849
|
#
|
13850
|
+
# @option params [String] :network_type
|
13851
|
+
# The network type of the DB cluster.
|
13852
|
+
#
|
13853
|
+
# Valid values:
|
13854
|
+
#
|
13855
|
+
# * `IPV4`
|
13856
|
+
#
|
13857
|
+
# * `DUAL`
|
13858
|
+
#
|
13859
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
13860
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
13861
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
13862
|
+
#
|
13863
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
13864
|
+
# the *Amazon Aurora User Guide.*
|
13865
|
+
#
|
13866
|
+
# Valid for: Aurora DB clusters only
|
13867
|
+
#
|
13868
|
+
#
|
13869
|
+
#
|
13870
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
13871
|
+
#
|
13760
13872
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13761
13873
|
#
|
13762
13874
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -13832,6 +13944,7 @@ module Aws::RDS
|
|
13832
13944
|
# min_capacity: 1.0,
|
13833
13945
|
# max_capacity: 1.0,
|
13834
13946
|
# },
|
13947
|
+
# network_type: "String",
|
13835
13948
|
# })
|
13836
13949
|
#
|
13837
13950
|
# @example Response structure
|
@@ -13938,6 +14051,7 @@ module Aws::RDS
|
|
13938
14051
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
13939
14052
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
13940
14053
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
14054
|
+
# resp.db_cluster.network_type #=> String
|
13941
14055
|
#
|
13942
14056
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
13943
14057
|
#
|
@@ -14286,21 +14400,21 @@ module Aws::RDS
|
|
14286
14400
|
# db.m4.large. Not all DB instance classes are available in all Amazon
|
14287
14401
|
# Web Services Regions, or for all database engines. For the full list
|
14288
14402
|
# of DB instance classes, and availability for your engine, see [DB
|
14289
|
-
#
|
14290
|
-
#
|
14291
|
-
# instance class support for RDS Custom for SQL Server][3].
|
14403
|
+
# instance classes][1] in the *Amazon RDS User Guide* or [Aurora DB
|
14404
|
+
# instance classes][2] in the *Amazon Aurora User Guide*.
|
14292
14405
|
#
|
14293
14406
|
# If you modify the DB instance class, an outage occurs during the
|
14294
14407
|
# change. The change is applied during the next maintenance window,
|
14295
14408
|
# unless `ApplyImmediately` is enabled for this request.
|
14296
14409
|
#
|
14410
|
+
# This setting doesn't apply to RDS Custom for Oracle.
|
14411
|
+
#
|
14297
14412
|
# Default: Uses existing setting
|
14298
14413
|
#
|
14299
14414
|
#
|
14300
14415
|
#
|
14301
14416
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
14302
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
14303
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html#custom-reqs-limits.instancesMS
|
14417
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html
|
14304
14418
|
#
|
14305
14419
|
# @option params [String] :db_subnet_group_name
|
14306
14420
|
# The new DB subnet group for the DB instance. You can use this
|
@@ -15754,6 +15868,7 @@ module Aws::RDS
|
|
15754
15868
|
# resp.db_snapshot.tag_list[0].key #=> String
|
15755
15869
|
# resp.db_snapshot.tag_list[0].value #=> String
|
15756
15870
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
15871
|
+
# resp.db_snapshot.snapshot_database_time #=> Time
|
15757
15872
|
# resp.db_snapshot.snapshot_target #=> String
|
15758
15873
|
#
|
15759
15874
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
@@ -16677,6 +16792,7 @@ module Aws::RDS
|
|
16677
16792
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
16678
16793
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
16679
16794
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
16795
|
+
# resp.db_cluster.network_type #=> String
|
16680
16796
|
#
|
16681
16797
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
16682
16798
|
#
|
@@ -16919,6 +17035,7 @@ module Aws::RDS
|
|
16919
17035
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
16920
17036
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
16921
17037
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
17038
|
+
# resp.db_cluster.network_type #=> String
|
16922
17039
|
#
|
16923
17040
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
|
16924
17041
|
#
|
@@ -17981,6 +18098,26 @@ module Aws::RDS
|
|
17981
18098
|
#
|
17982
18099
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
17983
18100
|
#
|
18101
|
+
# @option params [String] :network_type
|
18102
|
+
# The network type of the DB cluster.
|
18103
|
+
#
|
18104
|
+
# Valid values:
|
18105
|
+
#
|
18106
|
+
# * `IPV4`
|
18107
|
+
#
|
18108
|
+
# * `DUAL`
|
18109
|
+
#
|
18110
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
18111
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
18112
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
18113
|
+
#
|
18114
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
18115
|
+
# the *Amazon Aurora User Guide.*
|
18116
|
+
#
|
18117
|
+
#
|
18118
|
+
#
|
18119
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
18120
|
+
#
|
17984
18121
|
# @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17985
18122
|
#
|
17986
18123
|
# * {Types::RestoreDBClusterFromS3Result#db_cluster #db_cluster} => Types::DBCluster
|
@@ -18028,6 +18165,7 @@ module Aws::RDS
|
|
18028
18165
|
# min_capacity: 1.0,
|
18029
18166
|
# max_capacity: 1.0,
|
18030
18167
|
# },
|
18168
|
+
# network_type: "String",
|
18031
18169
|
# })
|
18032
18170
|
#
|
18033
18171
|
# @example Response structure
|
@@ -18134,6 +18272,7 @@ module Aws::RDS
|
|
18134
18272
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
18135
18273
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
18136
18274
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
18275
|
+
# resp.db_cluster.network_type #=> String
|
18137
18276
|
#
|
18138
18277
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
18139
18278
|
#
|
@@ -18573,6 +18712,28 @@ module Aws::RDS
|
|
18573
18712
|
#
|
18574
18713
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
18575
18714
|
#
|
18715
|
+
# @option params [String] :network_type
|
18716
|
+
# The network type of the DB cluster.
|
18717
|
+
#
|
18718
|
+
# Valid values:
|
18719
|
+
#
|
18720
|
+
# * `IPV4`
|
18721
|
+
#
|
18722
|
+
# * `DUAL`
|
18723
|
+
#
|
18724
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
18725
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
18726
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
18727
|
+
#
|
18728
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
18729
|
+
# the *Amazon Aurora User Guide.*
|
18730
|
+
#
|
18731
|
+
# Valid for: Aurora DB clusters only
|
18732
|
+
#
|
18733
|
+
#
|
18734
|
+
#
|
18735
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
18736
|
+
#
|
18576
18737
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18577
18738
|
#
|
18578
18739
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -18639,6 +18800,7 @@ module Aws::RDS
|
|
18639
18800
|
# min_capacity: 1.0,
|
18640
18801
|
# max_capacity: 1.0,
|
18641
18802
|
# },
|
18803
|
+
# network_type: "String",
|
18642
18804
|
# })
|
18643
18805
|
#
|
18644
18806
|
# @example Response structure
|
@@ -18745,6 +18907,7 @@ module Aws::RDS
|
|
18745
18907
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
18746
18908
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
18747
18909
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
18910
|
+
# resp.db_cluster.network_type #=> String
|
18748
18911
|
#
|
18749
18912
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
18750
18913
|
#
|
@@ -19154,6 +19317,28 @@ module Aws::RDS
|
|
19154
19317
|
#
|
19155
19318
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
19156
19319
|
#
|
19320
|
+
# @option params [String] :network_type
|
19321
|
+
# The network type of the DB cluster.
|
19322
|
+
#
|
19323
|
+
# Valid values:
|
19324
|
+
#
|
19325
|
+
# * `IPV4`
|
19326
|
+
#
|
19327
|
+
# * `DUAL`
|
19328
|
+
#
|
19329
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
19330
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
19331
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
19332
|
+
#
|
19333
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
19334
|
+
# the *Amazon Aurora User Guide.*
|
19335
|
+
#
|
19336
|
+
# Valid for: Aurora DB clusters only
|
19337
|
+
#
|
19338
|
+
#
|
19339
|
+
#
|
19340
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
19341
|
+
#
|
19157
19342
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19158
19343
|
#
|
19159
19344
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -19219,6 +19404,7 @@ module Aws::RDS
|
|
19219
19404
|
# min_capacity: 1.0,
|
19220
19405
|
# max_capacity: 1.0,
|
19221
19406
|
# },
|
19407
|
+
# network_type: "String",
|
19222
19408
|
# })
|
19223
19409
|
#
|
19224
19410
|
# @example Response structure
|
@@ -19325,6 +19511,7 @@ module Aws::RDS
|
|
19325
19511
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
19326
19512
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
19327
19513
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
19514
|
+
# resp.db_cluster.network_type #=> String
|
19328
19515
|
#
|
19329
19516
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
19330
19517
|
#
|
@@ -21448,6 +21635,21 @@ module Aws::RDS
|
|
21448
21635
|
# (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or
|
21449
21636
|
# EC2SecurityGroupId).
|
21450
21637
|
#
|
21638
|
+
# <note markdown="1"> EC2-Classic was retired on August 15, 2022. If you haven't migrated
|
21639
|
+
# from EC2-Classic to a VPC, we recommend that you migrate as soon as
|
21640
|
+
# possible. For more information, see [Migrate from EC2-Classic to a
|
21641
|
+
# VPC][1] in the *Amazon EC2 User Guide*, the blog [EC2-Classic
|
21642
|
+
# Networking is Retiring – Here’s How to Prepare][2], and [Moving a DB
|
21643
|
+
# instance not in a VPC into a VPC][3] in the *Amazon RDS User Guide*.
|
21644
|
+
#
|
21645
|
+
# </note>
|
21646
|
+
#
|
21647
|
+
#
|
21648
|
+
#
|
21649
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
21650
|
+
# [2]: http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/
|
21651
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html
|
21652
|
+
#
|
21451
21653
|
# @option params [required, String] :db_security_group_name
|
21452
21654
|
# The name of the DB security group to revoke ingress from.
|
21453
21655
|
#
|
@@ -21735,6 +21937,7 @@ module Aws::RDS
|
|
21735
21937
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
21736
21938
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
21737
21939
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
21940
|
+
# resp.db_cluster.network_type #=> String
|
21738
21941
|
#
|
21739
21942
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
21740
21943
|
#
|
@@ -22353,6 +22556,7 @@ module Aws::RDS
|
|
22353
22556
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
22354
22557
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
22355
22558
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
22559
|
+
# resp.db_cluster.network_type #=> String
|
22356
22560
|
#
|
22357
22561
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
22358
22562
|
#
|
@@ -22619,6 +22823,183 @@ module Aws::RDS
|
|
22619
22823
|
req.send_request(options)
|
22620
22824
|
end
|
22621
22825
|
|
22826
|
+
# Switches over an Oracle standby database in an Oracle Data Guard
|
22827
|
+
# environment, making it the new primary database. Issue this command in
|
22828
|
+
# the Region that hosts the current standby database.
|
22829
|
+
#
|
22830
|
+
# @option params [required, String] :db_instance_identifier
|
22831
|
+
# The DB instance identifier of the current standby database. This value
|
22832
|
+
# is stored as a lowercase string.
|
22833
|
+
#
|
22834
|
+
# Constraints:
|
22835
|
+
#
|
22836
|
+
# * Must match the identifier of an existing Oracle read replica DB
|
22837
|
+
# instance.
|
22838
|
+
#
|
22839
|
+
# ^
|
22840
|
+
#
|
22841
|
+
# @return [Types::SwitchoverReadReplicaResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
22842
|
+
#
|
22843
|
+
# * {Types::SwitchoverReadReplicaResult#db_instance #db_instance} => Types::DBInstance
|
22844
|
+
#
|
22845
|
+
# @example Request syntax with placeholder values
|
22846
|
+
#
|
22847
|
+
# resp = client.switchover_read_replica({
|
22848
|
+
# db_instance_identifier: "String", # required
|
22849
|
+
# })
|
22850
|
+
#
|
22851
|
+
# @example Response structure
|
22852
|
+
#
|
22853
|
+
# resp.db_instance.db_instance_identifier #=> String
|
22854
|
+
# resp.db_instance.db_instance_class #=> String
|
22855
|
+
# resp.db_instance.engine #=> String
|
22856
|
+
# resp.db_instance.db_instance_status #=> String
|
22857
|
+
# resp.db_instance.automatic_restart_time #=> Time
|
22858
|
+
# resp.db_instance.master_username #=> String
|
22859
|
+
# resp.db_instance.db_name #=> String
|
22860
|
+
# resp.db_instance.endpoint.address #=> String
|
22861
|
+
# resp.db_instance.endpoint.port #=> Integer
|
22862
|
+
# resp.db_instance.endpoint.hosted_zone_id #=> String
|
22863
|
+
# resp.db_instance.allocated_storage #=> Integer
|
22864
|
+
# resp.db_instance.instance_create_time #=> Time
|
22865
|
+
# resp.db_instance.preferred_backup_window #=> String
|
22866
|
+
# resp.db_instance.backup_retention_period #=> Integer
|
22867
|
+
# resp.db_instance.db_security_groups #=> Array
|
22868
|
+
# resp.db_instance.db_security_groups[0].db_security_group_name #=> String
|
22869
|
+
# resp.db_instance.db_security_groups[0].status #=> String
|
22870
|
+
# resp.db_instance.vpc_security_groups #=> Array
|
22871
|
+
# resp.db_instance.vpc_security_groups[0].vpc_security_group_id #=> String
|
22872
|
+
# resp.db_instance.vpc_security_groups[0].status #=> String
|
22873
|
+
# resp.db_instance.db_parameter_groups #=> Array
|
22874
|
+
# resp.db_instance.db_parameter_groups[0].db_parameter_group_name #=> String
|
22875
|
+
# resp.db_instance.db_parameter_groups[0].parameter_apply_status #=> String
|
22876
|
+
# resp.db_instance.availability_zone #=> String
|
22877
|
+
# resp.db_instance.db_subnet_group.db_subnet_group_name #=> String
|
22878
|
+
# resp.db_instance.db_subnet_group.db_subnet_group_description #=> String
|
22879
|
+
# resp.db_instance.db_subnet_group.vpc_id #=> String
|
22880
|
+
# resp.db_instance.db_subnet_group.subnet_group_status #=> String
|
22881
|
+
# resp.db_instance.db_subnet_group.subnets #=> Array
|
22882
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
22883
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
22884
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
22885
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
22886
|
+
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
22887
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
22888
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
22889
|
+
# resp.db_instance.preferred_maintenance_window #=> String
|
22890
|
+
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
22891
|
+
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
22892
|
+
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
22893
|
+
# resp.db_instance.pending_modified_values.port #=> Integer
|
22894
|
+
# resp.db_instance.pending_modified_values.backup_retention_period #=> Integer
|
22895
|
+
# resp.db_instance.pending_modified_values.multi_az #=> Boolean
|
22896
|
+
# resp.db_instance.pending_modified_values.engine_version #=> String
|
22897
|
+
# resp.db_instance.pending_modified_values.license_model #=> String
|
22898
|
+
# resp.db_instance.pending_modified_values.iops #=> Integer
|
22899
|
+
# resp.db_instance.pending_modified_values.db_instance_identifier #=> String
|
22900
|
+
# resp.db_instance.pending_modified_values.storage_type #=> String
|
22901
|
+
# resp.db_instance.pending_modified_values.ca_certificate_identifier #=> String
|
22902
|
+
# resp.db_instance.pending_modified_values.db_subnet_group_name #=> String
|
22903
|
+
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
22904
|
+
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
22905
|
+
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
22906
|
+
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
22907
|
+
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
22908
|
+
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
22909
|
+
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
22910
|
+
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
22911
|
+
# resp.db_instance.pending_modified_values.automation_mode #=> String, one of "full", "all-paused"
|
22912
|
+
# resp.db_instance.pending_modified_values.resume_full_automation_mode_time #=> Time
|
22913
|
+
# resp.db_instance.latest_restorable_time #=> Time
|
22914
|
+
# resp.db_instance.multi_az #=> Boolean
|
22915
|
+
# resp.db_instance.engine_version #=> String
|
22916
|
+
# resp.db_instance.auto_minor_version_upgrade #=> Boolean
|
22917
|
+
# resp.db_instance.read_replica_source_db_instance_identifier #=> String
|
22918
|
+
# resp.db_instance.read_replica_db_instance_identifiers #=> Array
|
22919
|
+
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
22920
|
+
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
22921
|
+
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
22922
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
22923
|
+
# resp.db_instance.license_model #=> String
|
22924
|
+
# resp.db_instance.iops #=> Integer
|
22925
|
+
# resp.db_instance.option_group_memberships #=> Array
|
22926
|
+
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
22927
|
+
# resp.db_instance.option_group_memberships[0].status #=> String
|
22928
|
+
# resp.db_instance.character_set_name #=> String
|
22929
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
22930
|
+
# resp.db_instance.secondary_availability_zone #=> String
|
22931
|
+
# resp.db_instance.publicly_accessible #=> Boolean
|
22932
|
+
# resp.db_instance.status_infos #=> Array
|
22933
|
+
# resp.db_instance.status_infos[0].status_type #=> String
|
22934
|
+
# resp.db_instance.status_infos[0].normal #=> Boolean
|
22935
|
+
# resp.db_instance.status_infos[0].status #=> String
|
22936
|
+
# resp.db_instance.status_infos[0].message #=> String
|
22937
|
+
# resp.db_instance.storage_type #=> String
|
22938
|
+
# resp.db_instance.tde_credential_arn #=> String
|
22939
|
+
# resp.db_instance.db_instance_port #=> Integer
|
22940
|
+
# resp.db_instance.db_cluster_identifier #=> String
|
22941
|
+
# resp.db_instance.storage_encrypted #=> Boolean
|
22942
|
+
# resp.db_instance.kms_key_id #=> String
|
22943
|
+
# resp.db_instance.dbi_resource_id #=> String
|
22944
|
+
# resp.db_instance.ca_certificate_identifier #=> String
|
22945
|
+
# resp.db_instance.domain_memberships #=> Array
|
22946
|
+
# resp.db_instance.domain_memberships[0].domain #=> String
|
22947
|
+
# resp.db_instance.domain_memberships[0].status #=> String
|
22948
|
+
# resp.db_instance.domain_memberships[0].fqdn #=> String
|
22949
|
+
# resp.db_instance.domain_memberships[0].iam_role_name #=> String
|
22950
|
+
# resp.db_instance.copy_tags_to_snapshot #=> Boolean
|
22951
|
+
# resp.db_instance.monitoring_interval #=> Integer
|
22952
|
+
# resp.db_instance.enhanced_monitoring_resource_arn #=> String
|
22953
|
+
# resp.db_instance.monitoring_role_arn #=> String
|
22954
|
+
# resp.db_instance.promotion_tier #=> Integer
|
22955
|
+
# resp.db_instance.db_instance_arn #=> String
|
22956
|
+
# resp.db_instance.timezone #=> String
|
22957
|
+
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
22958
|
+
# resp.db_instance.performance_insights_enabled #=> Boolean
|
22959
|
+
# resp.db_instance.performance_insights_kms_key_id #=> String
|
22960
|
+
# resp.db_instance.performance_insights_retention_period #=> Integer
|
22961
|
+
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
22962
|
+
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
22963
|
+
# resp.db_instance.processor_features #=> Array
|
22964
|
+
# resp.db_instance.processor_features[0].name #=> String
|
22965
|
+
# resp.db_instance.processor_features[0].value #=> String
|
22966
|
+
# resp.db_instance.deletion_protection #=> Boolean
|
22967
|
+
# resp.db_instance.associated_roles #=> Array
|
22968
|
+
# resp.db_instance.associated_roles[0].role_arn #=> String
|
22969
|
+
# resp.db_instance.associated_roles[0].feature_name #=> String
|
22970
|
+
# resp.db_instance.associated_roles[0].status #=> String
|
22971
|
+
# resp.db_instance.listener_endpoint.address #=> String
|
22972
|
+
# resp.db_instance.listener_endpoint.port #=> Integer
|
22973
|
+
# resp.db_instance.listener_endpoint.hosted_zone_id #=> String
|
22974
|
+
# resp.db_instance.max_allocated_storage #=> Integer
|
22975
|
+
# resp.db_instance.tag_list #=> Array
|
22976
|
+
# resp.db_instance.tag_list[0].key #=> String
|
22977
|
+
# resp.db_instance.tag_list[0].value #=> String
|
22978
|
+
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
22979
|
+
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
22980
|
+
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
22981
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
22982
|
+
# resp.db_instance.activity_stream_status #=> String, one of "stopped", "starting", "started", "stopping"
|
22983
|
+
# resp.db_instance.activity_stream_kms_key_id #=> String
|
22984
|
+
# resp.db_instance.activity_stream_kinesis_stream_name #=> String
|
22985
|
+
# resp.db_instance.activity_stream_mode #=> String, one of "sync", "async"
|
22986
|
+
# resp.db_instance.activity_stream_engine_native_audit_fields_included #=> Boolean
|
22987
|
+
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
22988
|
+
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
22989
|
+
# resp.db_instance.custom_iam_instance_profile #=> String
|
22990
|
+
# resp.db_instance.backup_target #=> String
|
22991
|
+
# resp.db_instance.network_type #=> String
|
22992
|
+
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
22993
|
+
#
|
22994
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
22995
|
+
#
|
22996
|
+
# @overload switchover_read_replica(params = {})
|
22997
|
+
# @param [Hash] params ({})
|
22998
|
+
def switchover_read_replica(params = {}, options = {})
|
22999
|
+
req = build_request(:switchover_read_replica, params)
|
23000
|
+
req.send_request(options)
|
23001
|
+
end
|
23002
|
+
|
22622
23003
|
# @!endgroup
|
22623
23004
|
|
22624
23005
|
# @param params ({})
|
@@ -22632,7 +23013,7 @@ module Aws::RDS
|
|
22632
23013
|
params: params,
|
22633
23014
|
config: config)
|
22634
23015
|
context[:gem_name] = 'aws-sdk-rds'
|
22635
|
-
context[:gem_version] = '1.
|
23016
|
+
context[:gem_version] = '1.155.0'
|
22636
23017
|
Seahorse::Client::Request.new(handlers, context)
|
22637
23018
|
end
|
22638
23019
|
|