aws-sdk-rds 1.165.0 → 1.166.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +34 -10
- data/lib/aws-sdk-rds/client_api.rb +1 -0
- data/lib/aws-sdk-rds/db_instance.rb +32 -9
- data/lib/aws-sdk-rds/db_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +1 -1
- data/lib/aws-sdk-rds/types.rb +36 -10
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65b3bd4e5dad10812ab299bdc0b39a21ca830f5443b3dcb50fc8b44ee4b9d76b
|
4
|
+
data.tar.gz: edc01907bab7742751badf85751f1664a6560add0e040c0903f4881948250f57
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 615add932d50b3dc4f70bae1ab2d441db4b5299ccecaeae193cc32b905f60b620acf4b00c7e8a108ff9775f268718c9516478e6d4c82961c21736c0103fefa28
|
7
|
+
data.tar.gz: cfeeca3e4137898e9c6d06d991eaf43edc06a0d14ec142bd4e581519643d545638ec38d91292b276876c444e0077ac5251a4fd0ff4532d0e9c1af6a8ac12373b
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.166.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -4601,7 +4601,7 @@ module Aws::RDS
|
|
4601
4601
|
#
|
4602
4602
|
#
|
4603
4603
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
4604
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
4604
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
4605
4605
|
#
|
4606
4606
|
# @option params [String] :custom_iam_instance_profile
|
4607
4607
|
# The instance profile associated with the underlying Amazon EC2
|
@@ -5470,6 +5470,27 @@ module Aws::RDS
|
|
5470
5470
|
#
|
5471
5471
|
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
5472
5472
|
#
|
5473
|
+
# @option params [Boolean] :enable_customer_owned_ip
|
5474
|
+
# A value that indicates whether to enable a customer-owned IP address
|
5475
|
+
# (CoIP) for an RDS on Outposts read replica.
|
5476
|
+
#
|
5477
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
5478
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
5479
|
+
# a CoIP can provide lower latency for connections to the read replica
|
5480
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
5481
|
+
#
|
5482
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
5483
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
5484
|
+
# Guide*.
|
5485
|
+
#
|
5486
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
5487
|
+
# in the *Amazon Web Services Outposts User Guide*.
|
5488
|
+
#
|
5489
|
+
#
|
5490
|
+
#
|
5491
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
5492
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
5493
|
+
#
|
5473
5494
|
# @option params [String] :source_region
|
5474
5495
|
# The source region of the snapshot. This is only needed when the
|
5475
5496
|
# shapshot is encrypted and in a different region.
|
@@ -5553,6 +5574,7 @@ module Aws::RDS
|
|
5553
5574
|
# custom_iam_instance_profile: "String",
|
5554
5575
|
# network_type: "String",
|
5555
5576
|
# storage_throughput: 1,
|
5577
|
+
# enable_customer_owned_ip: false,
|
5556
5578
|
# source_region: "String",
|
5557
5579
|
# })
|
5558
5580
|
#
|
@@ -14856,14 +14878,14 @@ module Aws::RDS
|
|
14856
14878
|
# db.m4.large. Not all DB instance classes are available in all Amazon
|
14857
14879
|
# Web Services Regions, or for all database engines. For the full list
|
14858
14880
|
# of DB instance classes, and availability for your engine, see [DB
|
14859
|
-
#
|
14860
|
-
# instance classes][2] in the *Amazon Aurora User Guide*.
|
14881
|
+
# Instance Class][1] in the *Amazon RDS User Guide* or [Aurora DB
|
14882
|
+
# instance classes][2] in the *Amazon Aurora User Guide*. For RDS
|
14883
|
+
# Custom, see [DB instance class support for RDS Custom for Oracle][3]
|
14884
|
+
# and [ DB instance class support for RDS Custom for SQL Server][4].
|
14861
14885
|
#
|
14862
14886
|
# If you modify the DB instance class, an outage occurs during the
|
14863
14887
|
# change. The change is applied during the next maintenance window,
|
14864
|
-
# unless `ApplyImmediately`
|
14865
|
-
#
|
14866
|
-
# This setting doesn't apply to RDS Custom for Oracle.
|
14888
|
+
# unless you specify `ApplyImmediately` in your request.
|
14867
14889
|
#
|
14868
14890
|
# Default: Uses existing setting
|
14869
14891
|
#
|
@@ -14871,6 +14893,8 @@ module Aws::RDS
|
|
14871
14893
|
#
|
14872
14894
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
14873
14895
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html
|
14896
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html#custom-reqs-limits.instances
|
14897
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html#custom-reqs-limits.instancesMS
|
14874
14898
|
#
|
14875
14899
|
# @option params [String] :db_subnet_group_name
|
14876
14900
|
# The new DB subnet group for the DB instance. You can use this
|
@@ -15611,7 +15635,7 @@ module Aws::RDS
|
|
15611
15635
|
#
|
15612
15636
|
#
|
15613
15637
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
15614
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
15638
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
15615
15639
|
#
|
15616
15640
|
# @option params [String] :aws_backup_recovery_point_arn
|
15617
15641
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
@@ -20387,7 +20411,7 @@ module Aws::RDS
|
|
20387
20411
|
#
|
20388
20412
|
#
|
20389
20413
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
20390
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
20414
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
20391
20415
|
#
|
20392
20416
|
# @option params [String] :custom_iam_instance_profile
|
20393
20417
|
# The instance profile associated with the underlying Amazon EC2
|
@@ -21817,7 +21841,7 @@ module Aws::RDS
|
|
21817
21841
|
#
|
21818
21842
|
#
|
21819
21843
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
21820
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
21844
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
21821
21845
|
#
|
21822
21846
|
# @option params [String] :custom_iam_instance_profile
|
21823
21847
|
# The instance profile associated with the underlying Amazon EC2
|
@@ -23666,7 +23690,7 @@ module Aws::RDS
|
|
23666
23690
|
params: params,
|
23667
23691
|
config: config)
|
23668
23692
|
context[:gem_name] = 'aws-sdk-rds'
|
23669
|
-
context[:gem_version] = '1.
|
23693
|
+
context[:gem_version] = '1.166.0'
|
23670
23694
|
Seahorse::Client::Request.new(handlers, context)
|
23671
23695
|
end
|
23672
23696
|
|
@@ -1043,6 +1043,7 @@ module Aws::RDS
|
|
1043
1043
|
CreateDBInstanceReadReplicaMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
1044
1044
|
CreateDBInstanceReadReplicaMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1045
1045
|
CreateDBInstanceReadReplicaMessage.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
1046
|
+
CreateDBInstanceReadReplicaMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
1046
1047
|
CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
1047
1048
|
CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
|
1048
1049
|
|
@@ -597,7 +597,7 @@ module Aws::RDS
|
|
597
597
|
#
|
598
598
|
#
|
599
599
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
600
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
600
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
601
601
|
# @return [Boolean]
|
602
602
|
def customer_owned_ip_enabled
|
603
603
|
data[:customer_owned_ip_enabled]
|
@@ -1922,7 +1922,7 @@ module Aws::RDS
|
|
1922
1922
|
#
|
1923
1923
|
#
|
1924
1924
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
1925
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
1925
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
1926
1926
|
# @option options [String] :custom_iam_instance_profile
|
1927
1927
|
# The instance profile associated with the underlying Amazon EC2
|
1928
1928
|
# instance of an RDS Custom DB instance. The instance profile must meet
|
@@ -2039,6 +2039,7 @@ module Aws::RDS
|
|
2039
2039
|
# custom_iam_instance_profile: "String",
|
2040
2040
|
# network_type: "String",
|
2041
2041
|
# storage_throughput: 1,
|
2042
|
+
# enable_customer_owned_ip: false,
|
2042
2043
|
# source_region: "String",
|
2043
2044
|
# })
|
2044
2045
|
# @param [Hash] options ({})
|
@@ -2505,6 +2506,26 @@ module Aws::RDS
|
|
2505
2506
|
# Specifies the storage throughput value for the read replica.
|
2506
2507
|
#
|
2507
2508
|
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
2509
|
+
# @option options [Boolean] :enable_customer_owned_ip
|
2510
|
+
# A value that indicates whether to enable a customer-owned IP address
|
2511
|
+
# (CoIP) for an RDS on Outposts read replica.
|
2512
|
+
#
|
2513
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
2514
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
2515
|
+
# a CoIP can provide lower latency for connections to the read replica
|
2516
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
2517
|
+
#
|
2518
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
2519
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
2520
|
+
# Guide*.
|
2521
|
+
#
|
2522
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
2523
|
+
# in the *Amazon Web Services Outposts User Guide*.
|
2524
|
+
#
|
2525
|
+
#
|
2526
|
+
#
|
2527
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
2528
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
2508
2529
|
# @option options [String] :source_region
|
2509
2530
|
# The source region of the snapshot. This is only needed when the
|
2510
2531
|
# shapshot is encrypted and in a different region.
|
@@ -2706,14 +2727,14 @@ module Aws::RDS
|
|
2706
2727
|
# db.m4.large. Not all DB instance classes are available in all Amazon
|
2707
2728
|
# Web Services Regions, or for all database engines. For the full list
|
2708
2729
|
# of DB instance classes, and availability for your engine, see [DB
|
2709
|
-
#
|
2710
|
-
# instance classes][2] in the *Amazon Aurora User Guide*.
|
2730
|
+
# Instance Class][1] in the *Amazon RDS User Guide* or [Aurora DB
|
2731
|
+
# instance classes][2] in the *Amazon Aurora User Guide*. For RDS
|
2732
|
+
# Custom, see [DB instance class support for RDS Custom for Oracle][3]
|
2733
|
+
# and [ DB instance class support for RDS Custom for SQL Server][4].
|
2711
2734
|
#
|
2712
2735
|
# If you modify the DB instance class, an outage occurs during the
|
2713
2736
|
# change. The change is applied during the next maintenance window,
|
2714
|
-
# unless `ApplyImmediately`
|
2715
|
-
#
|
2716
|
-
# This setting doesn't apply to RDS Custom for Oracle.
|
2737
|
+
# unless you specify `ApplyImmediately` in your request.
|
2717
2738
|
#
|
2718
2739
|
# Default: Uses existing setting
|
2719
2740
|
#
|
@@ -2721,6 +2742,8 @@ module Aws::RDS
|
|
2721
2742
|
#
|
2722
2743
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
2723
2744
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html
|
2745
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html#custom-reqs-limits.instances
|
2746
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html#custom-reqs-limits.instancesMS
|
2724
2747
|
# @option options [String] :db_subnet_group_name
|
2725
2748
|
# The new DB subnet group for the DB instance. You can use this
|
2726
2749
|
# parameter to move your DB instance to a different VPC. If your DB
|
@@ -3420,7 +3443,7 @@ module Aws::RDS
|
|
3420
3443
|
#
|
3421
3444
|
#
|
3422
3445
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
3423
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
3446
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
3424
3447
|
# @option options [String] :aws_backup_recovery_point_arn
|
3425
3448
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
3426
3449
|
# Services Backup.
|
@@ -3916,7 +3939,7 @@ module Aws::RDS
|
|
3916
3939
|
#
|
3917
3940
|
#
|
3918
3941
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
3919
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
3942
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
3920
3943
|
# @option options [String] :custom_iam_instance_profile
|
3921
3944
|
# The instance profile associated with the underlying Amazon EC2
|
3922
3945
|
# instance of an RDS Custom DB instance. The instance profile must meet
|
@@ -968,7 +968,7 @@ module Aws::RDS
|
|
968
968
|
#
|
969
969
|
#
|
970
970
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
971
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
971
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
972
972
|
# @option options [String] :custom_iam_instance_profile
|
973
973
|
# The instance profile associated with the underlying Amazon EC2
|
974
974
|
# instance of an RDS Custom DB instance. The instance profile must meet
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1992,7 +1992,7 @@ module Aws::RDS
|
|
1992
1992
|
#
|
1993
1993
|
#
|
1994
1994
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
1995
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
1995
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
1996
1996
|
# @option options [String] :custom_iam_instance_profile
|
1997
1997
|
# The instance profile associated with the underlying Amazon EC2
|
1998
1998
|
# instance of an RDS Custom DB instance. The instance profile must meet
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -4058,7 +4058,7 @@ module Aws::RDS
|
|
4058
4058
|
#
|
4059
4059
|
#
|
4060
4060
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
4061
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
4061
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
4062
4062
|
# @return [Boolean]
|
4063
4063
|
#
|
4064
4064
|
# @!attribute [rw] custom_iam_instance_profile
|
@@ -4768,6 +4768,29 @@ module Aws::RDS
|
|
4768
4768
|
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
4769
4769
|
# @return [Integer]
|
4770
4770
|
#
|
4771
|
+
# @!attribute [rw] enable_customer_owned_ip
|
4772
|
+
# A value that indicates whether to enable a customer-owned IP address
|
4773
|
+
# (CoIP) for an RDS on Outposts read replica.
|
4774
|
+
#
|
4775
|
+
# A *CoIP* provides local or external connectivity to resources in
|
4776
|
+
# your Outpost subnets through your on-premises network. For some use
|
4777
|
+
# cases, a CoIP can provide lower latency for connections to the read
|
4778
|
+
# replica from outside of its virtual private cloud (VPC) on your
|
4779
|
+
# local network.
|
4780
|
+
#
|
4781
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
4782
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
4783
|
+
# Guide*.
|
4784
|
+
#
|
4785
|
+
# For more information about CoIPs, see [Customer-owned IP
|
4786
|
+
# addresses][2] in the *Amazon Web Services Outposts User Guide*.
|
4787
|
+
#
|
4788
|
+
#
|
4789
|
+
#
|
4790
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
4791
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
4792
|
+
# @return [Boolean]
|
4793
|
+
#
|
4771
4794
|
# @!attribute [rw] source_region
|
4772
4795
|
# The source region of the snapshot. This is only needed when the
|
4773
4796
|
# shapshot is encrypted and in a different region.
|
@@ -4811,6 +4834,7 @@ module Aws::RDS
|
|
4811
4834
|
:custom_iam_instance_profile,
|
4812
4835
|
:network_type,
|
4813
4836
|
:storage_throughput,
|
4837
|
+
:enable_customer_owned_ip,
|
4814
4838
|
:source_region)
|
4815
4839
|
SENSITIVE = []
|
4816
4840
|
include Aws::Structure
|
@@ -7589,7 +7613,7 @@ module Aws::RDS
|
|
7589
7613
|
#
|
7590
7614
|
#
|
7591
7615
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
7592
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
7616
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
7593
7617
|
# @return [Boolean]
|
7594
7618
|
#
|
7595
7619
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
@@ -14746,14 +14770,14 @@ module Aws::RDS
|
|
14746
14770
|
# db.m4.large. Not all DB instance classes are available in all Amazon
|
14747
14771
|
# Web Services Regions, or for all database engines. For the full list
|
14748
14772
|
# of DB instance classes, and availability for your engine, see [DB
|
14749
|
-
#
|
14750
|
-
# instance classes][2] in the *Amazon Aurora User Guide*.
|
14773
|
+
# Instance Class][1] in the *Amazon RDS User Guide* or [Aurora DB
|
14774
|
+
# instance classes][2] in the *Amazon Aurora User Guide*. For RDS
|
14775
|
+
# Custom, see [DB instance class support for RDS Custom for Oracle][3]
|
14776
|
+
# and [ DB instance class support for RDS Custom for SQL Server][4].
|
14751
14777
|
#
|
14752
14778
|
# If you modify the DB instance class, an outage occurs during the
|
14753
14779
|
# change. The change is applied during the next maintenance window,
|
14754
|
-
# unless `ApplyImmediately`
|
14755
|
-
#
|
14756
|
-
# This setting doesn't apply to RDS Custom for Oracle.
|
14780
|
+
# unless you specify `ApplyImmediately` in your request.
|
14757
14781
|
#
|
14758
14782
|
# Default: Uses existing setting
|
14759
14783
|
#
|
@@ -14761,6 +14785,8 @@ module Aws::RDS
|
|
14761
14785
|
#
|
14762
14786
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
14763
14787
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html
|
14788
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html#custom-reqs-limits.instances
|
14789
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html#custom-reqs-limits.instancesMS
|
14764
14790
|
# @return [String]
|
14765
14791
|
#
|
14766
14792
|
# @!attribute [rw] db_subnet_group_name
|
@@ -15553,7 +15579,7 @@ module Aws::RDS
|
|
15553
15579
|
#
|
15554
15580
|
#
|
15555
15581
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
15556
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
15582
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
15557
15583
|
# @return [Boolean]
|
15558
15584
|
#
|
15559
15585
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
@@ -20128,7 +20154,7 @@ module Aws::RDS
|
|
20128
20154
|
#
|
20129
20155
|
#
|
20130
20156
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
20131
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
20157
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
20132
20158
|
# @return [Boolean]
|
20133
20159
|
#
|
20134
20160
|
# @!attribute [rw] custom_iam_instance_profile
|
@@ -21233,7 +21259,7 @@ module Aws::RDS
|
|
21233
21259
|
#
|
21234
21260
|
#
|
21235
21261
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
21236
|
-
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/
|
21262
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
21237
21263
|
# @return [Boolean]
|
21238
21264
|
#
|
21239
21265
|
# @!attribute [rw] custom_iam_instance_profile
|
data/lib/aws-sdk-rds.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-rds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.166.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|