aws-sdk-rds 1.151.0 → 1.154.0

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