aws-sdk-rds 1.43.0 → 1.44.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/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +364 -152
- data/lib/aws-sdk-rds/client_api.rb +6 -0
- data/lib/aws-sdk-rds/db_cluster.rb +35 -16
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +1 -1
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +8 -4
- data/lib/aws-sdk-rds/db_instance.rb +78 -48
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_security_group.rb +1 -1
- data/lib/aws-sdk-rds/db_snapshot.rb +11 -11
- data/lib/aws-sdk-rds/db_subnet_group.rb +1 -1
- data/lib/aws-sdk-rds/event_subscription.rb +3 -3
- data/lib/aws-sdk-rds/option_group.rb +2 -2
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +60 -38
- data/lib/aws-sdk-rds/types.rb +201 -128
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60e0752eab68fbaf47823107fe7cb1f6b5af76c5
|
4
|
+
data.tar.gz: e37f6eac599a52589f2855263b8378d13fecf3af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7fab7964f1b9b632f1bafb03cc1e076a585bae5ebe397f5d1b5f0a307fb902f7ce8dbbd6920c8312e3b36775749997ed978c58484399509553830837b7e04f41
|
7
|
+
data.tar.gz: ee9ecae07f28f3def837b35e1a3cb4e4ce71ffc88960fdd12a732e83501865023dd9e7fe637eb70b9e60d186eda4e1f1c95162f3272e2e1c8cb74db3e3c227e5
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -212,9 +212,13 @@ module Aws::RDS
|
|
212
212
|
# Aurora MySQL to Access Other AWS Services on Your Behalf][1] in the
|
213
213
|
# *Amazon Aurora User Guide*.
|
214
214
|
#
|
215
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
216
|
+
#
|
217
|
+
# </note>
|
218
|
+
#
|
215
219
|
#
|
216
220
|
#
|
217
|
-
# [1]:
|
221
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Integrating.Authorizing.html
|
218
222
|
#
|
219
223
|
# @option params [required, String] :db_cluster_identifier
|
220
224
|
# The name of the DB cluster to associate the IAM role with.
|
@@ -361,7 +365,7 @@ module Aws::RDS
|
|
361
365
|
#
|
362
366
|
#
|
363
367
|
#
|
364
|
-
# [1]:
|
368
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html
|
365
369
|
#
|
366
370
|
# @option params [required, String] :resource_name
|
367
371
|
# The Amazon RDS resource that the tags are added to. This value is an
|
@@ -370,7 +374,7 @@ module Aws::RDS
|
|
370
374
|
#
|
371
375
|
#
|
372
376
|
#
|
373
|
-
# [1]:
|
377
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
374
378
|
#
|
375
379
|
# @option params [required, Array<Types::Tag>] :tags
|
376
380
|
# The tags to be assigned to the Amazon RDS resource.
|
@@ -423,7 +427,7 @@ module Aws::RDS
|
|
423
427
|
#
|
424
428
|
#
|
425
429
|
#
|
426
|
-
# [1]:
|
430
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
427
431
|
#
|
428
432
|
# @option params [required, String] :apply_action
|
429
433
|
# The pending maintenance action to apply to this resource.
|
@@ -601,9 +605,13 @@ module Aws::RDS
|
|
601
605
|
# For more information on backtracking, see [ Backtracking an Aurora DB
|
602
606
|
# Cluster][1] in the *Amazon Aurora User Guide.*
|
603
607
|
#
|
608
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
609
|
+
#
|
610
|
+
# </note>
|
611
|
+
#
|
604
612
|
#
|
605
613
|
#
|
606
|
-
# [1]:
|
614
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Managing.Backtrack.html
|
607
615
|
#
|
608
616
|
# @option params [required, String] :db_cluster_identifier
|
609
617
|
# The DB cluster identifier of the DB cluster to be backtracked. This
|
@@ -690,6 +698,10 @@ module Aws::RDS
|
|
690
698
|
|
691
699
|
# Copies the specified DB cluster parameter group.
|
692
700
|
#
|
701
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
702
|
+
#
|
703
|
+
# </note>
|
704
|
+
#
|
693
705
|
# @option params [required, String] :source_db_cluster_parameter_group_identifier
|
694
706
|
# The identifier or Amazon Resource Name (ARN) for the source DB cluster
|
695
707
|
# parameter group. For information about creating an ARN, see [
|
@@ -711,7 +723,7 @@ module Aws::RDS
|
|
711
723
|
#
|
712
724
|
#
|
713
725
|
#
|
714
|
-
# [1]:
|
726
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
715
727
|
#
|
716
728
|
# @option params [required, String] :target_db_cluster_parameter_group_identifier
|
717
729
|
# The identifier for the copied DB cluster parameter group.
|
@@ -737,7 +749,7 @@ module Aws::RDS
|
|
737
749
|
#
|
738
750
|
#
|
739
751
|
#
|
740
|
-
# [1]:
|
752
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
741
753
|
#
|
742
754
|
# @return [Types::CopyDBClusterParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
743
755
|
#
|
@@ -860,12 +872,16 @@ module Aws::RDS
|
|
860
872
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
861
873
|
# Aurora?][4] in the *Amazon Aurora User Guide.*
|
862
874
|
#
|
875
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
863
876
|
#
|
877
|
+
# </note>
|
864
878
|
#
|
865
|
-
#
|
866
|
-
#
|
867
|
-
# [
|
868
|
-
# [
|
879
|
+
#
|
880
|
+
#
|
881
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
882
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
883
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_CopySnapshot.html
|
884
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
869
885
|
#
|
870
886
|
# @option params [required, String] :source_db_cluster_snapshot_identifier
|
871
887
|
# The identifier of the DB cluster snapshot to copy. This parameter is
|
@@ -890,7 +906,7 @@ module Aws::RDS
|
|
890
906
|
#
|
891
907
|
#
|
892
908
|
#
|
893
|
-
# [1]:
|
909
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_CopySnapshot.html#USER_CopySnapshot.AcrossRegions
|
894
910
|
#
|
895
911
|
# @option params [required, String] :target_db_cluster_snapshot_identifier
|
896
912
|
# The identifier of the new DB cluster snapshot to create from the
|
@@ -967,8 +983,8 @@ module Aws::RDS
|
|
967
983
|
#
|
968
984
|
#
|
969
985
|
#
|
970
|
-
# [1]:
|
971
|
-
# [2]:
|
986
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
987
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
972
988
|
#
|
973
989
|
# @option params [Boolean] :copy_tags
|
974
990
|
# True to copy all tags from the source DB cluster snapshot to the
|
@@ -980,7 +996,7 @@ module Aws::RDS
|
|
980
996
|
#
|
981
997
|
#
|
982
998
|
#
|
983
|
-
# [1]:
|
999
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
984
1000
|
#
|
985
1001
|
# @option params [String] :source_region
|
986
1002
|
# The source region of the snapshot. This is only needed when the
|
@@ -1072,7 +1088,7 @@ module Aws::RDS
|
|
1072
1088
|
#
|
1073
1089
|
#
|
1074
1090
|
#
|
1075
|
-
# [1]:
|
1091
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
1076
1092
|
#
|
1077
1093
|
# @option params [required, String] :target_db_parameter_group_identifier
|
1078
1094
|
# The identifier for the copied DB parameter group.
|
@@ -1098,7 +1114,7 @@ module Aws::RDS
|
|
1098
1114
|
#
|
1099
1115
|
#
|
1100
1116
|
#
|
1101
|
-
# [1]:
|
1117
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1102
1118
|
#
|
1103
1119
|
# @return [Types::CopyDBParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1104
1120
|
#
|
@@ -1163,7 +1179,7 @@ module Aws::RDS
|
|
1163
1179
|
#
|
1164
1180
|
#
|
1165
1181
|
#
|
1166
|
-
# [1]:
|
1182
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopyDBSnapshot.html
|
1167
1183
|
#
|
1168
1184
|
# @option params [required, String] :source_db_snapshot_identifier
|
1169
1185
|
# The identifier for the source DB snapshot.
|
@@ -1237,7 +1253,7 @@ module Aws::RDS
|
|
1237
1253
|
#
|
1238
1254
|
#
|
1239
1255
|
#
|
1240
|
-
# [1]:
|
1256
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1241
1257
|
#
|
1242
1258
|
# @option params [Boolean] :copy_tags
|
1243
1259
|
# True to copy all tags from the source DB snapshot to the target DB
|
@@ -1289,8 +1305,8 @@ module Aws::RDS
|
|
1289
1305
|
#
|
1290
1306
|
#
|
1291
1307
|
#
|
1292
|
-
# [1]:
|
1293
|
-
# [2]:
|
1308
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
1309
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
1294
1310
|
#
|
1295
1311
|
# @option params [String] :option_group_name
|
1296
1312
|
# The name of an option group to associate with the copy of the
|
@@ -1305,7 +1321,7 @@ module Aws::RDS
|
|
1305
1321
|
#
|
1306
1322
|
#
|
1307
1323
|
#
|
1308
|
-
# [1]:
|
1324
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopySnapshot.Options
|
1309
1325
|
#
|
1310
1326
|
# @option params [String] :source_region
|
1311
1327
|
# The source region of the snapshot. This is only needed when the
|
@@ -1412,7 +1428,7 @@ module Aws::RDS
|
|
1412
1428
|
#
|
1413
1429
|
#
|
1414
1430
|
#
|
1415
|
-
# [1]:
|
1431
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
1416
1432
|
#
|
1417
1433
|
# @option params [required, String] :target_option_group_identifier
|
1418
1434
|
# The identifier for the copied option group.
|
@@ -1438,7 +1454,7 @@ module Aws::RDS
|
|
1438
1454
|
#
|
1439
1455
|
#
|
1440
1456
|
#
|
1441
|
-
# [1]:
|
1457
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1442
1458
|
#
|
1443
1459
|
# @return [Types::CopyOptionGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1444
1460
|
#
|
@@ -1528,9 +1544,13 @@ module Aws::RDS
|
|
1528
1544
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
1529
1545
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
1530
1546
|
#
|
1547
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
1548
|
+
#
|
1549
|
+
# </note>
|
1550
|
+
#
|
1531
1551
|
#
|
1532
1552
|
#
|
1533
|
-
# [1]:
|
1553
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
1534
1554
|
#
|
1535
1555
|
# @option params [Array<String>] :availability_zones
|
1536
1556
|
# A list of EC2 Availability Zones that instances in the DB cluster can
|
@@ -1540,7 +1560,7 @@ module Aws::RDS
|
|
1540
1560
|
#
|
1541
1561
|
#
|
1542
1562
|
#
|
1543
|
-
# [1]:
|
1563
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html
|
1544
1564
|
#
|
1545
1565
|
# @option params [Integer] :backup_retention_period
|
1546
1566
|
# The number of days for which automated backups are retained. You must
|
@@ -1671,7 +1691,7 @@ module Aws::RDS
|
|
1671
1691
|
#
|
1672
1692
|
#
|
1673
1693
|
#
|
1674
|
-
# [1]:
|
1694
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
1675
1695
|
#
|
1676
1696
|
# @option params [String] :preferred_maintenance_window
|
1677
1697
|
# The weekly time range during which system maintenance can occur, in
|
@@ -1690,7 +1710,7 @@ module Aws::RDS
|
|
1690
1710
|
#
|
1691
1711
|
#
|
1692
1712
|
#
|
1693
|
-
# [1]:
|
1713
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
1694
1714
|
#
|
1695
1715
|
# @option params [String] :replication_source_identifier
|
1696
1716
|
# The Amazon Resource Name (ARN) of the source DB instance or DB cluster
|
@@ -1702,7 +1722,7 @@ module Aws::RDS
|
|
1702
1722
|
#
|
1703
1723
|
#
|
1704
1724
|
#
|
1705
|
-
# [1]:
|
1725
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1706
1726
|
#
|
1707
1727
|
# @option params [Boolean] :storage_encrypted
|
1708
1728
|
# Specifies whether the DB cluster is encrypted.
|
@@ -1772,8 +1792,8 @@ module Aws::RDS
|
|
1772
1792
|
#
|
1773
1793
|
#
|
1774
1794
|
#
|
1775
|
-
# [1]:
|
1776
|
-
# [2]:
|
1795
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
1796
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
1777
1797
|
#
|
1778
1798
|
# @option params [Boolean] :enable_iam_database_authentication
|
1779
1799
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
@@ -1802,7 +1822,7 @@ module Aws::RDS
|
|
1802
1822
|
#
|
1803
1823
|
#
|
1804
1824
|
#
|
1805
|
-
# [1]:
|
1825
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
1806
1826
|
#
|
1807
1827
|
# @option params [String] :engine_mode
|
1808
1828
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
@@ -1821,6 +1841,10 @@ module Aws::RDS
|
|
1821
1841
|
# The global cluster ID of an Aurora cluster that becomes the primary
|
1822
1842
|
# cluster in the new global database cluster.
|
1823
1843
|
#
|
1844
|
+
# @option params [Boolean] :copy_tags_to_snapshot
|
1845
|
+
# True to copy all tags from the DB cluster to snapshots of the DB
|
1846
|
+
# cluster, and otherwise false. The default is false.
|
1847
|
+
#
|
1824
1848
|
# @option params [String] :source_region
|
1825
1849
|
# The source region of the snapshot. This is only needed when the
|
1826
1850
|
# shapshot is encrypted and in a different region.
|
@@ -1897,6 +1921,7 @@ module Aws::RDS
|
|
1897
1921
|
# },
|
1898
1922
|
# deletion_protection: false,
|
1899
1923
|
# global_cluster_identifier: "String",
|
1924
|
+
# copy_tags_to_snapshot: false,
|
1900
1925
|
# source_region: "String",
|
1901
1926
|
# })
|
1902
1927
|
#
|
@@ -1965,6 +1990,7 @@ module Aws::RDS
|
|
1965
1990
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
1966
1991
|
# resp.db_cluster.deletion_protection #=> Boolean
|
1967
1992
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
1993
|
+
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
1968
1994
|
#
|
1969
1995
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
1970
1996
|
#
|
@@ -1978,6 +2004,10 @@ module Aws::RDS
|
|
1978
2004
|
# Creates a new custom endpoint and associates it with an Amazon Aurora
|
1979
2005
|
# DB cluster.
|
1980
2006
|
#
|
2007
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
2008
|
+
#
|
2009
|
+
# </note>
|
2010
|
+
#
|
1981
2011
|
# @option params [required, String] :db_cluster_identifier
|
1982
2012
|
# The DB cluster identifier of the DB cluster associated with the
|
1983
2013
|
# endpoint. This parameter is stored as a lowercase string.
|
@@ -2076,10 +2106,14 @@ module Aws::RDS
|
|
2076
2106
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
2077
2107
|
# Aurora?][2] in the *Amazon Aurora User Guide.*
|
2078
2108
|
#
|
2109
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
2110
|
+
#
|
2111
|
+
# </note>
|
2112
|
+
#
|
2079
2113
|
#
|
2080
2114
|
#
|
2081
2115
|
# [1]: https://console.aws.amazon.com/rds/
|
2082
|
-
# [2]:
|
2116
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
2083
2117
|
#
|
2084
2118
|
# @option params [required, String] :db_cluster_parameter_group_name
|
2085
2119
|
# The name of the DB cluster parameter group.
|
@@ -2118,7 +2152,7 @@ module Aws::RDS
|
|
2118
2152
|
#
|
2119
2153
|
#
|
2120
2154
|
#
|
2121
|
-
# [1]:
|
2155
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2122
2156
|
#
|
2123
2157
|
# @return [Types::CreateDBClusterParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2124
2158
|
#
|
@@ -2175,9 +2209,13 @@ module Aws::RDS
|
|
2175
2209
|
# Aurora, see [ What Is Amazon Aurora?][1] in the *Amazon Aurora User
|
2176
2210
|
# Guide.*
|
2177
2211
|
#
|
2212
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
2213
|
+
#
|
2214
|
+
# </note>
|
2215
|
+
#
|
2178
2216
|
#
|
2179
2217
|
#
|
2180
|
-
# [1]:
|
2218
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
2181
2219
|
#
|
2182
2220
|
# @option params [required, String] :db_cluster_snapshot_identifier
|
2183
2221
|
# The identifier of the DB cluster snapshot. This parameter is stored as
|
@@ -2382,10 +2420,10 @@ module Aws::RDS
|
|
2382
2420
|
# following:
|
2383
2421
|
#
|
2384
2422
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
2385
|
-
#
|
2423
|
+
# 32768.
|
2386
2424
|
#
|
2387
2425
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2388
|
-
#
|
2426
|
+
# 32768.
|
2389
2427
|
#
|
2390
2428
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
2391
2429
|
#
|
@@ -2395,10 +2433,10 @@ module Aws::RDS
|
|
2395
2433
|
# following:
|
2396
2434
|
#
|
2397
2435
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
2398
|
-
#
|
2436
|
+
# 32768.
|
2399
2437
|
#
|
2400
2438
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2401
|
-
#
|
2439
|
+
# 32768.
|
2402
2440
|
#
|
2403
2441
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
2404
2442
|
#
|
@@ -2408,10 +2446,10 @@ module Aws::RDS
|
|
2408
2446
|
# following:
|
2409
2447
|
#
|
2410
2448
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
2411
|
-
#
|
2449
|
+
# 32768.
|
2412
2450
|
#
|
2413
2451
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2414
|
-
#
|
2452
|
+
# 32768.
|
2415
2453
|
#
|
2416
2454
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
2417
2455
|
#
|
@@ -2463,7 +2501,7 @@ module Aws::RDS
|
|
2463
2501
|
#
|
2464
2502
|
#
|
2465
2503
|
#
|
2466
|
-
# [1]:
|
2504
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
2467
2505
|
#
|
2468
2506
|
# @option params [required, String] :engine
|
2469
2507
|
# The name of the database engine to be used for this instance.
|
@@ -2628,7 +2666,7 @@ module Aws::RDS
|
|
2628
2666
|
#
|
2629
2667
|
#
|
2630
2668
|
#
|
2631
|
-
# [1]:
|
2669
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html
|
2632
2670
|
#
|
2633
2671
|
# @option params [String] :db_subnet_group_name
|
2634
2672
|
# A DB subnet group to associate with this DB instance.
|
@@ -2652,7 +2690,7 @@ module Aws::RDS
|
|
2652
2690
|
#
|
2653
2691
|
#
|
2654
2692
|
#
|
2655
|
-
# [1]:
|
2693
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
2656
2694
|
#
|
2657
2695
|
# @option params [String] :db_parameter_group_name
|
2658
2696
|
# The name of the DB parameter group to associate with this DB instance.
|
@@ -2713,8 +2751,8 @@ module Aws::RDS
|
|
2713
2751
|
#
|
2714
2752
|
#
|
2715
2753
|
#
|
2716
|
-
# [1]:
|
2717
|
-
# [2]:
|
2754
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
2755
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow
|
2718
2756
|
#
|
2719
2757
|
# @option params [Integer] :port
|
2720
2758
|
# The port number on which the database accepts connections.
|
@@ -2810,11 +2848,11 @@ module Aws::RDS
|
|
2810
2848
|
#
|
2811
2849
|
#
|
2812
2850
|
#
|
2813
|
-
# [1]:
|
2814
|
-
# [2]:
|
2815
|
-
# [3]:
|
2816
|
-
# [4]:
|
2817
|
-
# [5]:
|
2851
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
|
2852
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.FeatureSupport
|
2853
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
2854
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
2855
|
+
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts.General.DBVersions
|
2818
2856
|
#
|
2819
2857
|
# @option params [Boolean] :auto_minor_version_upgrade
|
2820
2858
|
# Indicates that minor engine upgrades are applied automatically to the
|
@@ -2839,7 +2877,7 @@ module Aws::RDS
|
|
2839
2877
|
#
|
2840
2878
|
#
|
2841
2879
|
#
|
2842
|
-
# [1]:
|
2880
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
2843
2881
|
#
|
2844
2882
|
# @option params [String] :option_group_name
|
2845
2883
|
# Indicates that the DB instance should be associated with the specified
|
@@ -2893,7 +2931,7 @@ module Aws::RDS
|
|
2893
2931
|
#
|
2894
2932
|
#
|
2895
2933
|
#
|
2896
|
-
# [1]:
|
2934
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2897
2935
|
#
|
2898
2936
|
# @option params [String] :db_cluster_identifier
|
2899
2937
|
# The identifier of the DB cluster that the instance will belong to.
|
@@ -2958,6 +2996,12 @@ module Aws::RDS
|
|
2958
2996
|
# True to copy all tags from the DB instance to snapshots of the DB
|
2959
2997
|
# instance, and otherwise false. The default is false.
|
2960
2998
|
#
|
2999
|
+
# **Amazon Aurora**
|
3000
|
+
#
|
3001
|
+
# Not applicable. Copying tags to snapshots is managed by the DB
|
3002
|
+
# cluster. Setting this value for an Aurora DB instance has no effect on
|
3003
|
+
# the DB cluster setting. For more information, see CreateDBCluster.
|
3004
|
+
#
|
2961
3005
|
# @option params [Integer] :monitoring_interval
|
2962
3006
|
# The interval, in seconds, between points when Enhanced Monitoring
|
2963
3007
|
# metrics are collected for the DB instance. To disable collecting
|
@@ -2980,7 +3024,7 @@ module Aws::RDS
|
|
2980
3024
|
#
|
2981
3025
|
#
|
2982
3026
|
#
|
2983
|
-
# [1]:
|
3027
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
2984
3028
|
#
|
2985
3029
|
# @option params [String] :domain_iam_role_name
|
2986
3030
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -2998,7 +3042,7 @@ module Aws::RDS
|
|
2998
3042
|
#
|
2999
3043
|
#
|
3000
3044
|
#
|
3001
|
-
# [1]:
|
3045
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.FaultTolerance
|
3002
3046
|
#
|
3003
3047
|
# @option params [String] :timezone
|
3004
3048
|
# The time zone of the DB instance. The time zone parameter is currently
|
@@ -3006,7 +3050,7 @@ module Aws::RDS
|
|
3006
3050
|
#
|
3007
3051
|
#
|
3008
3052
|
#
|
3009
|
-
# [1]:
|
3053
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
|
3010
3054
|
#
|
3011
3055
|
# @option params [Boolean] :enable_iam_database_authentication
|
3012
3056
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
@@ -3037,7 +3081,7 @@ module Aws::RDS
|
|
3037
3081
|
#
|
3038
3082
|
#
|
3039
3083
|
#
|
3040
|
-
# [1]:
|
3084
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
3041
3085
|
#
|
3042
3086
|
# @option params [String] :performance_insights_kms_key_id
|
3043
3087
|
# The AWS KMS key identifier for encryption of Performance Insights
|
@@ -3057,7 +3101,7 @@ module Aws::RDS
|
|
3057
3101
|
#
|
3058
3102
|
#
|
3059
3103
|
#
|
3060
|
-
# [1]:
|
3104
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
3061
3105
|
#
|
3062
3106
|
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
3063
3107
|
# The number of CPU cores and the number of threads per core for the DB
|
@@ -3071,7 +3115,7 @@ module Aws::RDS
|
|
3071
3115
|
#
|
3072
3116
|
#
|
3073
3117
|
#
|
3074
|
-
# [1]:
|
3118
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
3075
3119
|
#
|
3076
3120
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3077
3121
|
#
|
@@ -3300,7 +3344,7 @@ module Aws::RDS
|
|
3300
3344
|
#
|
3301
3345
|
#
|
3302
3346
|
#
|
3303
|
-
# [1]:
|
3347
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReadRepl.html
|
3304
3348
|
#
|
3305
3349
|
# @option params [required, String] :db_instance_identifier
|
3306
3350
|
# The DB instance identifier of the Read Replica. This identifier is the
|
@@ -3336,7 +3380,7 @@ module Aws::RDS
|
|
3336
3380
|
#
|
3337
3381
|
#
|
3338
3382
|
#
|
3339
|
-
# [1]:
|
3383
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
3340
3384
|
#
|
3341
3385
|
# @option params [String] :db_instance_class
|
3342
3386
|
# The compute and memory capacity of the Read Replica, for example,
|
@@ -3349,7 +3393,7 @@ module Aws::RDS
|
|
3349
3393
|
#
|
3350
3394
|
#
|
3351
3395
|
#
|
3352
|
-
# [1]:
|
3396
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
3353
3397
|
#
|
3354
3398
|
# @option params [String] :availability_zone
|
3355
3399
|
# The Amazon EC2 Availability Zone that the Read Replica is created in.
|
@@ -3402,7 +3446,7 @@ module Aws::RDS
|
|
3402
3446
|
#
|
3403
3447
|
#
|
3404
3448
|
#
|
3405
|
-
# [1]:
|
3449
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3406
3450
|
#
|
3407
3451
|
# @option params [String] :db_subnet_group_name
|
3408
3452
|
# Specifies a DB subnet group for the DB instance. The new DB instance
|
@@ -3474,7 +3518,7 @@ module Aws::RDS
|
|
3474
3518
|
#
|
3475
3519
|
#
|
3476
3520
|
#
|
3477
|
-
# [1]:
|
3521
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
3478
3522
|
#
|
3479
3523
|
# @option params [String] :kms_key_id
|
3480
3524
|
# The AWS KMS key ID for an encrypted Read Replica. The KMS key ID is
|
@@ -3544,8 +3588,8 @@ module Aws::RDS
|
|
3544
3588
|
#
|
3545
3589
|
#
|
3546
3590
|
#
|
3547
|
-
# [1]:
|
3548
|
-
# [2]:
|
3591
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
3592
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
3549
3593
|
#
|
3550
3594
|
# @option params [Boolean] :enable_iam_database_authentication
|
3551
3595
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
@@ -3571,7 +3615,7 @@ module Aws::RDS
|
|
3571
3615
|
#
|
3572
3616
|
#
|
3573
3617
|
#
|
3574
|
-
# [1]:
|
3618
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
3575
3619
|
#
|
3576
3620
|
# @option params [String] :performance_insights_kms_key_id
|
3577
3621
|
# The AWS KMS key identifier for encryption of Performance Insights
|
@@ -3590,7 +3634,7 @@ module Aws::RDS
|
|
3590
3634
|
#
|
3591
3635
|
#
|
3592
3636
|
#
|
3593
|
-
# [1]:
|
3637
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
3594
3638
|
#
|
3595
3639
|
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
3596
3640
|
# The number of CPU cores and the number of threads per core for the DB
|
@@ -3608,7 +3652,7 @@ module Aws::RDS
|
|
3608
3652
|
#
|
3609
3653
|
#
|
3610
3654
|
#
|
3611
|
-
# [1]:
|
3655
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
3612
3656
|
#
|
3613
3657
|
# @option params [String] :source_region
|
3614
3658
|
# The source region of the snapshot. This is only needed when the
|
@@ -3880,7 +3924,7 @@ module Aws::RDS
|
|
3880
3924
|
#
|
3881
3925
|
#
|
3882
3926
|
#
|
3883
|
-
# [1]:
|
3927
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3884
3928
|
#
|
3885
3929
|
# @return [Types::CreateDBParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3886
3930
|
#
|
@@ -3966,7 +4010,7 @@ module Aws::RDS
|
|
3966
4010
|
#
|
3967
4011
|
#
|
3968
4012
|
#
|
3969
|
-
# [1]:
|
4013
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
3970
4014
|
#
|
3971
4015
|
# @return [Types::CreateDBSecurityGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3972
4016
|
#
|
@@ -4060,7 +4104,7 @@ module Aws::RDS
|
|
4060
4104
|
#
|
4061
4105
|
#
|
4062
4106
|
#
|
4063
|
-
# [1]:
|
4107
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
4064
4108
|
#
|
4065
4109
|
# @return [Types::CreateDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4066
4110
|
#
|
@@ -4161,7 +4205,7 @@ module Aws::RDS
|
|
4161
4205
|
#
|
4162
4206
|
#
|
4163
4207
|
#
|
4164
|
-
# [1]:
|
4208
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
4165
4209
|
#
|
4166
4210
|
# @return [Types::CreateDBSubnetGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4167
4211
|
#
|
@@ -4271,7 +4315,7 @@ module Aws::RDS
|
|
4271
4315
|
#
|
4272
4316
|
#
|
4273
4317
|
#
|
4274
|
-
# [1]:
|
4318
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
|
4275
4319
|
#
|
4276
4320
|
# @option params [Array<String>] :source_ids
|
4277
4321
|
# The list of identifiers of the event sources for which events are
|
@@ -4306,7 +4350,7 @@ module Aws::RDS
|
|
4306
4350
|
#
|
4307
4351
|
#
|
4308
4352
|
#
|
4309
|
-
# [1]:
|
4353
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
4310
4354
|
#
|
4311
4355
|
# @return [Types::CreateEventSubscriptionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4312
4356
|
#
|
@@ -4388,6 +4432,10 @@ module Aws::RDS
|
|
4388
4432
|
# existing Aurora cluster during the create operation, and this cluster
|
4389
4433
|
# becomes the primary cluster of the global database.
|
4390
4434
|
#
|
4435
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
4436
|
+
#
|
4437
|
+
# </note>
|
4438
|
+
#
|
4391
4439
|
# @option params [String] :global_cluster_identifier
|
4392
4440
|
# The cluster identifier of the new global database cluster.
|
4393
4441
|
#
|
@@ -4488,7 +4536,7 @@ module Aws::RDS
|
|
4488
4536
|
#
|
4489
4537
|
#
|
4490
4538
|
#
|
4491
|
-
# [1]:
|
4539
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
4492
4540
|
#
|
4493
4541
|
# @return [Types::CreateOptionGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4494
4542
|
#
|
@@ -4579,9 +4627,13 @@ module Aws::RDS
|
|
4579
4627
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
4580
4628
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
4581
4629
|
#
|
4630
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
4631
|
+
#
|
4632
|
+
# </note>
|
4582
4633
|
#
|
4583
4634
|
#
|
4584
|
-
#
|
4635
|
+
#
|
4636
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
4585
4637
|
#
|
4586
4638
|
# @option params [required, String] :db_cluster_identifier
|
4587
4639
|
# The DB cluster identifier for the DB cluster to be deleted. This
|
@@ -4716,6 +4768,7 @@ module Aws::RDS
|
|
4716
4768
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
4717
4769
|
# resp.db_cluster.deletion_protection #=> Boolean
|
4718
4770
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
4771
|
+
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
4719
4772
|
#
|
4720
4773
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
4721
4774
|
#
|
@@ -4729,6 +4782,10 @@ module Aws::RDS
|
|
4729
4782
|
# Deletes a custom endpoint and removes it from an Amazon Aurora DB
|
4730
4783
|
# cluster.
|
4731
4784
|
#
|
4785
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
4786
|
+
#
|
4787
|
+
# </note>
|
4788
|
+
#
|
4732
4789
|
# @option params [required, String] :db_cluster_endpoint_identifier
|
4733
4790
|
# The identifier associated with the custom endpoint. This parameter is
|
4734
4791
|
# stored as a lowercase string.
|
@@ -4783,9 +4840,13 @@ module Aws::RDS
|
|
4783
4840
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
4784
4841
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
4785
4842
|
#
|
4843
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
4844
|
+
#
|
4845
|
+
# </note>
|
4846
|
+
#
|
4786
4847
|
#
|
4787
4848
|
#
|
4788
|
-
# [1]:
|
4849
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
4789
4850
|
#
|
4790
4851
|
# @option params [required, String] :db_cluster_parameter_group_name
|
4791
4852
|
# The name of the DB cluster parameter group.
|
@@ -4835,9 +4896,13 @@ module Aws::RDS
|
|
4835
4896
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
4836
4897
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
4837
4898
|
#
|
4899
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
4900
|
+
#
|
4901
|
+
# </note>
|
4902
|
+
#
|
4838
4903
|
#
|
4839
4904
|
#
|
4840
|
-
# [1]:
|
4905
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
4841
4906
|
#
|
4842
4907
|
# @option params [required, String] :db_cluster_snapshot_identifier
|
4843
4908
|
# The identifier of the DB cluster snapshot to delete.
|
@@ -5468,6 +5533,10 @@ module Aws::RDS
|
|
5468
5533
|
# Deletes a global database cluster. The primary and secondary clusters
|
5469
5534
|
# must already be detached or destroyed first.
|
5470
5535
|
#
|
5536
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
5537
|
+
#
|
5538
|
+
# </note>
|
5539
|
+
#
|
5471
5540
|
# @option params [required, String] :global_cluster_identifier
|
5472
5541
|
# The cluster identifier of the global database cluster being deleted.
|
5473
5542
|
#
|
@@ -5672,9 +5741,13 @@ module Aws::RDS
|
|
5672
5741
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
5673
5742
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
5674
5743
|
#
|
5744
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
5745
|
+
#
|
5746
|
+
# </note>
|
5747
|
+
#
|
5675
5748
|
#
|
5676
5749
|
#
|
5677
|
-
# [1]:
|
5750
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
5678
5751
|
#
|
5679
5752
|
# @option params [required, String] :db_cluster_identifier
|
5680
5753
|
# The DB cluster identifier of the DB cluster to be described. This
|
@@ -5789,6 +5862,10 @@ module Aws::RDS
|
|
5789
5862
|
|
5790
5863
|
# Returns information about endpoints for an Amazon Aurora DB cluster.
|
5791
5864
|
#
|
5865
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
5866
|
+
#
|
5867
|
+
# </note>
|
5868
|
+
#
|
5792
5869
|
# @option params [String] :db_cluster_identifier
|
5793
5870
|
# The DB cluster identifier of the DB cluster associated with the
|
5794
5871
|
# endpoint. This parameter is stored as a lowercase string.
|
@@ -5880,9 +5957,13 @@ module Aws::RDS
|
|
5880
5957
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
5881
5958
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
5882
5959
|
#
|
5960
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
5961
|
+
#
|
5962
|
+
# </note>
|
5883
5963
|
#
|
5884
5964
|
#
|
5885
|
-
#
|
5965
|
+
#
|
5966
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
5886
5967
|
#
|
5887
5968
|
# @option params [String] :db_cluster_parameter_group_name
|
5888
5969
|
# The name of a specific DB cluster parameter group to return details
|
@@ -5970,9 +6051,13 @@ module Aws::RDS
|
|
5970
6051
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
5971
6052
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
5972
6053
|
#
|
6054
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
6055
|
+
#
|
6056
|
+
# </note>
|
6057
|
+
#
|
5973
6058
|
#
|
5974
6059
|
#
|
5975
|
-
# [1]:
|
6060
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
5976
6061
|
#
|
5977
6062
|
# @option params [required, String] :db_cluster_parameter_group_name
|
5978
6063
|
# The name of a specific DB cluster parameter group to return parameter
|
@@ -6082,6 +6167,10 @@ module Aws::RDS
|
|
6082
6167
|
# DB cluster snapshot, or to make the manual DB cluster snapshot public
|
6083
6168
|
# or private, use the ModifyDBClusterSnapshotAttribute API action.
|
6084
6169
|
#
|
6170
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
6171
|
+
#
|
6172
|
+
# </note>
|
6173
|
+
#
|
6085
6174
|
# @option params [required, String] :db_cluster_snapshot_identifier
|
6086
6175
|
# The identifier for the DB cluster snapshot to describe the attributes
|
6087
6176
|
# for.
|
@@ -6134,9 +6223,13 @@ module Aws::RDS
|
|
6134
6223
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
6135
6224
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
6136
6225
|
#
|
6226
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
6227
|
+
#
|
6228
|
+
# </note>
|
6137
6229
|
#
|
6138
6230
|
#
|
6139
|
-
#
|
6231
|
+
#
|
6232
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
6140
6233
|
#
|
6141
6234
|
# @option params [String] :db_cluster_identifier
|
6142
6235
|
# The ID of the DB cluster to retrieve the list of DB cluster snapshots
|
@@ -6305,9 +6398,13 @@ module Aws::RDS
|
|
6305
6398
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
6306
6399
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
6307
6400
|
#
|
6401
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
6402
|
+
#
|
6403
|
+
# </note>
|
6404
|
+
#
|
6308
6405
|
#
|
6309
6406
|
#
|
6310
|
-
# [1]:
|
6407
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
6311
6408
|
#
|
6312
6409
|
# @option params [String] :db_cluster_identifier
|
6313
6410
|
# The user-supplied DB cluster identifier. If this parameter is
|
@@ -6445,6 +6542,7 @@ module Aws::RDS
|
|
6445
6542
|
# resp.db_clusters[0].scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
6446
6543
|
# resp.db_clusters[0].deletion_protection #=> Boolean
|
6447
6544
|
# resp.db_clusters[0].http_endpoint_enabled #=> Boolean
|
6545
|
+
# resp.db_clusters[0].copy_tags_to_snapshot #=> Boolean
|
6448
6546
|
#
|
6449
6547
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
|
6450
6548
|
#
|
@@ -7366,6 +7464,14 @@ module Aws::RDS
|
|
7366
7464
|
#
|
7367
7465
|
# * `public` - Return all DB snapshots that have been marked as public.
|
7368
7466
|
#
|
7467
|
+
# * `awsbackup` - Return the DB snapshots managed by the AWS Backup
|
7468
|
+
# service.
|
7469
|
+
#
|
7470
|
+
# For information about AWS Backup, see the [ *AWS Backup Developer
|
7471
|
+
# Guide.* ][1]
|
7472
|
+
#
|
7473
|
+
# The `awsbackup` type does not apply to Aurora.
|
7474
|
+
#
|
7369
7475
|
# If you don't specify a `SnapshotType` value, then both automated and
|
7370
7476
|
# manual snapshots are returned. Shared and public DB snapshots are not
|
7371
7477
|
# included in the returned results by default. You can include shared
|
@@ -7379,6 +7485,10 @@ module Aws::RDS
|
|
7379
7485
|
# `IncludeShared` parameter doesn't apply when `SnapshotType` is set to
|
7380
7486
|
# `public`.
|
7381
7487
|
#
|
7488
|
+
#
|
7489
|
+
#
|
7490
|
+
# [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/whatisbackup.html
|
7491
|
+
#
|
7382
7492
|
# @option params [Array<Types::Filter>] :filters
|
7383
7493
|
# This parameter is not currently supported.
|
7384
7494
|
#
|
@@ -7597,7 +7707,7 @@ module Aws::RDS
|
|
7597
7707
|
#
|
7598
7708
|
#
|
7599
7709
|
#
|
7600
|
-
# [1]:
|
7710
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
7601
7711
|
#
|
7602
7712
|
# @option params [required, String] :db_parameter_group_family
|
7603
7713
|
# The name of the DB cluster parameter group family to return engine
|
@@ -7774,7 +7884,7 @@ module Aws::RDS
|
|
7774
7884
|
#
|
7775
7885
|
#
|
7776
7886
|
#
|
7777
|
-
# [1]:
|
7887
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
|
7778
7888
|
#
|
7779
7889
|
# @option params [String] :source_type
|
7780
7890
|
# The type of source that is generating the events.
|
@@ -8069,9 +8179,13 @@ module Aws::RDS
|
|
8069
8179
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
8070
8180
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
8071
8181
|
#
|
8182
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
8183
|
+
#
|
8184
|
+
# </note>
|
8072
8185
|
#
|
8073
8186
|
#
|
8074
|
-
#
|
8187
|
+
#
|
8188
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
8075
8189
|
#
|
8076
8190
|
# @option params [String] :global_cluster_identifier
|
8077
8191
|
# The user-supplied DB cluster identifier. If this parameter is
|
@@ -9129,9 +9243,13 @@ module Aws::RDS
|
|
9129
9243
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
9130
9244
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
9131
9245
|
#
|
9246
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
9132
9247
|
#
|
9248
|
+
# </note>
|
9133
9249
|
#
|
9134
|
-
#
|
9250
|
+
#
|
9251
|
+
#
|
9252
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
9135
9253
|
#
|
9136
9254
|
# @option params [required, String] :db_cluster_identifier
|
9137
9255
|
# A DB cluster identifier to force a failover for. This parameter is not
|
@@ -9241,6 +9359,7 @@ module Aws::RDS
|
|
9241
9359
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
9242
9360
|
# resp.db_cluster.deletion_protection #=> Boolean
|
9243
9361
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
9362
|
+
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
9244
9363
|
#
|
9245
9364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
9246
9365
|
#
|
@@ -9258,7 +9377,7 @@ module Aws::RDS
|
|
9258
9377
|
#
|
9259
9378
|
#
|
9260
9379
|
#
|
9261
|
-
# [1]:
|
9380
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html
|
9262
9381
|
#
|
9263
9382
|
# @option params [required, String] :resource_name
|
9264
9383
|
# The Amazon RDS resource with tags to be listed. This value is an
|
@@ -9268,7 +9387,7 @@ module Aws::RDS
|
|
9268
9387
|
#
|
9269
9388
|
#
|
9270
9389
|
#
|
9271
|
-
# [1]:
|
9390
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
9272
9391
|
#
|
9273
9392
|
# @option params [Array<Types::Filter>] :filters
|
9274
9393
|
# This parameter is not currently supported.
|
@@ -9339,10 +9458,14 @@ module Aws::RDS
|
|
9339
9458
|
# scaling points, see [ Autoscaling for Aurora Serverless][2] in the
|
9340
9459
|
# *Amazon Aurora User Guide*.
|
9341
9460
|
#
|
9461
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
9462
|
+
#
|
9463
|
+
# </note>
|
9464
|
+
#
|
9342
9465
|
#
|
9343
9466
|
#
|
9344
|
-
# [1]:
|
9345
|
-
# [2]:
|
9467
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
9468
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.how-it-works.html#aurora-serverless.how-it-works.auto-scaling
|
9346
9469
|
#
|
9347
9470
|
# @option params [required, String] :db_cluster_identifier
|
9348
9471
|
# The DB cluster identifier for the cluster being modified. This
|
@@ -9422,9 +9545,13 @@ module Aws::RDS
|
|
9422
9545
|
# Amazon Aurora, see [ What Is Amazon Aurora?][1] in the *Amazon Aurora
|
9423
9546
|
# User Guide.*
|
9424
9547
|
#
|
9548
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
9549
|
+
#
|
9550
|
+
# </note>
|
9425
9551
|
#
|
9426
9552
|
#
|
9427
|
-
#
|
9553
|
+
#
|
9554
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
9428
9555
|
#
|
9429
9556
|
# @option params [required, String] :db_cluster_identifier
|
9430
9557
|
# The DB cluster identifier for the cluster being modified. This
|
@@ -9535,7 +9662,7 @@ module Aws::RDS
|
|
9535
9662
|
#
|
9536
9663
|
#
|
9537
9664
|
#
|
9538
|
-
# [1]:
|
9665
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
9539
9666
|
#
|
9540
9667
|
# @option params [String] :preferred_maintenance_window
|
9541
9668
|
# The weekly time range during which system maintenance can occur, in
|
@@ -9554,7 +9681,7 @@ module Aws::RDS
|
|
9554
9681
|
#
|
9555
9682
|
#
|
9556
9683
|
#
|
9557
|
-
# [1]:
|
9684
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
9558
9685
|
#
|
9559
9686
|
# @option params [Boolean] :enable_iam_database_authentication
|
9560
9687
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
@@ -9616,7 +9743,11 @@ module Aws::RDS
|
|
9616
9743
|
#
|
9617
9744
|
#
|
9618
9745
|
#
|
9619
|
-
# [1]:
|
9746
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
9747
|
+
#
|
9748
|
+
# @option params [Boolean] :copy_tags_to_snapshot
|
9749
|
+
# True to copy all tags from the DB cluster to snapshots of the DB
|
9750
|
+
# cluster, and otherwise false. The default is false.
|
9620
9751
|
#
|
9621
9752
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9622
9753
|
#
|
@@ -9671,6 +9802,7 @@ module Aws::RDS
|
|
9671
9802
|
# },
|
9672
9803
|
# deletion_protection: false,
|
9673
9804
|
# enable_http_endpoint: false,
|
9805
|
+
# copy_tags_to_snapshot: false,
|
9674
9806
|
# })
|
9675
9807
|
#
|
9676
9808
|
# @example Response structure
|
@@ -9738,6 +9870,7 @@ module Aws::RDS
|
|
9738
9870
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
9739
9871
|
# resp.db_cluster.deletion_protection #=> Boolean
|
9740
9872
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
9873
|
+
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
9741
9874
|
#
|
9742
9875
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
9743
9876
|
#
|
@@ -9750,6 +9883,10 @@ module Aws::RDS
|
|
9750
9883
|
|
9751
9884
|
# Modifies the properties of an endpoint in an Amazon Aurora DB cluster.
|
9752
9885
|
#
|
9886
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
9887
|
+
#
|
9888
|
+
# </note>
|
9889
|
+
#
|
9753
9890
|
# @option params [required, String] :db_cluster_endpoint_identifier
|
9754
9891
|
# The identifier of the endpoint to modify. This parameter is stored as
|
9755
9892
|
# a lowercase string.
|
@@ -9838,9 +9975,13 @@ module Aws::RDS
|
|
9838
9975
|
# the DescribeDBClusterParameters command to verify that your DB cluster
|
9839
9976
|
# parameter group has been created or modified.
|
9840
9977
|
#
|
9978
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
9979
|
+
#
|
9980
|
+
# </note>
|
9841
9981
|
#
|
9842
9982
|
#
|
9843
|
-
#
|
9983
|
+
#
|
9984
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
9844
9985
|
# [2]: https://console.aws.amazon.com/rds/
|
9845
9986
|
#
|
9846
9987
|
# @option params [required, String] :db_cluster_parameter_group_name
|
@@ -9926,6 +10067,10 @@ module Aws::RDS
|
|
9926
10067
|
# cluster snapshot, or whether a manual DB cluster snapshot public or
|
9927
10068
|
# private, use the DescribeDBClusterSnapshotAttributes API action.
|
9928
10069
|
#
|
10070
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
10071
|
+
#
|
10072
|
+
# </note>
|
10073
|
+
#
|
9929
10074
|
# @option params [required, String] :db_cluster_snapshot_identifier
|
9930
10075
|
# The identifier for the DB cluster snapshot to modify the attributes
|
9931
10076
|
# for.
|
@@ -10056,7 +10201,7 @@ module Aws::RDS
|
|
10056
10201
|
#
|
10057
10202
|
#
|
10058
10203
|
#
|
10059
|
-
# [1]:
|
10204
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
10060
10205
|
#
|
10061
10206
|
# @option params [String] :db_subnet_group_name
|
10062
10207
|
# The new DB subnet group for the DB instance. You can use this
|
@@ -10123,7 +10268,7 @@ module Aws::RDS
|
|
10123
10268
|
#
|
10124
10269
|
#
|
10125
10270
|
#
|
10126
|
-
# [1]:
|
10271
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Modifying.html
|
10127
10272
|
#
|
10128
10273
|
# @option params [String] :master_user_password
|
10129
10274
|
# The new password for the master user. The password can include any
|
@@ -10412,6 +10557,12 @@ module Aws::RDS
|
|
10412
10557
|
# True to copy all tags from the DB instance to snapshots of the DB
|
10413
10558
|
# instance, and otherwise false. The default is false.
|
10414
10559
|
#
|
10560
|
+
# **Amazon Aurora**
|
10561
|
+
#
|
10562
|
+
# Not applicable. Copying tags to snapshots is managed by the DB
|
10563
|
+
# cluster. Setting this value for an Aurora DB instance has no effect on
|
10564
|
+
# the DB cluster setting. For more information, see ModifyDBCluster.
|
10565
|
+
#
|
10415
10566
|
# @option params [Integer] :monitoring_interval
|
10416
10567
|
# The interval, in seconds, between points when Enhanced Monitoring
|
10417
10568
|
# metrics are collected for the DB instance. To disable collecting
|
@@ -10499,7 +10650,7 @@ module Aws::RDS
|
|
10499
10650
|
#
|
10500
10651
|
#
|
10501
10652
|
#
|
10502
|
-
# [1]:
|
10653
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.IAMRole
|
10503
10654
|
#
|
10504
10655
|
# @option params [String] :domain_iam_role_name
|
10505
10656
|
# The name of the IAM role to use when making API calls to the Directory
|
@@ -10517,7 +10668,7 @@ module Aws::RDS
|
|
10517
10668
|
#
|
10518
10669
|
#
|
10519
10670
|
#
|
10520
|
-
# [1]:
|
10671
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.FaultTolerance
|
10521
10672
|
#
|
10522
10673
|
# @option params [Boolean] :enable_iam_database_authentication
|
10523
10674
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
@@ -10548,7 +10699,7 @@ module Aws::RDS
|
|
10548
10699
|
#
|
10549
10700
|
#
|
10550
10701
|
#
|
10551
|
-
# [1]:
|
10702
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
10552
10703
|
#
|
10553
10704
|
# @option params [String] :performance_insights_kms_key_id
|
10554
10705
|
# The AWS KMS key identifier for encryption of Performance Insights
|
@@ -10582,7 +10733,7 @@ module Aws::RDS
|
|
10582
10733
|
#
|
10583
10734
|
#
|
10584
10735
|
#
|
10585
|
-
# [1]:
|
10736
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
10586
10737
|
#
|
10587
10738
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10588
10739
|
#
|
@@ -11171,7 +11322,7 @@ module Aws::RDS
|
|
11171
11322
|
#
|
11172
11323
|
#
|
11173
11324
|
#
|
11174
|
-
# [1]:
|
11325
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
|
11175
11326
|
#
|
11176
11327
|
# @option params [required, String] :subscription_name
|
11177
11328
|
# The name of the RDS event notification subscription.
|
@@ -11198,7 +11349,7 @@ module Aws::RDS
|
|
11198
11349
|
#
|
11199
11350
|
#
|
11200
11351
|
#
|
11201
|
-
# [1]:
|
11352
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
|
11202
11353
|
#
|
11203
11354
|
# @option params [Boolean] :enabled
|
11204
11355
|
# A Boolean value; set to **true** to activate the subscription.
|
@@ -11268,9 +11419,13 @@ module Aws::RDS
|
|
11268
11419
|
# Amazon Aurora, see [ What Is Amazon Aurora?][1] in the *Amazon Aurora
|
11269
11420
|
# User Guide.*
|
11270
11421
|
#
|
11422
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
11423
|
+
#
|
11424
|
+
# </note>
|
11271
11425
|
#
|
11272
11426
|
#
|
11273
|
-
#
|
11427
|
+
#
|
11428
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
11274
11429
|
#
|
11275
11430
|
# @option params [String] :global_cluster_identifier
|
11276
11431
|
# The DB cluster identifier for the global cluster being modified. This
|
@@ -11525,7 +11680,7 @@ module Aws::RDS
|
|
11525
11680
|
#
|
11526
11681
|
#
|
11527
11682
|
#
|
11528
|
-
# [1]:
|
11683
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
11529
11684
|
#
|
11530
11685
|
# @return [Types::PromoteReadReplicaResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11531
11686
|
#
|
@@ -11682,6 +11837,10 @@ module Aws::RDS
|
|
11682
11837
|
|
11683
11838
|
# Promotes a Read Replica DB cluster to a standalone DB cluster.
|
11684
11839
|
#
|
11840
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
11841
|
+
#
|
11842
|
+
# </note>
|
11843
|
+
#
|
11685
11844
|
# @option params [required, String] :db_cluster_identifier
|
11686
11845
|
# The identifier of the DB cluster Read Replica to promote. This
|
11687
11846
|
# parameter is not case-sensitive.
|
@@ -11769,6 +11928,7 @@ module Aws::RDS
|
|
11769
11928
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
11770
11929
|
# resp.db_cluster.deletion_protection #=> Boolean
|
11771
11930
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
11931
|
+
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
11772
11932
|
#
|
11773
11933
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
11774
11934
|
#
|
@@ -11802,7 +11962,7 @@ module Aws::RDS
|
|
11802
11962
|
#
|
11803
11963
|
#
|
11804
11964
|
#
|
11805
|
-
# [1]:
|
11965
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
11806
11966
|
#
|
11807
11967
|
# @return [Types::PurchaseReservedDBInstancesOfferingResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11808
11968
|
#
|
@@ -11881,7 +12041,7 @@ module Aws::RDS
|
|
11881
12041
|
#
|
11882
12042
|
#
|
11883
12043
|
#
|
11884
|
-
# [1]:
|
12044
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_RebootInstance.html
|
11885
12045
|
#
|
11886
12046
|
# @option params [required, String] :db_instance_identifier
|
11887
12047
|
# The DB instance identifier. This parameter is stored as a lowercase
|
@@ -12055,6 +12215,10 @@ module Aws::RDS
|
|
12055
12215
|
# capability instead of being read-only and receiving data from a
|
12056
12216
|
# primary cluster in a different region.
|
12057
12217
|
#
|
12218
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
12219
|
+
#
|
12220
|
+
# </note>
|
12221
|
+
#
|
12058
12222
|
# @option params [String] :global_cluster_identifier
|
12059
12223
|
# The cluster identifier to detach from the Aurora global database
|
12060
12224
|
# cluster.
|
@@ -12105,9 +12269,13 @@ module Aws::RDS
|
|
12105
12269
|
# Amazon Aurora MySQL to Access Other AWS Services on Your Behalf ][1]
|
12106
12270
|
# in the *Amazon Aurora User Guide*.
|
12107
12271
|
#
|
12272
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
12273
|
+
#
|
12274
|
+
# </note>
|
12275
|
+
#
|
12108
12276
|
#
|
12109
12277
|
#
|
12110
|
-
# [1]:
|
12278
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Integrating.Authorizing.html
|
12111
12279
|
#
|
12112
12280
|
# @option params [required, String] :db_cluster_identifier
|
12113
12281
|
# The name of the DB cluster to disassociate the IAM role from.
|
@@ -12240,7 +12408,7 @@ module Aws::RDS
|
|
12240
12408
|
#
|
12241
12409
|
#
|
12242
12410
|
#
|
12243
|
-
# [1]:
|
12411
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html
|
12244
12412
|
#
|
12245
12413
|
# @option params [required, String] :resource_name
|
12246
12414
|
# The Amazon RDS resource that the tags are removed from. This value is
|
@@ -12250,7 +12418,7 @@ module Aws::RDS
|
|
12250
12418
|
#
|
12251
12419
|
#
|
12252
12420
|
#
|
12253
|
-
# [1]:
|
12421
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
12254
12422
|
#
|
12255
12423
|
# @option params [required, Array<String>] :tag_keys
|
12256
12424
|
# The tag key (name) of the tag to be removed.
|
@@ -12300,9 +12468,13 @@ module Aws::RDS
|
|
12300
12468
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
12301
12469
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
12302
12470
|
#
|
12471
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
12472
|
+
#
|
12473
|
+
# </note>
|
12303
12474
|
#
|
12304
12475
|
#
|
12305
|
-
#
|
12476
|
+
#
|
12477
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
12306
12478
|
#
|
12307
12479
|
# @option params [required, String] :db_cluster_parameter_group_name
|
12308
12480
|
# The name of the DB cluster parameter group to reset.
|
@@ -12481,9 +12653,13 @@ module Aws::RDS
|
|
12481
12653
|
# described in [ Migrating Data to an Amazon Aurora MySQL DB Cluster][1]
|
12482
12654
|
# in the *Amazon Aurora User Guide*.
|
12483
12655
|
#
|
12656
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
12657
|
+
#
|
12658
|
+
# </note>
|
12484
12659
|
#
|
12485
12660
|
#
|
12486
|
-
#
|
12661
|
+
#
|
12662
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Migrating.html
|
12487
12663
|
#
|
12488
12664
|
# @option params [Array<String>] :availability_zones
|
12489
12665
|
# A list of EC2 Availability Zones that instances in the restored DB
|
@@ -12616,7 +12792,7 @@ module Aws::RDS
|
|
12616
12792
|
#
|
12617
12793
|
#
|
12618
12794
|
#
|
12619
|
-
# [1]:
|
12795
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
12620
12796
|
#
|
12621
12797
|
# @option params [String] :preferred_maintenance_window
|
12622
12798
|
# The weekly time range during which system maintenance can occur, in
|
@@ -12635,7 +12811,7 @@ module Aws::RDS
|
|
12635
12811
|
#
|
12636
12812
|
#
|
12637
12813
|
#
|
12638
|
-
# [1]:
|
12814
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
12639
12815
|
#
|
12640
12816
|
# @option params [Array<Types::Tag>] :tags
|
12641
12817
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -12643,7 +12819,7 @@ module Aws::RDS
|
|
12643
12819
|
#
|
12644
12820
|
#
|
12645
12821
|
#
|
12646
|
-
# [1]:
|
12822
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
12647
12823
|
#
|
12648
12824
|
# @option params [Boolean] :storage_encrypted
|
12649
12825
|
# Specifies whether the restored DB cluster is encrypted.
|
@@ -12718,13 +12894,17 @@ module Aws::RDS
|
|
12718
12894
|
#
|
12719
12895
|
#
|
12720
12896
|
#
|
12721
|
-
# [1]:
|
12897
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
12722
12898
|
#
|
12723
12899
|
# @option params [Boolean] :deletion_protection
|
12724
12900
|
# Indicates if the DB cluster should have deletion protection enabled.
|
12725
12901
|
# The database can't be deleted when this value is set to true. The
|
12726
12902
|
# default is false.
|
12727
12903
|
#
|
12904
|
+
# @option params [Boolean] :copy_tags_to_snapshot
|
12905
|
+
# True to copy all tags from the restored DB cluster to snapshots of the
|
12906
|
+
# restored DB cluster, and otherwise false. The default is false.
|
12907
|
+
#
|
12728
12908
|
# @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12729
12909
|
#
|
12730
12910
|
# * {Types::RestoreDBClusterFromS3Result#db_cluster #db_cluster} => Types::DBCluster
|
@@ -12765,6 +12945,7 @@ module Aws::RDS
|
|
12765
12945
|
# backtrack_window: 1,
|
12766
12946
|
# enable_cloudwatch_logs_exports: ["String"],
|
12767
12947
|
# deletion_protection: false,
|
12948
|
+
# copy_tags_to_snapshot: false,
|
12768
12949
|
# })
|
12769
12950
|
#
|
12770
12951
|
# @example Response structure
|
@@ -12832,6 +13013,7 @@ module Aws::RDS
|
|
12832
13013
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
12833
13014
|
# resp.db_cluster.deletion_protection #=> Boolean
|
12834
13015
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
13016
|
+
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
12835
13017
|
#
|
12836
13018
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
12837
13019
|
#
|
@@ -12856,9 +13038,13 @@ module Aws::RDS
|
|
12856
13038
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
12857
13039
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
12858
13040
|
#
|
13041
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
13042
|
+
#
|
13043
|
+
# </note>
|
12859
13044
|
#
|
12860
13045
|
#
|
12861
|
-
#
|
13046
|
+
#
|
13047
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
12862
13048
|
#
|
12863
13049
|
# @option params [Array<String>] :availability_zones
|
12864
13050
|
# Provides the list of Amazon EC2 Availability Zones that instances in
|
@@ -12976,7 +13162,7 @@ module Aws::RDS
|
|
12976
13162
|
#
|
12977
13163
|
#
|
12978
13164
|
#
|
12979
|
-
# [1]:
|
13165
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
12980
13166
|
#
|
12981
13167
|
# @option params [String] :engine_mode
|
12982
13168
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
@@ -13007,6 +13193,10 @@ module Aws::RDS
|
|
13007
13193
|
# The database can't be deleted when this value is set to true. The
|
13008
13194
|
# default is false.
|
13009
13195
|
#
|
13196
|
+
# @option params [Boolean] :copy_tags_to_snapshot
|
13197
|
+
# True to copy all tags from the restored DB cluster to snapshots of the
|
13198
|
+
# restored DB cluster, and otherwise false. The default is false.
|
13199
|
+
#
|
13010
13200
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13011
13201
|
#
|
13012
13202
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -13060,6 +13250,7 @@ module Aws::RDS
|
|
13060
13250
|
# },
|
13061
13251
|
# db_cluster_parameter_group_name: "String",
|
13062
13252
|
# deletion_protection: false,
|
13253
|
+
# copy_tags_to_snapshot: false,
|
13063
13254
|
# })
|
13064
13255
|
#
|
13065
13256
|
# @example Response structure
|
@@ -13127,6 +13318,7 @@ module Aws::RDS
|
|
13127
13318
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
13128
13319
|
# resp.db_cluster.deletion_protection #=> Boolean
|
13129
13320
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
13321
|
+
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
13130
13322
|
#
|
13131
13323
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
13132
13324
|
#
|
@@ -13156,9 +13348,13 @@ module Aws::RDS
|
|
13156
13348
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
13157
13349
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
13158
13350
|
#
|
13351
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
13159
13352
|
#
|
13353
|
+
# </note>
|
13160
13354
|
#
|
13161
|
-
#
|
13355
|
+
#
|
13356
|
+
#
|
13357
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
13162
13358
|
#
|
13163
13359
|
# @option params [required, String] :db_cluster_identifier
|
13164
13360
|
# The name of the new DB cluster to be created.
|
@@ -13251,7 +13447,7 @@ module Aws::RDS
|
|
13251
13447
|
#
|
13252
13448
|
#
|
13253
13449
|
#
|
13254
|
-
# [1]:
|
13450
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
13255
13451
|
#
|
13256
13452
|
# @option params [String] :kms_key_id
|
13257
13453
|
# The AWS KMS key identifier to use when restoring an encrypted DB
|
@@ -13308,7 +13504,7 @@ module Aws::RDS
|
|
13308
13504
|
#
|
13309
13505
|
#
|
13310
13506
|
#
|
13311
|
-
# [1]:
|
13507
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
13312
13508
|
#
|
13313
13509
|
# @option params [String] :db_cluster_parameter_group_name
|
13314
13510
|
# The name of the DB cluster parameter group to associate with this DB
|
@@ -13331,6 +13527,10 @@ module Aws::RDS
|
|
13331
13527
|
# The database can't be deleted when this value is set to true. The
|
13332
13528
|
# default is false.
|
13333
13529
|
#
|
13530
|
+
# @option params [Boolean] :copy_tags_to_snapshot
|
13531
|
+
# True to copy all tags from the restored DB cluster to snapshots of the
|
13532
|
+
# restored DB cluster, and otherwise false. The default is false.
|
13533
|
+
#
|
13334
13534
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13335
13535
|
#
|
13336
13536
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -13376,6 +13576,7 @@ module Aws::RDS
|
|
13376
13576
|
# enable_cloudwatch_logs_exports: ["String"],
|
13377
13577
|
# db_cluster_parameter_group_name: "String",
|
13378
13578
|
# deletion_protection: false,
|
13579
|
+
# copy_tags_to_snapshot: false,
|
13379
13580
|
# })
|
13380
13581
|
#
|
13381
13582
|
# @example Response structure
|
@@ -13443,6 +13644,7 @@ module Aws::RDS
|
|
13443
13644
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
13444
13645
|
# resp.db_cluster.deletion_protection #=> Boolean
|
13445
13646
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
13647
|
+
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
13446
13648
|
#
|
13447
13649
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
13448
13650
|
#
|
@@ -13515,7 +13717,7 @@ module Aws::RDS
|
|
13515
13717
|
#
|
13516
13718
|
#
|
13517
13719
|
#
|
13518
|
-
# [1]:
|
13720
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
13519
13721
|
#
|
13520
13722
|
# @option params [Integer] :port
|
13521
13723
|
# The port number on which the database accepts connections.
|
@@ -13625,7 +13827,7 @@ module Aws::RDS
|
|
13625
13827
|
#
|
13626
13828
|
#
|
13627
13829
|
#
|
13628
|
-
# [1]:
|
13830
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
13629
13831
|
#
|
13630
13832
|
# @option params [String] :option_group_name
|
13631
13833
|
# The name of the option group to be used for the restored DB instance.
|
@@ -13641,7 +13843,7 @@ module Aws::RDS
|
|
13641
13843
|
#
|
13642
13844
|
#
|
13643
13845
|
#
|
13644
|
-
# [1]:
|
13846
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
13645
13847
|
#
|
13646
13848
|
# @option params [String] :storage_type
|
13647
13849
|
# Specifies the storage type to be associated with the DB instance.
|
@@ -13673,7 +13875,7 @@ module Aws::RDS
|
|
13673
13875
|
#
|
13674
13876
|
# @option params [Boolean] :copy_tags_to_snapshot
|
13675
13877
|
# True to copy all tags from the restored DB instance to snapshots of
|
13676
|
-
# the DB instance, and otherwise false. The default is false.
|
13878
|
+
# the restored DB instance, and otherwise false. The default is false.
|
13677
13879
|
#
|
13678
13880
|
# @option params [String] :domain_iam_role_name
|
13679
13881
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -13700,7 +13902,7 @@ module Aws::RDS
|
|
13700
13902
|
#
|
13701
13903
|
#
|
13702
13904
|
#
|
13703
|
-
# [1]:
|
13905
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
13704
13906
|
#
|
13705
13907
|
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
13706
13908
|
# The number of CPU cores and the number of threads per core for the DB
|
@@ -13733,7 +13935,7 @@ module Aws::RDS
|
|
13733
13935
|
#
|
13734
13936
|
#
|
13735
13937
|
#
|
13736
|
-
# [1]:
|
13938
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
13737
13939
|
#
|
13738
13940
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13739
13941
|
#
|
@@ -14010,7 +14212,7 @@ module Aws::RDS
|
|
14010
14212
|
#
|
14011
14213
|
#
|
14012
14214
|
#
|
14013
|
-
# [1]:
|
14215
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.html
|
14014
14216
|
#
|
14015
14217
|
# @option params [String] :db_name
|
14016
14218
|
# The name of the database to create when the DB instance is created.
|
@@ -14052,7 +14254,7 @@ module Aws::RDS
|
|
14052
14254
|
#
|
14053
14255
|
#
|
14054
14256
|
#
|
14055
|
-
# [1]:
|
14257
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
14056
14258
|
#
|
14057
14259
|
# @option params [required, String] :engine
|
14058
14260
|
# The name of the database engine to be used for this instance.
|
@@ -14100,7 +14302,7 @@ module Aws::RDS
|
|
14100
14302
|
#
|
14101
14303
|
#
|
14102
14304
|
#
|
14103
|
-
# [1]:
|
14305
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html
|
14104
14306
|
#
|
14105
14307
|
# @option params [String] :db_subnet_group_name
|
14106
14308
|
# A DB subnet group to associate with this DB instance.
|
@@ -14124,7 +14326,7 @@ module Aws::RDS
|
|
14124
14326
|
#
|
14125
14327
|
#
|
14126
14328
|
#
|
14127
|
-
# [1]:
|
14329
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
14128
14330
|
#
|
14129
14331
|
# @option params [String] :db_parameter_group_name
|
14130
14332
|
# The name of the DB parameter group to associate with this DB instance.
|
@@ -14153,7 +14355,7 @@ module Aws::RDS
|
|
14153
14355
|
#
|
14154
14356
|
#
|
14155
14357
|
#
|
14156
|
-
# [1]:
|
14358
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
14157
14359
|
#
|
14158
14360
|
# @option params [Integer] :port
|
14159
14361
|
# The port number on which the database accepts connections.
|
@@ -14190,7 +14392,7 @@ module Aws::RDS
|
|
14190
14392
|
#
|
14191
14393
|
#
|
14192
14394
|
#
|
14193
|
-
# [1]:
|
14395
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
14194
14396
|
#
|
14195
14397
|
# @option params [String] :option_group_name
|
14196
14398
|
# The name of the option group to associate with this DB instance. If
|
@@ -14211,7 +14413,7 @@ module Aws::RDS
|
|
14211
14413
|
#
|
14212
14414
|
#
|
14213
14415
|
#
|
14214
|
-
# [1]:
|
14416
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
14215
14417
|
#
|
14216
14418
|
# @option params [String] :storage_type
|
14217
14419
|
# Specifies the storage type to be associated with the DB instance.
|
@@ -14243,8 +14445,8 @@ module Aws::RDS
|
|
14243
14445
|
# key for each AWS Region.
|
14244
14446
|
#
|
14245
14447
|
# @option params [Boolean] :copy_tags_to_snapshot
|
14246
|
-
# True to copy all tags from the DB instance to snapshots of
|
14247
|
-
# instance, and otherwise false.
|
14448
|
+
# True to copy all tags from the restored DB instance to snapshots of
|
14449
|
+
# the restored DB instance, and otherwise false.
|
14248
14450
|
#
|
14249
14451
|
# Default: false.
|
14250
14452
|
#
|
@@ -14272,7 +14474,7 @@ module Aws::RDS
|
|
14272
14474
|
#
|
14273
14475
|
#
|
14274
14476
|
#
|
14275
|
-
# [1]:
|
14477
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
14276
14478
|
#
|
14277
14479
|
# @option params [Boolean] :enable_iam_database_authentication
|
14278
14480
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
@@ -14310,7 +14512,7 @@ module Aws::RDS
|
|
14310
14512
|
#
|
14311
14513
|
#
|
14312
14514
|
#
|
14313
|
-
# [1]:
|
14515
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
14314
14516
|
#
|
14315
14517
|
# @option params [String] :performance_insights_kms_key_id
|
14316
14518
|
# The AWS KMS key identifier for encryption of Performance Insights
|
@@ -14329,7 +14531,7 @@ module Aws::RDS
|
|
14329
14531
|
#
|
14330
14532
|
#
|
14331
14533
|
#
|
14332
|
-
# [1]:
|
14534
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
14333
14535
|
#
|
14334
14536
|
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
14335
14537
|
# The number of CPU cores and the number of threads per core for the DB
|
@@ -14347,7 +14549,7 @@ module Aws::RDS
|
|
14347
14549
|
#
|
14348
14550
|
#
|
14349
14551
|
#
|
14350
|
-
# [1]:
|
14552
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
14351
14553
|
#
|
14352
14554
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14353
14555
|
#
|
@@ -14607,7 +14809,7 @@ module Aws::RDS
|
|
14607
14809
|
#
|
14608
14810
|
#
|
14609
14811
|
#
|
14610
|
-
# [1]:
|
14812
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
14611
14813
|
#
|
14612
14814
|
# @option params [Integer] :port
|
14613
14815
|
# The port number on which the database accepts connections.
|
@@ -14718,7 +14920,7 @@ module Aws::RDS
|
|
14718
14920
|
#
|
14719
14921
|
# @option params [Boolean] :copy_tags_to_snapshot
|
14720
14922
|
# True to copy all tags from the restored DB instance to snapshots of
|
14721
|
-
# the DB instance, and otherwise false. The default is false.
|
14923
|
+
# the restored DB instance, and otherwise false. The default is false.
|
14722
14924
|
#
|
14723
14925
|
# @option params [Array<Types::Tag>] :tags
|
14724
14926
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -14726,7 +14928,7 @@ module Aws::RDS
|
|
14726
14928
|
#
|
14727
14929
|
#
|
14728
14930
|
#
|
14729
|
-
# [1]:
|
14931
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
14730
14932
|
#
|
14731
14933
|
# @option params [String] :storage_type
|
14732
14934
|
# Specifies the storage type to be associated with the DB instance.
|
@@ -14781,7 +14983,7 @@ module Aws::RDS
|
|
14781
14983
|
#
|
14782
14984
|
#
|
14783
14985
|
#
|
14784
|
-
# [1]:
|
14986
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
14785
14987
|
#
|
14786
14988
|
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
14787
14989
|
# The number of CPU cores and the number of threads per core for the DB
|
@@ -14814,7 +15016,7 @@ module Aws::RDS
|
|
14814
15016
|
#
|
14815
15017
|
#
|
14816
15018
|
#
|
14817
|
-
# [1]:
|
15019
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
14818
15020
|
#
|
14819
15021
|
# @option params [String] :source_dbi_resource_id
|
14820
15022
|
# The resource ID of the source DB instance from which to restore.
|
@@ -15185,9 +15387,13 @@ module Aws::RDS
|
|
15185
15387
|
# For more information, see [ Stopping and Starting an Aurora
|
15186
15388
|
# Cluster][1] in the *Amazon Aurora User Guide.*
|
15187
15389
|
#
|
15390
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
15391
|
+
#
|
15392
|
+
# </note>
|
15188
15393
|
#
|
15189
15394
|
#
|
15190
|
-
#
|
15395
|
+
#
|
15396
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-cluster-stop-start.html
|
15191
15397
|
#
|
15192
15398
|
# @option params [required, String] :db_cluster_identifier
|
15193
15399
|
# The DB cluster identifier of the Amazon Aurora DB cluster to be
|
@@ -15268,6 +15474,7 @@ module Aws::RDS
|
|
15268
15474
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
15269
15475
|
# resp.db_cluster.deletion_protection #=> Boolean
|
15270
15476
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
15477
|
+
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
15271
15478
|
#
|
15272
15479
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
15273
15480
|
#
|
@@ -15292,7 +15499,7 @@ module Aws::RDS
|
|
15292
15499
|
#
|
15293
15500
|
#
|
15294
15501
|
#
|
15295
|
-
# [1]:
|
15502
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_StartInstance.html
|
15296
15503
|
#
|
15297
15504
|
# @option params [required, String] :db_instance_identifier
|
15298
15505
|
# The user-supplied instance identifier.
|
@@ -15439,9 +15646,13 @@ module Aws::RDS
|
|
15439
15646
|
# For more information, see [ Stopping and Starting an Aurora
|
15440
15647
|
# Cluster][1] in the *Amazon Aurora User Guide.*
|
15441
15648
|
#
|
15649
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
15650
|
+
#
|
15651
|
+
# </note>
|
15652
|
+
#
|
15442
15653
|
#
|
15443
15654
|
#
|
15444
|
-
# [1]:
|
15655
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-cluster-stop-start.html
|
15445
15656
|
#
|
15446
15657
|
# @option params [required, String] :db_cluster_identifier
|
15447
15658
|
# The DB cluster identifier of the Amazon Aurora DB cluster to be
|
@@ -15522,6 +15733,7 @@ module Aws::RDS
|
|
15522
15733
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
15523
15734
|
# resp.db_cluster.deletion_protection #=> Boolean
|
15524
15735
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
15736
|
+
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
15525
15737
|
#
|
15526
15738
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
15527
15739
|
#
|
@@ -15548,7 +15760,7 @@ module Aws::RDS
|
|
15548
15760
|
#
|
15549
15761
|
#
|
15550
15762
|
#
|
15551
|
-
# [1]:
|
15763
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_StopInstance.html
|
15552
15764
|
#
|
15553
15765
|
# @option params [required, String] :db_instance_identifier
|
15554
15766
|
# The user-supplied instance identifier.
|
@@ -15705,7 +15917,7 @@ module Aws::RDS
|
|
15705
15917
|
params: params,
|
15706
15918
|
config: config)
|
15707
15919
|
context[:gem_name] = 'aws-sdk-rds'
|
15708
|
-
context[:gem_version] = '1.
|
15920
|
+
context[:gem_version] = '1.44.0'
|
15709
15921
|
Seahorse::Client::Request.new(handlers, context)
|
15710
15922
|
end
|
15711
15923
|
|