aws-sdk-rds 1.137.0 → 1.138.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +53 -24
- data/lib/aws-sdk-rds/db_cluster.rb +2 -2
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/db_instance.rb +7 -4
- data/lib/aws-sdk-rds/db_snapshot.rb +17 -5
- data/lib/aws-sdk-rds/resource.rb +14 -5
- data/lib/aws-sdk-rds/types.rb +45 -21
- 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: be9825dd2a41ebbcaefd7745816b2b654faed038078dce449b7ca8dc21777330
|
|
4
|
+
data.tar.gz: 4176a2f51a5872342a5e3807ad3fe08b585c33a72c45837e07de40ed6e593a76
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a02bc159b38bf1ea76502aeaa0281a72fd290238fe1f2df44930391326eb344baeaf084cf34a743b6c61d5ef235181cd8a5ba116fe5cdff5340d2fa9743d3144
|
|
7
|
+
data.tar.gz: b51f425559394e70a2ee422d4c3d6d6be20794060d872bd32f3cc8514fd9f5e4790d2868e873b9157b55bff3617ac132b2f96ba75f69142de9be682e0f57130e
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.138.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -1865,9 +1865,14 @@ module Aws::RDS
|
|
|
1865
1865
|
end
|
|
1866
1866
|
|
|
1867
1867
|
# Creates a custom DB engine version (CEV). A CEV is a binary volume
|
|
1868
|
-
# snapshot of a database engine and specific AMI. The
|
|
1869
|
-
#
|
|
1870
|
-
#
|
|
1868
|
+
# snapshot of a database engine and specific AMI. The supported engines
|
|
1869
|
+
# are the following:
|
|
1870
|
+
#
|
|
1871
|
+
# * Oracle Database 12.1 Enterprise Edition with the January 2021 or
|
|
1872
|
+
# later RU/RUR
|
|
1873
|
+
#
|
|
1874
|
+
# * Oracle Database 19c Enterprise Edition with the January 2021 or
|
|
1875
|
+
# later RU/RUR
|
|
1871
1876
|
#
|
|
1872
1877
|
# Amazon RDS, which is a fully managed service, supplies the Amazon
|
|
1873
1878
|
# Machine Image (AMI) and database software. The Amazon RDS database
|
|
@@ -2205,7 +2210,7 @@ module Aws::RDS
|
|
|
2205
2210
|
# Constraints: Must match the name of an existing DBSubnetGroup. Must
|
|
2206
2211
|
# not be default.
|
|
2207
2212
|
#
|
|
2208
|
-
# Example: `
|
|
2213
|
+
# Example: `mydbsubnetgroup`
|
|
2209
2214
|
#
|
|
2210
2215
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
2211
2216
|
#
|
|
@@ -3794,7 +3799,10 @@ module Aws::RDS
|
|
|
3794
3799
|
# @option params [String] :db_subnet_group_name
|
|
3795
3800
|
# A DB subnet group to associate with this DB instance.
|
|
3796
3801
|
#
|
|
3797
|
-
#
|
|
3802
|
+
# Constraints: Must match the name of an existing DBSubnetGroup. Must
|
|
3803
|
+
# not be default.
|
|
3804
|
+
#
|
|
3805
|
+
# Example: `mydbsubnetgroup`
|
|
3798
3806
|
#
|
|
3799
3807
|
# @option params [String] :preferred_maintenance_window
|
|
3800
3808
|
# The time range each week during which system maintenance can occur, in
|
|
@@ -4856,7 +4864,7 @@ module Aws::RDS
|
|
|
4856
4864
|
# * Not specify a DB subnet group. All these read replicas are created
|
|
4857
4865
|
# outside of any VPC.
|
|
4858
4866
|
#
|
|
4859
|
-
# Example: `
|
|
4867
|
+
# Example: `mydbsubnetgroup`
|
|
4860
4868
|
#
|
|
4861
4869
|
# @option params [Array<String>] :vpc_security_group_ids
|
|
4862
4870
|
# A list of Amazon EC2 VPC security groups to associate with the read
|
|
@@ -5964,10 +5972,16 @@ module Aws::RDS
|
|
|
5964
5972
|
# The name for the DB subnet group. This value is stored as a lowercase
|
|
5965
5973
|
# string.
|
|
5966
5974
|
#
|
|
5967
|
-
# Constraints:
|
|
5968
|
-
#
|
|
5975
|
+
# Constraints:
|
|
5976
|
+
#
|
|
5977
|
+
# * Must contain no more than 255 letters, numbers, periods,
|
|
5978
|
+
# underscores, spaces, or hyphens.
|
|
5969
5979
|
#
|
|
5970
|
-
#
|
|
5980
|
+
# * Must not be default.
|
|
5981
|
+
#
|
|
5982
|
+
# * First character must be a letter.
|
|
5983
|
+
#
|
|
5984
|
+
# Example: `mydbsubnetgroup`
|
|
5971
5985
|
#
|
|
5972
5986
|
# @option params [required, String] :db_subnet_group_description
|
|
5973
5987
|
# The description for the DB subnet group.
|
|
@@ -7634,12 +7648,10 @@ module Aws::RDS
|
|
|
7634
7648
|
#
|
|
7635
7649
|
# </note>
|
|
7636
7650
|
#
|
|
7637
|
-
# Constraints:
|
|
7638
|
-
#
|
|
7639
7651
|
# Constraints: Must match the name of an existing DBSubnetGroup. Must
|
|
7640
7652
|
# not be default.
|
|
7641
7653
|
#
|
|
7642
|
-
# Example: `
|
|
7654
|
+
# Example: `mydbsubnetgroup`
|
|
7643
7655
|
#
|
|
7644
7656
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
7645
7657
|
#
|
|
@@ -14325,7 +14337,7 @@ module Aws::RDS
|
|
|
14325
14337
|
# Constraints: If supplied, must match the name of an existing
|
|
14326
14338
|
# DBSubnetGroup.
|
|
14327
14339
|
#
|
|
14328
|
-
# Example: `
|
|
14340
|
+
# Example: `mydbsubnetgroup`
|
|
14329
14341
|
#
|
|
14330
14342
|
#
|
|
14331
14343
|
#
|
|
@@ -15851,7 +15863,7 @@ module Aws::RDS
|
|
|
15851
15863
|
# Constraints: Must match the name of an existing DBSubnetGroup. Must
|
|
15852
15864
|
# not be default.
|
|
15853
15865
|
#
|
|
15854
|
-
# Example: `
|
|
15866
|
+
# Example: `mydbsubnetgroup`
|
|
15855
15867
|
#
|
|
15856
15868
|
# @option params [String] :db_subnet_group_description
|
|
15857
15869
|
# The description for the DB subnet group.
|
|
@@ -17691,7 +17703,7 @@ module Aws::RDS
|
|
|
17691
17703
|
# Constraints: If supplied, must match the name of an existing
|
|
17692
17704
|
# DBSubnetGroup.
|
|
17693
17705
|
#
|
|
17694
|
-
# Example: `
|
|
17706
|
+
# Example: `mydbsubnetgroup`
|
|
17695
17707
|
#
|
|
17696
17708
|
# @option params [required, String] :engine
|
|
17697
17709
|
# The name of the database engine to be used for this DB cluster.
|
|
@@ -18238,7 +18250,7 @@ module Aws::RDS
|
|
|
18238
18250
|
# Constraints: If supplied, must match the name of an existing DB subnet
|
|
18239
18251
|
# group.
|
|
18240
18252
|
#
|
|
18241
|
-
# Example: `
|
|
18253
|
+
# Example: `mydbsubnetgroup`
|
|
18242
18254
|
#
|
|
18243
18255
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
18244
18256
|
#
|
|
@@ -18784,7 +18796,7 @@ module Aws::RDS
|
|
|
18784
18796
|
# Constraints: If supplied, must match the name of an existing
|
|
18785
18797
|
# DBSubnetGroup.
|
|
18786
18798
|
#
|
|
18787
|
-
# Example: `
|
|
18799
|
+
# Example: `mydbsubnetgroup`
|
|
18788
18800
|
#
|
|
18789
18801
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
18790
18802
|
#
|
|
@@ -19292,7 +19304,7 @@ module Aws::RDS
|
|
|
19292
19304
|
# Constraints: If supplied, must match the name of an existing
|
|
19293
19305
|
# DBSubnetGroup.
|
|
19294
19306
|
#
|
|
19295
|
-
# Example: `
|
|
19307
|
+
# Example: `mydbsubnetgroup`
|
|
19296
19308
|
#
|
|
19297
19309
|
# @option params [Boolean] :multi_az
|
|
19298
19310
|
# A value that indicates whether the DB instance is a Multi-AZ
|
|
@@ -19459,8 +19471,21 @@ module Aws::RDS
|
|
|
19459
19471
|
#
|
|
19460
19472
|
# @option params [Boolean] :copy_tags_to_snapshot
|
|
19461
19473
|
# A value that indicates whether to copy all tags from the restored DB
|
|
19462
|
-
# instance to snapshots of the DB instance.
|
|
19463
|
-
#
|
|
19474
|
+
# instance to snapshots of the DB instance.
|
|
19475
|
+
#
|
|
19476
|
+
# In most cases, tags aren't copied by default. However, when you
|
|
19477
|
+
# restore a DB instance from a DB snapshot, RDS checks whether you
|
|
19478
|
+
# specify new tags. If yes, the new tags are added to the restored DB
|
|
19479
|
+
# instance. If there are no new tags, RDS looks for the tags from the
|
|
19480
|
+
# source DB instance for the DB snapshot, and then adds those tags to
|
|
19481
|
+
# the restored DB instance.
|
|
19482
|
+
#
|
|
19483
|
+
# For more information, see [ Copying tags to DB instance snapshots][1]
|
|
19484
|
+
# in the *Amazon RDS User Guide*.
|
|
19485
|
+
#
|
|
19486
|
+
#
|
|
19487
|
+
#
|
|
19488
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html#USER_Tagging.CopyTags
|
|
19464
19489
|
#
|
|
19465
19490
|
# @option params [String] :domain_iam_role_name
|
|
19466
19491
|
# Specify the name of the IAM role to be used when making API calls to
|
|
@@ -19572,8 +19597,7 @@ module Aws::RDS
|
|
|
19572
19597
|
# start with the prefix `AWSRDSCustom`.
|
|
19573
19598
|
#
|
|
19574
19599
|
# For the list of permissions required for the IAM role, see [ Configure
|
|
19575
|
-
# IAM and your VPC][1] in the *Amazon
|
|
19576
|
-
# Guide*.
|
|
19600
|
+
# IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
19577
19601
|
#
|
|
19578
19602
|
# This setting is required for RDS Custom.
|
|
19579
19603
|
#
|
|
@@ -19996,6 +20020,11 @@ module Aws::RDS
|
|
|
19996
20020
|
# @option params [String] :db_subnet_group_name
|
|
19997
20021
|
# A DB subnet group to associate with this DB instance.
|
|
19998
20022
|
#
|
|
20023
|
+
# Constraints: If supplied, must match the name of an existing
|
|
20024
|
+
# DBSubnetGroup.
|
|
20025
|
+
#
|
|
20026
|
+
# Example: `mydbsubnetgroup`
|
|
20027
|
+
#
|
|
19999
20028
|
# @option params [String] :preferred_maintenance_window
|
|
20000
20029
|
# The time range each week during which system maintenance can occur, in
|
|
20001
20030
|
# Universal Coordinated Time (UTC). For more information, see [Amazon
|
|
@@ -20585,7 +20614,7 @@ module Aws::RDS
|
|
|
20585
20614
|
# Constraints: If supplied, must match the name of an existing
|
|
20586
20615
|
# DBSubnetGroup.
|
|
20587
20616
|
#
|
|
20588
|
-
# Example: `
|
|
20617
|
+
# Example: `mydbsubnetgroup`
|
|
20589
20618
|
#
|
|
20590
20619
|
# @option params [Boolean] :multi_az
|
|
20591
20620
|
# A value that indicates whether the DB instance is a Multi-AZ
|
|
@@ -22357,7 +22386,7 @@ module Aws::RDS
|
|
|
22357
22386
|
params: params,
|
|
22358
22387
|
config: config)
|
|
22359
22388
|
context[:gem_name] = 'aws-sdk-rds'
|
|
22360
|
-
context[:gem_version] = '1.
|
|
22389
|
+
context[:gem_version] = '1.138.0'
|
|
22361
22390
|
Seahorse::Client::Request.new(handlers, context)
|
|
22362
22391
|
end
|
|
22363
22392
|
|
|
@@ -844,7 +844,7 @@ module Aws::RDS
|
|
|
844
844
|
# Constraints: Must match the name of an existing DBSubnetGroup. Must
|
|
845
845
|
# not be default.
|
|
846
846
|
#
|
|
847
|
-
# Example: `
|
|
847
|
+
# Example: `mydbsubnetgroup`
|
|
848
848
|
#
|
|
849
849
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
850
850
|
# @option options [required, String] :engine
|
|
@@ -2117,7 +2117,7 @@ module Aws::RDS
|
|
|
2117
2117
|
# Constraints: If supplied, must match the name of an existing
|
|
2118
2118
|
# DBSubnetGroup.
|
|
2119
2119
|
#
|
|
2120
|
-
# Example: `
|
|
2120
|
+
# Example: `mydbsubnetgroup`
|
|
2121
2121
|
#
|
|
2122
2122
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
2123
2123
|
# @option options [String] :option_group_name
|
|
@@ -645,7 +645,7 @@ module Aws::RDS
|
|
|
645
645
|
# Constraints: If supplied, must match the name of an existing DB subnet
|
|
646
646
|
# group.
|
|
647
647
|
#
|
|
648
|
-
# Example: `
|
|
648
|
+
# Example: `mydbsubnetgroup`
|
|
649
649
|
#
|
|
650
650
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
651
651
|
# @option options [String] :database_name
|
|
@@ -1243,7 +1243,10 @@ module Aws::RDS
|
|
|
1243
1243
|
# @option options [String] :db_subnet_group_name
|
|
1244
1244
|
# A DB subnet group to associate with this DB instance.
|
|
1245
1245
|
#
|
|
1246
|
-
#
|
|
1246
|
+
# Constraints: Must match the name of an existing DBSubnetGroup. Must
|
|
1247
|
+
# not be default.
|
|
1248
|
+
#
|
|
1249
|
+
# Example: `mydbsubnetgroup`
|
|
1247
1250
|
# @option options [String] :preferred_maintenance_window
|
|
1248
1251
|
# The time range each week during which system maintenance can occur, in
|
|
1249
1252
|
# Universal Coordinated Time (UTC). For more information, see [Amazon
|
|
@@ -2014,7 +2017,7 @@ module Aws::RDS
|
|
|
2014
2017
|
# * Not specify a DB subnet group. All these read replicas are created
|
|
2015
2018
|
# outside of any VPC.
|
|
2016
2019
|
#
|
|
2017
|
-
# Example: `
|
|
2020
|
+
# Example: `mydbsubnetgroup`
|
|
2018
2021
|
# @option options [Array<String>] :vpc_security_group_ids
|
|
2019
2022
|
# A list of Amazon EC2 VPC security groups to associate with the read
|
|
2020
2023
|
# replica.
|
|
@@ -2534,7 +2537,7 @@ module Aws::RDS
|
|
|
2534
2537
|
# Constraints: If supplied, must match the name of an existing
|
|
2535
2538
|
# DBSubnetGroup.
|
|
2536
2539
|
#
|
|
2537
|
-
# Example: `
|
|
2540
|
+
# Example: `mydbsubnetgroup`
|
|
2538
2541
|
#
|
|
2539
2542
|
#
|
|
2540
2543
|
#
|
|
@@ -3414,7 +3417,7 @@ module Aws::RDS
|
|
|
3414
3417
|
# Constraints: If supplied, must match the name of an existing
|
|
3415
3418
|
# DBSubnetGroup.
|
|
3416
3419
|
#
|
|
3417
|
-
# Example: `
|
|
3420
|
+
# Example: `mydbsubnetgroup`
|
|
3418
3421
|
# @option options [Boolean] :multi_az
|
|
3419
3422
|
# A value that indicates whether the DB instance is a Multi-AZ
|
|
3420
3423
|
# deployment.
|
|
@@ -679,7 +679,7 @@ module Aws::RDS
|
|
|
679
679
|
# Constraints: If supplied, must match the name of an existing
|
|
680
680
|
# DBSubnetGroup.
|
|
681
681
|
#
|
|
682
|
-
# Example: `
|
|
682
|
+
# Example: `mydbsubnetgroup`
|
|
683
683
|
# @option options [Boolean] :multi_az
|
|
684
684
|
# A value that indicates whether the DB instance is a Multi-AZ
|
|
685
685
|
# deployment.
|
|
@@ -831,8 +831,21 @@ module Aws::RDS
|
|
|
831
831
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
|
832
832
|
# @option options [Boolean] :copy_tags_to_snapshot
|
|
833
833
|
# A value that indicates whether to copy all tags from the restored DB
|
|
834
|
-
# instance to snapshots of the DB instance.
|
|
835
|
-
#
|
|
834
|
+
# instance to snapshots of the DB instance.
|
|
835
|
+
#
|
|
836
|
+
# In most cases, tags aren't copied by default. However, when you
|
|
837
|
+
# restore a DB instance from a DB snapshot, RDS checks whether you
|
|
838
|
+
# specify new tags. If yes, the new tags are added to the restored DB
|
|
839
|
+
# instance. If there are no new tags, RDS looks for the tags from the
|
|
840
|
+
# source DB instance for the DB snapshot, and then adds those tags to
|
|
841
|
+
# the restored DB instance.
|
|
842
|
+
#
|
|
843
|
+
# For more information, see [ Copying tags to DB instance snapshots][1]
|
|
844
|
+
# in the *Amazon RDS User Guide*.
|
|
845
|
+
#
|
|
846
|
+
#
|
|
847
|
+
#
|
|
848
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html#USER_Tagging.CopyTags
|
|
836
849
|
# @option options [String] :domain_iam_role_name
|
|
837
850
|
# Specify the name of the IAM role to be used when making API calls to
|
|
838
851
|
# the Directory Service.
|
|
@@ -935,8 +948,7 @@ module Aws::RDS
|
|
|
935
948
|
# start with the prefix `AWSRDSCustom`.
|
|
936
949
|
#
|
|
937
950
|
# For the list of permissions required for the IAM role, see [ Configure
|
|
938
|
-
# IAM and your VPC][1] in the *Amazon
|
|
939
|
-
# Guide*.
|
|
951
|
+
# IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
940
952
|
#
|
|
941
953
|
# This setting is required for RDS Custom.
|
|
942
954
|
#
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
|
@@ -173,7 +173,7 @@ module Aws::RDS
|
|
|
173
173
|
# Constraints: Must match the name of an existing DBSubnetGroup. Must
|
|
174
174
|
# not be default.
|
|
175
175
|
#
|
|
176
|
-
# Example: `
|
|
176
|
+
# Example: `mydbsubnetgroup`
|
|
177
177
|
#
|
|
178
178
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
179
179
|
# @option options [required, String] :engine
|
|
@@ -1297,7 +1297,10 @@ module Aws::RDS
|
|
|
1297
1297
|
# @option options [String] :db_subnet_group_name
|
|
1298
1298
|
# A DB subnet group to associate with this DB instance.
|
|
1299
1299
|
#
|
|
1300
|
-
#
|
|
1300
|
+
# Constraints: Must match the name of an existing DBSubnetGroup. Must
|
|
1301
|
+
# not be default.
|
|
1302
|
+
#
|
|
1303
|
+
# Example: `mydbsubnetgroup`
|
|
1301
1304
|
# @option options [String] :preferred_maintenance_window
|
|
1302
1305
|
# The time range each week during which system maintenance can occur, in
|
|
1303
1306
|
# Universal Coordinated Time (UTC). For more information, see [Amazon
|
|
@@ -2048,10 +2051,16 @@ module Aws::RDS
|
|
|
2048
2051
|
# The name for the DB subnet group. This value is stored as a lowercase
|
|
2049
2052
|
# string.
|
|
2050
2053
|
#
|
|
2051
|
-
# Constraints:
|
|
2052
|
-
#
|
|
2054
|
+
# Constraints:
|
|
2055
|
+
#
|
|
2056
|
+
# * Must contain no more than 255 letters, numbers, periods,
|
|
2057
|
+
# underscores, spaces, or hyphens.
|
|
2058
|
+
#
|
|
2059
|
+
# * Must not be default.
|
|
2060
|
+
#
|
|
2061
|
+
# * First character must be a letter.
|
|
2053
2062
|
#
|
|
2054
|
-
# Example: `
|
|
2063
|
+
# Example: `mydbsubnetgroup`
|
|
2055
2064
|
# @option options [required, String] :db_subnet_group_description
|
|
2056
2065
|
# The description for the DB subnet group.
|
|
2057
2066
|
# @option options [required, Array<String>] :subnet_ids
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -2019,7 +2019,7 @@ module Aws::RDS
|
|
|
2019
2019
|
# Constraints: Must match the name of an existing DBSubnetGroup. Must
|
|
2020
2020
|
# not be default.
|
|
2021
2021
|
#
|
|
2022
|
-
# Example: `
|
|
2022
|
+
# Example: `mydbsubnetgroup`
|
|
2023
2023
|
#
|
|
2024
2024
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
2025
2025
|
# @return [String]
|
|
@@ -3427,7 +3427,10 @@ module Aws::RDS
|
|
|
3427
3427
|
# @!attribute [rw] db_subnet_group_name
|
|
3428
3428
|
# A DB subnet group to associate with this DB instance.
|
|
3429
3429
|
#
|
|
3430
|
-
#
|
|
3430
|
+
# Constraints: Must match the name of an existing DBSubnetGroup. Must
|
|
3431
|
+
# not be default.
|
|
3432
|
+
#
|
|
3433
|
+
# Example: `mydbsubnetgroup`
|
|
3431
3434
|
# @return [String]
|
|
3432
3435
|
#
|
|
3433
3436
|
# @!attribute [rw] preferred_maintenance_window
|
|
@@ -4401,7 +4404,7 @@ module Aws::RDS
|
|
|
4401
4404
|
# * Not specify a DB subnet group. All these read replicas are
|
|
4402
4405
|
# created outside of any VPC.
|
|
4403
4406
|
#
|
|
4404
|
-
# Example: `
|
|
4407
|
+
# Example: `mydbsubnetgroup`
|
|
4405
4408
|
# @return [String]
|
|
4406
4409
|
#
|
|
4407
4410
|
# @!attribute [rw] vpc_security_group_ids
|
|
@@ -5301,10 +5304,16 @@ module Aws::RDS
|
|
|
5301
5304
|
# The name for the DB subnet group. This value is stored as a
|
|
5302
5305
|
# lowercase string.
|
|
5303
5306
|
#
|
|
5304
|
-
# Constraints:
|
|
5305
|
-
#
|
|
5307
|
+
# Constraints:
|
|
5308
|
+
#
|
|
5309
|
+
# * Must contain no more than 255 letters, numbers, periods,
|
|
5310
|
+
# underscores, spaces, or hyphens.
|
|
5311
|
+
#
|
|
5312
|
+
# * Must not be default.
|
|
5306
5313
|
#
|
|
5307
|
-
#
|
|
5314
|
+
# * First character must be a letter.
|
|
5315
|
+
#
|
|
5316
|
+
# Example: `mydbsubnetgroup`
|
|
5308
5317
|
# @return [String]
|
|
5309
5318
|
#
|
|
5310
5319
|
# @!attribute [rw] db_subnet_group_description
|
|
@@ -9836,12 +9845,10 @@ module Aws::RDS
|
|
|
9836
9845
|
#
|
|
9837
9846
|
# </note>
|
|
9838
9847
|
#
|
|
9839
|
-
# Constraints:
|
|
9840
|
-
#
|
|
9841
9848
|
# Constraints: Must match the name of an existing DBSubnetGroup. Must
|
|
9842
9849
|
# not be default.
|
|
9843
9850
|
#
|
|
9844
|
-
# Example: `
|
|
9851
|
+
# Example: `mydbsubnetgroup`
|
|
9845
9852
|
# @return [String]
|
|
9846
9853
|
#
|
|
9847
9854
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSubnetGroupMessage AWS API Documentation
|
|
@@ -15646,7 +15653,7 @@ module Aws::RDS
|
|
|
15646
15653
|
# Constraints: If supplied, must match the name of an existing
|
|
15647
15654
|
# DBSubnetGroup.
|
|
15648
15655
|
#
|
|
15649
|
-
# Example: `
|
|
15656
|
+
# Example: `mydbsubnetgroup`
|
|
15650
15657
|
#
|
|
15651
15658
|
#
|
|
15652
15659
|
#
|
|
@@ -16957,7 +16964,7 @@ module Aws::RDS
|
|
|
16957
16964
|
# Constraints: Must match the name of an existing DBSubnetGroup. Must
|
|
16958
16965
|
# not be default.
|
|
16959
16966
|
#
|
|
16960
|
-
# Example: `
|
|
16967
|
+
# Example: `mydbsubnetgroup`
|
|
16961
16968
|
# @return [String]
|
|
16962
16969
|
#
|
|
16963
16970
|
# @!attribute [rw] db_subnet_group_description
|
|
@@ -19509,7 +19516,7 @@ module Aws::RDS
|
|
|
19509
19516
|
# Constraints: If supplied, must match the name of an existing
|
|
19510
19517
|
# DBSubnetGroup.
|
|
19511
19518
|
#
|
|
19512
|
-
# Example: `
|
|
19519
|
+
# Example: `mydbsubnetgroup`
|
|
19513
19520
|
# @return [String]
|
|
19514
19521
|
#
|
|
19515
19522
|
# @!attribute [rw] engine
|
|
@@ -20026,7 +20033,7 @@ module Aws::RDS
|
|
|
20026
20033
|
# Constraints: If supplied, must match the name of an existing DB
|
|
20027
20034
|
# subnet group.
|
|
20028
20035
|
#
|
|
20029
|
-
# Example: `
|
|
20036
|
+
# Example: `mydbsubnetgroup`
|
|
20030
20037
|
#
|
|
20031
20038
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
20032
20039
|
# @return [String]
|
|
@@ -20512,7 +20519,7 @@ module Aws::RDS
|
|
|
20512
20519
|
# Constraints: If supplied, must match the name of an existing
|
|
20513
20520
|
# DBSubnetGroup.
|
|
20514
20521
|
#
|
|
20515
|
-
# Example: `
|
|
20522
|
+
# Example: `mydbsubnetgroup`
|
|
20516
20523
|
#
|
|
20517
20524
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
20518
20525
|
# @return [String]
|
|
@@ -20968,7 +20975,7 @@ module Aws::RDS
|
|
|
20968
20975
|
# Constraints: If supplied, must match the name of an existing
|
|
20969
20976
|
# DBSubnetGroup.
|
|
20970
20977
|
#
|
|
20971
|
-
# Example: `
|
|
20978
|
+
# Example: `mydbsubnetgroup`
|
|
20972
20979
|
# @return [String]
|
|
20973
20980
|
#
|
|
20974
20981
|
# @!attribute [rw] multi_az
|
|
@@ -21153,8 +21160,21 @@ module Aws::RDS
|
|
|
21153
21160
|
#
|
|
21154
21161
|
# @!attribute [rw] copy_tags_to_snapshot
|
|
21155
21162
|
# A value that indicates whether to copy all tags from the restored DB
|
|
21156
|
-
# instance to snapshots of the DB instance.
|
|
21157
|
-
#
|
|
21163
|
+
# instance to snapshots of the DB instance.
|
|
21164
|
+
#
|
|
21165
|
+
# In most cases, tags aren't copied by default. However, when you
|
|
21166
|
+
# restore a DB instance from a DB snapshot, RDS checks whether you
|
|
21167
|
+
# specify new tags. If yes, the new tags are added to the restored DB
|
|
21168
|
+
# instance. If there are no new tags, RDS looks for the tags from the
|
|
21169
|
+
# source DB instance for the DB snapshot, and then adds those tags to
|
|
21170
|
+
# the restored DB instance.
|
|
21171
|
+
#
|
|
21172
|
+
# For more information, see [ Copying tags to DB instance
|
|
21173
|
+
# snapshots][1] in the *Amazon RDS User Guide*.
|
|
21174
|
+
#
|
|
21175
|
+
#
|
|
21176
|
+
#
|
|
21177
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html#USER_Tagging.CopyTags
|
|
21158
21178
|
# @return [Boolean]
|
|
21159
21179
|
#
|
|
21160
21180
|
# @!attribute [rw] domain_iam_role_name
|
|
@@ -21277,8 +21297,7 @@ module Aws::RDS
|
|
|
21277
21297
|
# start with the prefix `AWSRDSCustom`.
|
|
21278
21298
|
#
|
|
21279
21299
|
# For the list of permissions required for the IAM role, see [
|
|
21280
|
-
# Configure IAM and your VPC][1] in the *Amazon
|
|
21281
|
-
# Service User Guide*.
|
|
21300
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
21282
21301
|
#
|
|
21283
21302
|
# This setting is required for RDS Custom.
|
|
21284
21303
|
#
|
|
@@ -21525,6 +21544,11 @@ module Aws::RDS
|
|
|
21525
21544
|
#
|
|
21526
21545
|
# @!attribute [rw] db_subnet_group_name
|
|
21527
21546
|
# A DB subnet group to associate with this DB instance.
|
|
21547
|
+
#
|
|
21548
|
+
# Constraints: If supplied, must match the name of an existing
|
|
21549
|
+
# DBSubnetGroup.
|
|
21550
|
+
#
|
|
21551
|
+
# Example: `mydbsubnetgroup`
|
|
21528
21552
|
# @return [String]
|
|
21529
21553
|
#
|
|
21530
21554
|
# @!attribute [rw] preferred_maintenance_window
|
|
@@ -22054,7 +22078,7 @@ module Aws::RDS
|
|
|
22054
22078
|
# Constraints: If supplied, must match the name of an existing
|
|
22055
22079
|
# DBSubnetGroup.
|
|
22056
22080
|
#
|
|
22057
|
-
# Example: `
|
|
22081
|
+
# Example: `mydbsubnetgroup`
|
|
22058
22082
|
# @return [String]
|
|
22059
22083
|
#
|
|
22060
22084
|
# @!attribute [rw] multi_az
|
|
@@ -22559,7 +22583,7 @@ module Aws::RDS
|
|
|
22559
22583
|
include Aws::Structure
|
|
22560
22584
|
end
|
|
22561
22585
|
|
|
22562
|
-
# SNS has responded that there is a problem with the
|
|
22586
|
+
# SNS has responded that there is a problem with the SNS topic
|
|
22563
22587
|
# specified.
|
|
22564
22588
|
#
|
|
22565
22589
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SNSInvalidTopicFault AWS API Documentation
|
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.138.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-02-
|
|
11
|
+
date: 2022-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|