aws-sdk-rds 1.0.0.rc5 → 1.0.0.rc6
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 +246 -223
- data/lib/aws-sdk-rds/client_api.rb +23 -8
- data/lib/aws-sdk-rds/customizations.rb +2 -7
- data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +63 -0
- data/lib/aws-sdk-rds/db_cluster.rb +34 -3
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +24 -0
- data/lib/aws-sdk-rds/db_instance.rb +120 -202
- data/lib/aws-sdk-rds/db_parameter_group.rb +5 -4
- data/lib/aws-sdk-rds/db_snapshot.rb +24 -2
- data/lib/aws-sdk-rds/resource.rb +66 -201
- data/lib/aws-sdk-rds/types.rb +275 -225
- metadata +3 -2
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -505,6 +505,9 @@ module Aws::RDS
|
|
505
505
|
# The identifier of the DB cluster snapshot to copy. This parameter is
|
506
506
|
# not case-sensitive.
|
507
507
|
#
|
508
|
+
# You cannot copy an encrypted, shared DB cluster snapshot from one
|
509
|
+
# AWS region to another.
|
510
|
+
#
|
508
511
|
# Constraints:
|
509
512
|
#
|
510
513
|
# * Must contain from 1 to 63 alphanumeric characters or hyphens.
|
@@ -513,7 +516,20 @@ module Aws::RDS
|
|
513
516
|
#
|
514
517
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
515
518
|
#
|
519
|
+
# * Must specify a valid system snapshot in the "available" state.
|
520
|
+
#
|
521
|
+
# * If the source snapshot is in the same region as the copy, specify
|
522
|
+
# a valid DB snapshot identifier.
|
523
|
+
#
|
524
|
+
# * If the source snapshot is in a different region than the copy,
|
525
|
+
# specify a valid DB cluster snapshot ARN. For more information, go
|
526
|
+
# to [ Copying a DB Snapshot or DB Cluster Snapshot][1].
|
527
|
+
#
|
516
528
|
# Example: `my-cluster-snapshot1`
|
529
|
+
#
|
530
|
+
#
|
531
|
+
#
|
532
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html
|
517
533
|
# @return [String]
|
518
534
|
#
|
519
535
|
# @!attribute [rw] target_db_cluster_snapshot_identifier
|
@@ -598,6 +614,8 @@ module Aws::RDS
|
|
598
614
|
# @return [String]
|
599
615
|
#
|
600
616
|
# @!attribute [rw] copy_tags
|
617
|
+
# True to copy all tags from the source DB cluster snapshot to the
|
618
|
+
# target DB cluster snapshot; otherwise false. The default is false.
|
601
619
|
# @return [Boolean]
|
602
620
|
#
|
603
621
|
# @!attribute [rw] tags
|
@@ -763,7 +781,7 @@ module Aws::RDS
|
|
763
781
|
#
|
764
782
|
# * If the source snapshot is in a different region than the copy,
|
765
783
|
# specify a valid DB snapshot ARN. For more information, go to [
|
766
|
-
# Copying a DB Snapshot][1].
|
784
|
+
# Copying a DB Snapshot or DB Cluster Snapshot][1].
|
767
785
|
#
|
768
786
|
# Example: `rds:mydb-2012-04-02-00-01`
|
769
787
|
#
|
@@ -861,8 +879,8 @@ module Aws::RDS
|
|
861
879
|
# encrypted snapshot to be copied. This identifier must be in the
|
862
880
|
# Amazon Resource Name (ARN) format for the source region. For
|
863
881
|
# example, if you are copying an encrypted DB snapshot from the
|
864
|
-
# us-west-2 region, then your `SourceDBSnapshotIdentifier`
|
865
|
-
#
|
882
|
+
# us-west-2 region, then your `SourceDBSnapshotIdentifier` looks
|
883
|
+
# like the following example:
|
866
884
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115`.
|
867
885
|
#
|
868
886
|
# To learn how to generate a Signature Version 4 signed request, see [
|
@@ -1027,6 +1045,7 @@ module Aws::RDS
|
|
1027
1045
|
# storage_encrypted: false,
|
1028
1046
|
# kms_key_id: "String",
|
1029
1047
|
# pre_signed_url: "String",
|
1048
|
+
# enable_iam_database_authentication: false,
|
1030
1049
|
# source_region: "String",
|
1031
1050
|
# }
|
1032
1051
|
#
|
@@ -1275,6 +1294,14 @@ module Aws::RDS
|
|
1275
1294
|
# [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
1276
1295
|
# @return [String]
|
1277
1296
|
#
|
1297
|
+
# @!attribute [rw] enable_iam_database_authentication
|
1298
|
+
# A Boolean value that is true to enable mapping of AWS Identity and
|
1299
|
+
# Access Management (IAM) accounts to database accounts, and otherwise
|
1300
|
+
# false.
|
1301
|
+
#
|
1302
|
+
# Default: `false`
|
1303
|
+
# @return [Boolean]
|
1304
|
+
#
|
1278
1305
|
# @!attribute [rw] destination_region
|
1279
1306
|
# @return [String]
|
1280
1307
|
#
|
@@ -1307,6 +1334,7 @@ module Aws::RDS
|
|
1307
1334
|
:storage_encrypted,
|
1308
1335
|
:kms_key_id,
|
1309
1336
|
:pre_signed_url,
|
1337
|
+
:enable_iam_database_authentication,
|
1310
1338
|
:destination_region,
|
1311
1339
|
:source_region)
|
1312
1340
|
include Aws::Structure
|
@@ -1535,6 +1563,7 @@ module Aws::RDS
|
|
1535
1563
|
# domain_iam_role_name: "String",
|
1536
1564
|
# promotion_tier: 1,
|
1537
1565
|
# timezone: "String",
|
1566
|
+
# enable_iam_database_authentication: false,
|
1538
1567
|
# }
|
1539
1568
|
#
|
1540
1569
|
# @!attribute [rw] db_name
|
@@ -1633,6 +1662,12 @@ module Aws::RDS
|
|
1633
1662
|
#
|
1634
1663
|
# Type: Integer
|
1635
1664
|
#
|
1665
|
+
# **Amazon Aurora**
|
1666
|
+
#
|
1667
|
+
# Not applicable. Aurora cluster volumes automatically grow as the
|
1668
|
+
# amount of data in your database increases, though you are only
|
1669
|
+
# charged for the space that you use in an Aurora cluster volume.
|
1670
|
+
#
|
1636
1671
|
# **MySQL**
|
1637
1672
|
#
|
1638
1673
|
# Constraints: Must be an integer from 5 to 6144.
|
@@ -1681,43 +1716,46 @@ module Aws::RDS
|
|
1681
1716
|
# @return [String]
|
1682
1717
|
#
|
1683
1718
|
# @!attribute [rw] master_username
|
1684
|
-
# The name
|
1719
|
+
# The name for the master database user.
|
1685
1720
|
#
|
1686
|
-
# **
|
1721
|
+
# **Amazon Aurora**
|
1722
|
+
#
|
1723
|
+
# Not applicable. You specify the name for the master database user
|
1724
|
+
# when you create your DB cluster.
|
1725
|
+
#
|
1726
|
+
# **MariaDB**
|
1687
1727
|
#
|
1688
1728
|
# Constraints:
|
1689
1729
|
#
|
1690
1730
|
# * Must be 1 to 16 alphanumeric characters.
|
1691
1731
|
#
|
1692
|
-
# * First character must be a letter.
|
1693
|
-
#
|
1694
1732
|
# * Cannot be a reserved word for the chosen database engine.
|
1695
1733
|
#
|
1696
|
-
# **
|
1734
|
+
# **Microsoft SQL Server**
|
1697
1735
|
#
|
1698
1736
|
# Constraints:
|
1699
1737
|
#
|
1700
|
-
# * Must be 1 to
|
1738
|
+
# * Must be 1 to 128 alphanumeric characters.
|
1701
1739
|
#
|
1702
|
-
# *
|
1740
|
+
# * First character must be a letter.
|
1703
1741
|
#
|
1704
|
-
#
|
1742
|
+
# * Cannot be a reserved word for the chosen database engine.
|
1705
1743
|
#
|
1706
|
-
# **
|
1744
|
+
# **MySQL**
|
1707
1745
|
#
|
1708
1746
|
# Constraints:
|
1709
1747
|
#
|
1710
|
-
# * Must be 1 to
|
1748
|
+
# * Must be 1 to 16 alphanumeric characters.
|
1711
1749
|
#
|
1712
1750
|
# * First character must be a letter.
|
1713
1751
|
#
|
1714
1752
|
# * Cannot be a reserved word for the chosen database engine.
|
1715
1753
|
#
|
1716
|
-
# **
|
1754
|
+
# **Oracle**
|
1717
1755
|
#
|
1718
1756
|
# Constraints:
|
1719
1757
|
#
|
1720
|
-
# * Must be 1 to
|
1758
|
+
# * Must be 1 to 30 alphanumeric characters.
|
1721
1759
|
#
|
1722
1760
|
# * First character must be a letter.
|
1723
1761
|
#
|
@@ -1738,13 +1776,20 @@ module Aws::RDS
|
|
1738
1776
|
# The password for the master database user. Can be any printable
|
1739
1777
|
# ASCII character except "/", """, or "@".
|
1740
1778
|
#
|
1741
|
-
#
|
1779
|
+
# **Amazon Aurora**
|
1742
1780
|
#
|
1743
|
-
#
|
1781
|
+
# Not applicable. You specify the password for the master database
|
1782
|
+
# user when you create your DB cluster.
|
1783
|
+
#
|
1784
|
+
# **MariaDB**
|
1744
1785
|
#
|
1745
1786
|
# Constraints: Must contain from 8 to 41 characters.
|
1746
1787
|
#
|
1747
|
-
# **
|
1788
|
+
# **Microsoft SQL Server**
|
1789
|
+
#
|
1790
|
+
# Constraints: Must contain from 8 to 128 characters.
|
1791
|
+
#
|
1792
|
+
# **MySQL**
|
1748
1793
|
#
|
1749
1794
|
# Constraints: Must contain from 8 to 41 characters.
|
1750
1795
|
#
|
@@ -1752,17 +1797,9 @@ module Aws::RDS
|
|
1752
1797
|
#
|
1753
1798
|
# Constraints: Must contain from 8 to 30 characters.
|
1754
1799
|
#
|
1755
|
-
# **SQL Server**
|
1756
|
-
#
|
1757
|
-
# Constraints: Must contain from 8 to 128 characters.
|
1758
|
-
#
|
1759
1800
|
# **PostgreSQL**
|
1760
1801
|
#
|
1761
1802
|
# Constraints: Must contain from 8 to 128 characters.
|
1762
|
-
#
|
1763
|
-
# **Amazon Aurora**
|
1764
|
-
#
|
1765
|
-
# Constraints: Must contain from 8 to 41 characters.
|
1766
1803
|
# @return [String]
|
1767
1804
|
#
|
1768
1805
|
# @!attribute [rw] db_security_groups
|
@@ -1861,8 +1898,7 @@ module Aws::RDS
|
|
1861
1898
|
#
|
1862
1899
|
# Default: A 30-minute window selected at random from an 8-hour block
|
1863
1900
|
# of time per region. To see the time blocks available, see [
|
1864
|
-
# Adjusting the Preferred Maintenance Window][2]
|
1865
|
-
# User Guide.*
|
1901
|
+
# Adjusting the Preferred DB Instance Maintenance Window][2].
|
1866
1902
|
#
|
1867
1903
|
# Constraints:
|
1868
1904
|
#
|
@@ -1877,7 +1913,7 @@ module Aws::RDS
|
|
1877
1913
|
#
|
1878
1914
|
#
|
1879
1915
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.BackingUpAndRestoringAmazonRDSInstances.html
|
1880
|
-
# [2]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
1916
|
+
# [2]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow
|
1881
1917
|
# @return [String]
|
1882
1918
|
#
|
1883
1919
|
# @!attribute [rw] port
|
@@ -2036,120 +2072,11 @@ module Aws::RDS
|
|
2036
2072
|
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
2037
2073
|
# us-gov-west-1, us-west-1, us-west-2):** ` 5.1.73a | 5.1.73b`
|
2038
2074
|
#
|
2039
|
-
# **Oracle Database Enterprise Edition (oracle-ee)**
|
2040
|
-
#
|
2041
|
-
# * **Version 12.1 (available in all AWS regions except ap-south-1,
|
2042
|
-
# ap-northeast-2):** ` 12.1.0.1.v1 | 12.1.0.1.v2`
|
2043
|
-
#
|
2044
|
-
# * **Version 12.1 (only available in AWS regions ap-northeast-1,
|
2045
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1,
|
2046
|
-
# sa-east-1, us-east-1, us-west-1, us-west-2):** ` 12.1.0.1.v3 |
|
2047
|
-
# 12.1.0.1.v4 | 12.1.0.1.v5`
|
2048
|
-
#
|
2049
|
-
# * **Version 12.1 (available in all AWS regions):** ` 12.1.0.2.v1`
|
2050
|
-
#
|
2051
|
-
# * **Version 12.1 (available in all AWS regions except
|
2052
|
-
# us-gov-west-1):** ` 12.1.0.2.v2 | 12.1.0.2.v3 | 12.1.0.2.v4`
|
2053
|
-
#
|
2054
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
2055
|
-
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
2056
|
-
# us-gov-west-1, us-west-1, us-west-2):** ` 11.2.0.2.v3 |
|
2057
|
-
# 11.2.0.2.v4 | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7`
|
2058
|
-
#
|
2059
|
-
# * **Version 11.2 (available in all AWS regions except ap-south-1,
|
2060
|
-
# ap-northeast-2):** ` 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.3.v3`
|
2061
|
-
#
|
2062
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
2063
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1,
|
2064
|
-
# sa-east-1, us-east-1, us-west-1, us-west-2):** ` 11.2.0.3.v4`
|
2065
|
-
#
|
2066
|
-
# * **Version 11.2 (available in all AWS regions):** ` 11.2.0.4.v1 |
|
2067
|
-
# 11.2.0.4.v3 | 11.2.0.4.v4`
|
2068
|
-
#
|
2069
|
-
# * **Version 11.2 (available in all AWS regions except
|
2070
|
-
# us-gov-west-1):** ` 11.2.0.4.v5 | 11.2.0.4.v6 | 11.2.0.4.v7 |
|
2071
|
-
# 11.2.0.4.v8`
|
2072
|
-
#
|
2073
|
-
# **Oracle Database Standard Edition (oracle-se)**
|
2074
|
-
#
|
2075
|
-
# * **Version 12.1 (available in all AWS regions except ap-south-1,
|
2076
|
-
# ap-northeast-2):** ` 12.1.0.1.v1 | 12.1.0.1.v2`
|
2077
|
-
#
|
2078
|
-
# * **Version 12.1 (only available in AWS regions ap-northeast-1,
|
2079
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1,
|
2080
|
-
# sa-east-1, us-east-1, us-west-1, us-west-2):** ` 12.1.0.1.v3 |
|
2081
|
-
# 12.1.0.1.v4 | 12.1.0.1.v5`
|
2082
|
-
#
|
2083
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
2084
|
-
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
2085
|
-
# us-gov-west-1, us-west-1, us-west-2):** ` 11.2.0.2.v3 |
|
2086
|
-
# 11.2.0.2.v4 | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7`
|
2087
|
-
#
|
2088
|
-
# * **Version 11.2 (available in all AWS regions except ap-south-1,
|
2089
|
-
# ap-northeast-2):** ` 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.3.v3`
|
2090
|
-
#
|
2091
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
2092
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1,
|
2093
|
-
# sa-east-1, us-east-1, us-west-1, us-west-2):** ` 11.2.0.3.v4`
|
2094
|
-
#
|
2095
|
-
# * **Version 11.2 (available in all AWS regions):** ` 11.2.0.4.v1 |
|
2096
|
-
# 11.2.0.4.v3 | 11.2.0.4.v4`
|
2097
|
-
#
|
2098
|
-
# * **Version 11.2 (available in all AWS regions except
|
2099
|
-
# us-gov-west-1):** ` 11.2.0.4.v5 | 11.2.0.4.v6 | 11.2.0.4.v7 |
|
2100
|
-
# 11.2.0.4.v8`
|
2101
|
-
#
|
2102
|
-
# **Oracle Database Standard Edition One (oracle-se1)**
|
2103
|
-
#
|
2104
|
-
# * **Version 12.1 (available in all AWS regions except ap-south-1,
|
2105
|
-
# ap-northeast-2):** ` 12.1.0.1.v1 | 12.1.0.1.v2`
|
2106
|
-
#
|
2107
|
-
# * **Version 12.1 (only available in AWS regions ap-northeast-1,
|
2108
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1,
|
2109
|
-
# sa-east-1, us-east-1, us-west-1, us-west-2):** ` 12.1.0.1.v3 |
|
2110
|
-
# 12.1.0.1.v4 | 12.1.0.1.v5`
|
2111
|
-
#
|
2112
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
2113
|
-
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
2114
|
-
# us-gov-west-1, us-west-1, us-west-2):** ` 11.2.0.2.v3 |
|
2115
|
-
# 11.2.0.2.v4 | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7`
|
2116
|
-
#
|
2117
|
-
# * **Version 11.2 (available in all AWS regions except ap-south-1,
|
2118
|
-
# ap-northeast-2):** ` 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.3.v3`
|
2119
|
-
#
|
2120
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
2121
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1,
|
2122
|
-
# sa-east-1, us-east-1, us-west-1, us-west-2):** ` 11.2.0.3.v4`
|
2123
|
-
#
|
2124
|
-
# * **Version 11.2 (available in all AWS regions):** ` 11.2.0.4.v1 |
|
2125
|
-
# 11.2.0.4.v3 | 11.2.0.4.v4`
|
2126
|
-
#
|
2127
|
-
# * **Version 11.2 (available in all AWS regions except
|
2128
|
-
# us-gov-west-1):** ` 11.2.0.4.v5 | 11.2.0.4.v6 | 11.2.0.4.v7 |
|
2129
|
-
# 11.2.0.4.v8`
|
2130
|
-
#
|
2131
|
-
# **Oracle Database Standard Edition Two (oracle-se2)**
|
2132
|
-
#
|
2133
|
-
# * **Version 12.1 (available in all AWS regions except
|
2134
|
-
# us-gov-west-1):** ` 12.1.0.2.v2 | 12.1.0.2.v3 | 12.1.0.2.v4`
|
2135
|
-
#
|
2136
|
-
# ^
|
2137
|
-
#
|
2138
|
-
# **PostgreSQL**
|
2139
|
-
#
|
2140
|
-
# * **Version 9.6:** ` 9.6.1`
|
2141
|
-
#
|
2142
|
-
# * **Version 9.5:** `9.5.4 | 9.5.2`
|
2143
|
-
#
|
2144
|
-
# * **Version 9.4:** ` 9.4.9 | 9.4.7 | 9.4.5 | 9.4.4 | 9.4.1`
|
2145
|
-
#
|
2146
|
-
# * **Version 9.3:** ` 9.3.14 | 9.3.12 | 9.3.10 | 9.3.9 | 9.3.6 |
|
2147
|
-
# 9.3.5 | 9.3.3 | 9.3.2 | 9.3.1`
|
2148
|
-
#
|
2149
|
-
#
|
2150
|
-
#
|
2151
2075
|
# **Oracle 12c**
|
2152
2076
|
#
|
2077
|
+
# * `12.1.0.2.v7` (supported for EE in all AWS regions, and SE2 in all
|
2078
|
+
# AWS regions except us-gov-west-1)
|
2079
|
+
#
|
2153
2080
|
# * `12.1.0.2.v6` (supported for EE in all AWS regions, and SE2 in all
|
2154
2081
|
# AWS regions except us-gov-west-1)
|
2155
2082
|
#
|
@@ -2168,28 +2095,10 @@ module Aws::RDS
|
|
2168
2095
|
# * `12.1.0.2.v1` (supported for EE in all AWS regions, and SE2 in all
|
2169
2096
|
# AWS regions except us-gov-west-1)
|
2170
2097
|
#
|
2171
|
-
#
|
2172
|
-
#
|
2173
|
-
# * `12.1.0.1.v6` (supported for EE, SE1, and SE, in all AWS regions
|
2174
|
-
# except ap-south-1, ap-northeast-2)
|
2175
|
-
#
|
2176
|
-
# * `12.1.0.1.v5` (supported for EE, SE1, and SE, in all AWS regions
|
2177
|
-
# except ap-south-1, ap-northeast-2)
|
2178
|
-
#
|
2179
|
-
# * `12.1.0.1.v4` (supported for EE, SE1, and SE, in all AWS regions
|
2180
|
-
# except ap-south-1, ap-northeast-2)
|
2181
|
-
#
|
2182
|
-
# * `12.1.0.1.v3` (supported for EE, SE1, and SE, in all AWS regions
|
2183
|
-
# except ap-south-1, ap-northeast-2)
|
2184
|
-
#
|
2185
|
-
# * `12.1.0.1.v2` (supported for EE, SE1, and SE, in all AWS regions
|
2186
|
-
# except ap-south-1, ap-northeast-2)
|
2187
|
-
#
|
2188
|
-
# * `12.1.0.1.v1` (supported for EE, SE1, and SE, in all AWS regions
|
2189
|
-
# except ap-south-1, ap-northeast-2)
|
2190
|
-
#
|
2191
2098
|
# **Oracle 11g**
|
2192
2099
|
#
|
2100
|
+
# * `11.2.0.4.v11` (supported for EE, SE1, and SE, in all AWS regions)
|
2101
|
+
#
|
2193
2102
|
# * `11.2.0.4.v10` (supported for EE, SE1, and SE, in all AWS regions)
|
2194
2103
|
#
|
2195
2104
|
# * `11.2.0.4.v9` (supported for EE, SE1, and SE, in all AWS regions)
|
@@ -2210,50 +2119,14 @@ module Aws::RDS
|
|
2210
2119
|
#
|
2211
2120
|
# **PostgreSQL**
|
2212
2121
|
#
|
2213
|
-
# * **Version 9.
|
2214
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
2215
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
2216
|
-
# us-west-2):** ` 9.5.4`
|
2217
|
-
#
|
2218
|
-
# * **Version 9.5 (available in these AWS regions: ap-northeast-1,
|
2219
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
2220
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-east-2,
|
2221
|
-
# us-west-1, us-west-2):** ` 9.5.2`
|
2222
|
-
#
|
2223
|
-
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
2224
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
2225
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
2226
|
-
# us-west-2):** ` 9.4.9`
|
2227
|
-
#
|
2228
|
-
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
2229
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
2230
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-east-2,
|
2231
|
-
# us-west-1, us-west-2):** ` 9.4.7`
|
2232
|
-
#
|
2233
|
-
# * **Version 9.4 (available in all AWS regions):** ` 9.4.5`
|
2234
|
-
#
|
2235
|
-
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
2236
|
-
# ap-northeast-2, ap-southeast-1, ap-southeast-2, eu-central-1,
|
2237
|
-
# eu-west-1, sa-east-1, us-east-1, us-gov-west-1, us-west-1,
|
2238
|
-
# us-west-2):** ` 9.4.4`
|
2239
|
-
#
|
2240
|
-
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
2241
|
-
# ap-northeast-2, ap-southeast-1, ap-southeast-2, eu-central-1,
|
2242
|
-
# eu-west-1, sa-east-1, us-east-1, us-east-2, us-gov-west-1,
|
2243
|
-
# us-west-1, us-west-2):** ` 9.4.1`
|
2122
|
+
# * **Version 9.6:** ` 9.6.1`
|
2244
2123
|
#
|
2245
|
-
# * **Version 9.
|
2246
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1,
|
2247
|
-
# sa-east-1, us-east-1, us-gov-west-1, us-west-1, us-west-2):** `
|
2248
|
-
# 9.3.10 | 9.3.3 | 9.3.5 | 9.3.6 | 9.3.9`
|
2124
|
+
# * **Version 9.5:** `9.5.4 | 9.5.2`
|
2249
2125
|
#
|
2250
|
-
# * **Version 9.
|
2251
|
-
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
2252
|
-
# us-gov-west-1, us-west-1, us-west-2):** ` 9.3.1 | 9.3.2`
|
2126
|
+
# * **Version 9.4:** ` 9.4.9 | 9.4.7 | 9.4.5 | 9.4.4 | 9.4.1`
|
2253
2127
|
#
|
2254
|
-
# * **Version 9.3
|
2255
|
-
#
|
2256
|
-
# sa-east-1, us-east-1, us-west-1, us-west-2):** ` 9.3.12 | 9.3.14`
|
2128
|
+
# * **Version 9.3:** ` 9.3.14 | 9.3.12 | 9.3.10 | 9.3.9 | 9.3.6 |
|
2129
|
+
# 9.3.5 | 9.3.3 | 9.3.2 | 9.3.1`
|
2257
2130
|
# @return [String]
|
2258
2131
|
#
|
2259
2132
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -2397,15 +2270,15 @@ module Aws::RDS
|
|
2397
2270
|
# The ARN for the IAM role that permits RDS to send enhanced
|
2398
2271
|
# monitoring metrics to CloudWatch Logs. For example,
|
2399
2272
|
# `arn:aws:iam:123456789012:role/emaccess`. For information on
|
2400
|
-
# creating a monitoring role, go to [
|
2401
|
-
#
|
2273
|
+
# creating a monitoring role, go to [Setting Up and Enabling Enhanced
|
2274
|
+
# Monitoring][1].
|
2402
2275
|
#
|
2403
2276
|
# If `MonitoringInterval` is set to a value other than 0, then you
|
2404
2277
|
# must supply a `MonitoringRoleArn` value.
|
2405
2278
|
#
|
2406
2279
|
#
|
2407
2280
|
#
|
2408
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.
|
2281
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
2409
2282
|
# @return [String]
|
2410
2283
|
#
|
2411
2284
|
# @!attribute [rw] domain_iam_role_name
|
@@ -2437,6 +2310,20 @@ module Aws::RDS
|
|
2437
2310
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
|
2438
2311
|
# @return [String]
|
2439
2312
|
#
|
2313
|
+
# @!attribute [rw] enable_iam_database_authentication
|
2314
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
2315
|
+
# accounts to database accounts; otherwise false.
|
2316
|
+
#
|
2317
|
+
# You can enable IAM database authentication for the following
|
2318
|
+
# database engines
|
2319
|
+
#
|
2320
|
+
# * For MySQL 5.6, minor version 5.6.34 or higher
|
2321
|
+
#
|
2322
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher
|
2323
|
+
#
|
2324
|
+
# Default: `false`
|
2325
|
+
# @return [Boolean]
|
2326
|
+
#
|
2440
2327
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
2441
2328
|
#
|
2442
2329
|
class CreateDBInstanceMessage < Struct.new(
|
@@ -2477,7 +2364,8 @@ module Aws::RDS
|
|
2477
2364
|
:monitoring_role_arn,
|
2478
2365
|
:domain_iam_role_name,
|
2479
2366
|
:promotion_tier,
|
2480
|
-
:timezone
|
2367
|
+
:timezone,
|
2368
|
+
:enable_iam_database_authentication)
|
2481
2369
|
include Aws::Structure
|
2482
2370
|
end
|
2483
2371
|
|
@@ -2507,6 +2395,7 @@ module Aws::RDS
|
|
2507
2395
|
# monitoring_role_arn: "String",
|
2508
2396
|
# kms_key_id: "String",
|
2509
2397
|
# pre_signed_url: "String",
|
2398
|
+
# enable_iam_database_authentication: false,
|
2510
2399
|
# source_region: "String",
|
2511
2400
|
# }
|
2512
2401
|
#
|
@@ -2767,6 +2656,22 @@ module Aws::RDS
|
|
2767
2656
|
# [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
2768
2657
|
# @return [String]
|
2769
2658
|
#
|
2659
|
+
# @!attribute [rw] enable_iam_database_authentication
|
2660
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
2661
|
+
# accounts to database accounts; otherwise false.
|
2662
|
+
#
|
2663
|
+
# You can enable IAM database authentication for the following
|
2664
|
+
# database engines
|
2665
|
+
#
|
2666
|
+
# * For MySQL 5.6, minor version 5.6.34 or higher
|
2667
|
+
#
|
2668
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher
|
2669
|
+
#
|
2670
|
+
# * Aurora 5.6 or higher.
|
2671
|
+
#
|
2672
|
+
# Default: `false`
|
2673
|
+
# @return [Boolean]
|
2674
|
+
#
|
2770
2675
|
# @!attribute [rw] destination_region
|
2771
2676
|
# @return [String]
|
2772
2677
|
#
|
@@ -2795,6 +2700,7 @@ module Aws::RDS
|
|
2795
2700
|
:monitoring_role_arn,
|
2796
2701
|
:kms_key_id,
|
2797
2702
|
:pre_signed_url,
|
2703
|
+
:enable_iam_database_authentication,
|
2798
2704
|
:destination_region,
|
2799
2705
|
:source_region)
|
2800
2706
|
include Aws::Structure
|
@@ -3327,7 +3233,11 @@ module Aws::RDS
|
|
3327
3233
|
# action.
|
3328
3234
|
#
|
3329
3235
|
# @!attribute [rw] allocated_storage
|
3330
|
-
#
|
3236
|
+
# For all database engines except Amazon Aurora, `AllocatedStorage`
|
3237
|
+
# specifies the allocated storage size in gigabytes (GB). For Aurora,
|
3238
|
+
# `AllocatedStorage` always returns 1, because Aurora DB cluster
|
3239
|
+
# storage size is not fixed, but instead automatically adjusts as
|
3240
|
+
# needed.
|
3331
3241
|
# @return [Integer]
|
3332
3242
|
#
|
3333
3243
|
# @!attribute [rw] availability_zones
|
@@ -3398,7 +3308,7 @@ module Aws::RDS
|
|
3398
3308
|
# If a failover occurs, and the Aurora Replica that you are connected
|
3399
3309
|
# to is promoted to be the primary instance, your connection will be
|
3400
3310
|
# dropped. To continue sending your read workload to other Aurora
|
3401
|
-
# Replicas in the cluster, you can then
|
3311
|
+
# Replicas in the cluster, you can then reconnect to the reader
|
3402
3312
|
# endpoint.
|
3403
3313
|
# @return [String]
|
3404
3314
|
#
|
@@ -3494,6 +3404,11 @@ module Aws::RDS
|
|
3494
3404
|
# access other AWS services on your behalf.
|
3495
3405
|
# @return [Array<Types::DBClusterRole>]
|
3496
3406
|
#
|
3407
|
+
# @!attribute [rw] iam_database_authentication_enabled
|
3408
|
+
# True if mapping of AWS Identity and Access Management (IAM) accounts
|
3409
|
+
# to database accounts is enabled; otherwise false.
|
3410
|
+
# @return [Boolean]
|
3411
|
+
#
|
3497
3412
|
# @!attribute [rw] cluster_create_time
|
3498
3413
|
# Specifies the time when the DB cluster was created, in Universal
|
3499
3414
|
# Coordinated Time (UTC).
|
@@ -3534,6 +3449,7 @@ module Aws::RDS
|
|
3534
3449
|
:db_cluster_resource_id,
|
3535
3450
|
:db_cluster_arn,
|
3536
3451
|
:associated_roles,
|
3452
|
+
:iam_database_authentication_enabled,
|
3537
3453
|
:cluster_create_time)
|
3538
3454
|
include Aws::Structure
|
3539
3455
|
end
|
@@ -3833,6 +3749,17 @@ module Aws::RDS
|
|
3833
3749
|
# The Amazon Resource Name (ARN) for the DB cluster snapshot.
|
3834
3750
|
# @return [String]
|
3835
3751
|
#
|
3752
|
+
# @!attribute [rw] source_db_cluster_snapshot_arn
|
3753
|
+
# If the DB cluster snapshot was copied from a source DB cluster
|
3754
|
+
# snapshot, the Amazon Resource Name (ARN) for the source DB cluster
|
3755
|
+
# snapshot; otherwise, a null value.
|
3756
|
+
# @return [String]
|
3757
|
+
#
|
3758
|
+
# @!attribute [rw] iam_database_authentication_enabled
|
3759
|
+
# True if mapping of AWS Identity and Access Management (IAM) accounts
|
3760
|
+
# to database accounts is enabled; otherwise false.
|
3761
|
+
# @return [Boolean]
|
3762
|
+
#
|
3836
3763
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
|
3837
3764
|
#
|
3838
3765
|
class DBClusterSnapshot < Struct.new(
|
@@ -3853,7 +3780,9 @@ module Aws::RDS
|
|
3853
3780
|
:percent_progress,
|
3854
3781
|
:storage_encrypted,
|
3855
3782
|
:kms_key_id,
|
3856
|
-
:db_cluster_snapshot_arn
|
3783
|
+
:db_cluster_snapshot_arn,
|
3784
|
+
:source_db_cluster_snapshot_arn,
|
3785
|
+
:iam_database_authentication_enabled)
|
3857
3786
|
include Aws::Structure
|
3858
3787
|
end
|
3859
3788
|
|
@@ -4060,7 +3989,7 @@ module Aws::RDS
|
|
4060
3989
|
# CreateDBInstanceReadReplica since Read Replicas are only supported
|
4061
3990
|
# for these engines.
|
4062
3991
|
#
|
4063
|
-
# **MySQL, MariaDB, SQL Server, PostgreSQL
|
3992
|
+
# **MySQL, MariaDB, SQL Server, PostgreSQL**
|
4064
3993
|
#
|
4065
3994
|
# Contains the name of the initial database of this instance that was
|
4066
3995
|
# provided at create time, if one was specified when the DB instance
|
@@ -4303,6 +4232,21 @@ module Aws::RDS
|
|
4303
4232
|
# Server DB instances that were created with a time zone specified.
|
4304
4233
|
# @return [String]
|
4305
4234
|
#
|
4235
|
+
# @!attribute [rw] iam_database_authentication_enabled
|
4236
|
+
# True if mapping of AWS Identity and Access Management (IAM) accounts
|
4237
|
+
# to database accounts is enabled; otherwise false.
|
4238
|
+
#
|
4239
|
+
# IAM database authentication can be enabled for the following
|
4240
|
+
# database engines
|
4241
|
+
#
|
4242
|
+
# * For MySQL 5.6, minor version 5.6.34 or higher
|
4243
|
+
#
|
4244
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher
|
4245
|
+
#
|
4246
|
+
# * Aurora 5.6 or higher. To enable IAM database authentication for
|
4247
|
+
# Aurora, see DBCluster Type.
|
4248
|
+
# @return [Boolean]
|
4249
|
+
#
|
4306
4250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
4307
4251
|
#
|
4308
4252
|
class DBInstance < Struct.new(
|
@@ -4353,7 +4297,8 @@ module Aws::RDS
|
|
4353
4297
|
:monitoring_role_arn,
|
4354
4298
|
:promotion_tier,
|
4355
4299
|
:db_instance_arn,
|
4356
|
-
:timezone
|
4300
|
+
:timezone,
|
4301
|
+
:iam_database_authentication_enabled)
|
4357
4302
|
include Aws::Structure
|
4358
4303
|
end
|
4359
4304
|
|
@@ -4756,6 +4701,11 @@ module Aws::RDS
|
|
4756
4701
|
# a time zone specified.
|
4757
4702
|
# @return [String]
|
4758
4703
|
#
|
4704
|
+
# @!attribute [rw] iam_database_authentication_enabled
|
4705
|
+
# True if mapping of AWS Identity and Access Management (IAM) accounts
|
4706
|
+
# to database accounts is enabled; otherwise false.
|
4707
|
+
# @return [Boolean]
|
4708
|
+
#
|
4759
4709
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
4760
4710
|
#
|
4761
4711
|
class DBSnapshot < Struct.new(
|
@@ -4783,7 +4733,8 @@ module Aws::RDS
|
|
4783
4733
|
:encrypted,
|
4784
4734
|
:kms_key_id,
|
4785
4735
|
:db_snapshot_arn,
|
4786
|
-
:timezone
|
4736
|
+
:timezone,
|
4737
|
+
:iam_database_authentication_enabled)
|
4787
4738
|
include Aws::Structure
|
4788
4739
|
end
|
4789
4740
|
|
@@ -7905,6 +7856,7 @@ module Aws::RDS
|
|
7905
7856
|
# option_group_name: "String",
|
7906
7857
|
# preferred_backup_window: "String",
|
7907
7858
|
# preferred_maintenance_window: "String",
|
7859
|
+
# enable_iam_database_authentication: false,
|
7908
7860
|
# }
|
7909
7861
|
#
|
7910
7862
|
# @!attribute [rw] db_cluster_identifier
|
@@ -7974,7 +7926,7 @@ module Aws::RDS
|
|
7974
7926
|
# @return [String]
|
7975
7927
|
#
|
7976
7928
|
# @!attribute [rw] vpc_security_group_ids
|
7977
|
-
# A
|
7929
|
+
# A list of VPC security groups that the DB cluster will belong to.
|
7978
7930
|
# @return [Array<String>]
|
7979
7931
|
#
|
7980
7932
|
# @!attribute [rw] port
|
@@ -8053,6 +8005,14 @@ module Aws::RDS
|
|
8053
8005
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
8054
8006
|
# @return [String]
|
8055
8007
|
#
|
8008
|
+
# @!attribute [rw] enable_iam_database_authentication
|
8009
|
+
# A Boolean value that is true to enable mapping of AWS Identity and
|
8010
|
+
# Access Management (IAM) accounts to database accounts, and otherwise
|
8011
|
+
# false.
|
8012
|
+
#
|
8013
|
+
# Default: `false`
|
8014
|
+
# @return [Boolean]
|
8015
|
+
#
|
8056
8016
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
8057
8017
|
#
|
8058
8018
|
class ModifyDBClusterMessage < Struct.new(
|
@@ -8066,7 +8026,8 @@ module Aws::RDS
|
|
8066
8026
|
:master_user_password,
|
8067
8027
|
:option_group_name,
|
8068
8028
|
:preferred_backup_window,
|
8069
|
-
:preferred_maintenance_window
|
8029
|
+
:preferred_maintenance_window,
|
8030
|
+
:enable_iam_database_authentication)
|
8070
8031
|
include Aws::Structure
|
8071
8032
|
end
|
8072
8033
|
|
@@ -8244,6 +8205,7 @@ module Aws::RDS
|
|
8244
8205
|
# monitoring_role_arn: "String",
|
8245
8206
|
# domain_iam_role_name: "String",
|
8246
8207
|
# promotion_tier: 1,
|
8208
|
+
# enable_iam_database_authentication: false,
|
8247
8209
|
# }
|
8248
8210
|
#
|
8249
8211
|
# @!attribute [rw] db_instance_identifier
|
@@ -8809,6 +8771,20 @@ module Aws::RDS
|
|
8809
8771
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Aurora.Managing.html#Aurora.Managing.FaultTolerance
|
8810
8772
|
# @return [Integer]
|
8811
8773
|
#
|
8774
|
+
# @!attribute [rw] enable_iam_database_authentication
|
8775
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
8776
|
+
# accounts to database accounts; otherwise false.
|
8777
|
+
#
|
8778
|
+
# You can enable IAM database authentication for the following
|
8779
|
+
# database engines
|
8780
|
+
#
|
8781
|
+
# * For MySQL 5.6, minor version 5.6.34 or higher
|
8782
|
+
#
|
8783
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher
|
8784
|
+
#
|
8785
|
+
# Default: `false`
|
8786
|
+
# @return [Boolean]
|
8787
|
+
#
|
8812
8788
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
8813
8789
|
#
|
8814
8790
|
class ModifyDBInstanceMessage < Struct.new(
|
@@ -8843,7 +8819,8 @@ module Aws::RDS
|
|
8843
8819
|
:publicly_accessible,
|
8844
8820
|
:monitoring_role_arn,
|
8845
8821
|
:domain_iam_role_name,
|
8846
|
-
:promotion_tier
|
8822
|
+
:promotion_tier,
|
8823
|
+
:enable_iam_database_authentication)
|
8847
8824
|
include Aws::Structure
|
8848
8825
|
end
|
8849
8826
|
|
@@ -9751,6 +9728,11 @@ module Aws::RDS
|
|
9751
9728
|
# intervals from 1 to 60 seconds.
|
9752
9729
|
# @return [Boolean]
|
9753
9730
|
#
|
9731
|
+
# @!attribute [rw] supports_iam_database_authentication
|
9732
|
+
# Indicates whether this orderable DB instance supports IAM database
|
9733
|
+
# authentication.
|
9734
|
+
# @return [Boolean]
|
9735
|
+
#
|
9754
9736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOption AWS API Documentation
|
9755
9737
|
#
|
9756
9738
|
class OrderableDBInstanceOption < Struct.new(
|
@@ -9765,7 +9747,8 @@ module Aws::RDS
|
|
9765
9747
|
:supports_storage_encryption,
|
9766
9748
|
:storage_type,
|
9767
9749
|
:supports_iops,
|
9768
|
-
:supports_enhanced_monitoring
|
9750
|
+
:supports_enhanced_monitoring,
|
9751
|
+
:supports_iam_database_authentication)
|
9769
9752
|
include Aws::Structure
|
9770
9753
|
end
|
9771
9754
|
|
@@ -10327,7 +10310,7 @@ module Aws::RDS
|
|
10327
10310
|
# }
|
10328
10311
|
#
|
10329
10312
|
# @!attribute [rw] db_cluster_identifier
|
10330
|
-
# The name of the DB cluster to disassociate the IAM role
|
10313
|
+
# The name of the DB cluster to disassociate the IAM role from.
|
10331
10314
|
# @return [String]
|
10332
10315
|
#
|
10333
10316
|
# @!attribute [rw] role_arn
|
@@ -10689,10 +10672,11 @@ module Aws::RDS
|
|
10689
10672
|
# @return [Boolean]
|
10690
10673
|
#
|
10691
10674
|
# @!attribute [rw] parameters
|
10692
|
-
#
|
10693
|
-
#
|
10694
|
-
#
|
10695
|
-
# maximum of 20 parameters can be
|
10675
|
+
# To reset the entire DB parameter group, specify the
|
10676
|
+
# `DBParameterGroup` name and `ResetAllParameters` parameters. To
|
10677
|
+
# reset specific parameters, provide a list of the following:
|
10678
|
+
# `ParameterName` and `ApplyMethod`. A maximum of 20 parameters can be
|
10679
|
+
# modified in a single request.
|
10696
10680
|
#
|
10697
10681
|
# **MySQL**
|
10698
10682
|
#
|
@@ -10771,6 +10755,7 @@ module Aws::RDS
|
|
10771
10755
|
# ],
|
10772
10756
|
# storage_encrypted: false,
|
10773
10757
|
# kms_key_id: "String",
|
10758
|
+
# enable_iam_database_authentication: false,
|
10774
10759
|
# source_engine: "String", # required
|
10775
10760
|
# source_engine_version: "String", # required
|
10776
10761
|
# s3_bucket_name: "String", # required
|
@@ -10967,6 +10952,14 @@ module Aws::RDS
|
|
10967
10952
|
# encryption key for each AWS region.
|
10968
10953
|
# @return [String]
|
10969
10954
|
#
|
10955
|
+
# @!attribute [rw] enable_iam_database_authentication
|
10956
|
+
# A Boolean value that is true to enable mapping of AWS Identity and
|
10957
|
+
# Access Management (IAM) accounts to database accounts, and otherwise
|
10958
|
+
# false.
|
10959
|
+
#
|
10960
|
+
# Default: `false`
|
10961
|
+
# @return [Boolean]
|
10962
|
+
#
|
10970
10963
|
# @!attribute [rw] source_engine
|
10971
10964
|
# The identifier for the database engine that was backed up to create
|
10972
10965
|
# the files stored in the Amazon S3 bucket.
|
@@ -11022,6 +11015,7 @@ module Aws::RDS
|
|
11022
11015
|
:tags,
|
11023
11016
|
:storage_encrypted,
|
11024
11017
|
:kms_key_id,
|
11018
|
+
:enable_iam_database_authentication,
|
11025
11019
|
:source_engine,
|
11026
11020
|
:source_engine_version,
|
11027
11021
|
:s3_bucket_name,
|
@@ -11078,6 +11072,7 @@ module Aws::RDS
|
|
11078
11072
|
# },
|
11079
11073
|
# ],
|
11080
11074
|
# kms_key_id: "String",
|
11075
|
+
# enable_iam_database_authentication: false,
|
11081
11076
|
# }
|
11082
11077
|
#
|
11083
11078
|
# @!attribute [rw] availability_zones
|
@@ -11179,6 +11174,14 @@ module Aws::RDS
|
|
11179
11174
|
# cluster is encrypted using the specified encryption key.
|
11180
11175
|
# @return [String]
|
11181
11176
|
#
|
11177
|
+
# @!attribute [rw] enable_iam_database_authentication
|
11178
|
+
# A Boolean value that is true to enable mapping of AWS Identity and
|
11179
|
+
# Access Management (IAM) accounts to database accounts, and otherwise
|
11180
|
+
# false.
|
11181
|
+
#
|
11182
|
+
# Default: `false`
|
11183
|
+
# @return [Boolean]
|
11184
|
+
#
|
11182
11185
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
11183
11186
|
#
|
11184
11187
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
@@ -11193,7 +11196,8 @@ module Aws::RDS
|
|
11193
11196
|
:option_group_name,
|
11194
11197
|
:vpc_security_group_ids,
|
11195
11198
|
:tags,
|
11196
|
-
:kms_key_id
|
11199
|
+
:kms_key_id,
|
11200
|
+
:enable_iam_database_authentication)
|
11197
11201
|
include Aws::Structure
|
11198
11202
|
end
|
11199
11203
|
|
@@ -11243,6 +11247,7 @@ module Aws::RDS
|
|
11243
11247
|
# },
|
11244
11248
|
# ],
|
11245
11249
|
# kms_key_id: "String",
|
11250
|
+
# enable_iam_database_authentication: false,
|
11246
11251
|
# }
|
11247
11252
|
#
|
11248
11253
|
# @!attribute [rw] db_cluster_identifier
|
@@ -11354,6 +11359,14 @@ module Aws::RDS
|
|
11354
11359
|
# encrypted, then the restore request is rejected.
|
11355
11360
|
# @return [String]
|
11356
11361
|
#
|
11362
|
+
# @!attribute [rw] enable_iam_database_authentication
|
11363
|
+
# A Boolean value that is true to enable mapping of AWS Identity and
|
11364
|
+
# Access Management (IAM) accounts to database accounts, and otherwise
|
11365
|
+
# false.
|
11366
|
+
#
|
11367
|
+
# Default: `false`
|
11368
|
+
# @return [Boolean]
|
11369
|
+
#
|
11357
11370
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
11358
11371
|
#
|
11359
11372
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
@@ -11366,7 +11379,8 @@ module Aws::RDS
|
|
11366
11379
|
:option_group_name,
|
11367
11380
|
:vpc_security_group_ids,
|
11368
11381
|
:tags,
|
11369
|
-
:kms_key_id
|
11382
|
+
:kms_key_id,
|
11383
|
+
:enable_iam_database_authentication)
|
11370
11384
|
include Aws::Structure
|
11371
11385
|
end
|
11372
11386
|
|
@@ -11427,6 +11441,7 @@ module Aws::RDS
|
|
11427
11441
|
# domain: "String",
|
11428
11442
|
# copy_tags_to_snapshot: false,
|
11429
11443
|
# domain_iam_role_name: "String",
|
11444
|
+
# enable_iam_database_authentication: false,
|
11430
11445
|
# }
|
11431
11446
|
#
|
11432
11447
|
# @!attribute [rw] db_instance_identifier
|
@@ -11633,6 +11648,22 @@ module Aws::RDS
|
|
11633
11648
|
# the Directory Service.
|
11634
11649
|
# @return [String]
|
11635
11650
|
#
|
11651
|
+
# @!attribute [rw] enable_iam_database_authentication
|
11652
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
11653
|
+
# accounts to database accounts; otherwise false.
|
11654
|
+
#
|
11655
|
+
# You can enable IAM database authentication for the following
|
11656
|
+
# database engines
|
11657
|
+
#
|
11658
|
+
# * For MySQL 5.6, minor version 5.6.34 or higher
|
11659
|
+
#
|
11660
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher
|
11661
|
+
#
|
11662
|
+
# * Aurora 5.6 or higher.
|
11663
|
+
#
|
11664
|
+
# Default: `false`
|
11665
|
+
# @return [Boolean]
|
11666
|
+
#
|
11636
11667
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
|
11637
11668
|
#
|
11638
11669
|
class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
|
@@ -11656,7 +11687,8 @@ module Aws::RDS
|
|
11656
11687
|
:tde_credential_password,
|
11657
11688
|
:domain,
|
11658
11689
|
:copy_tags_to_snapshot,
|
11659
|
-
:domain_iam_role_name
|
11690
|
+
:domain_iam_role_name,
|
11691
|
+
:enable_iam_database_authentication)
|
11660
11692
|
include Aws::Structure
|
11661
11693
|
end
|
11662
11694
|
|
@@ -11713,6 +11745,7 @@ module Aws::RDS
|
|
11713
11745
|
# tde_credential_password: "String",
|
11714
11746
|
# domain: "String",
|
11715
11747
|
# domain_iam_role_name: "String",
|
11748
|
+
# enable_iam_database_authentication: false,
|
11716
11749
|
# }
|
11717
11750
|
#
|
11718
11751
|
# @!attribute [rw] source_db_instance_identifier
|
@@ -11934,6 +11967,22 @@ module Aws::RDS
|
|
11934
11967
|
# the Directory Service.
|
11935
11968
|
# @return [String]
|
11936
11969
|
#
|
11970
|
+
# @!attribute [rw] enable_iam_database_authentication
|
11971
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
11972
|
+
# accounts to database accounts; otherwise false.
|
11973
|
+
#
|
11974
|
+
# You can enable IAM database authentication for the following
|
11975
|
+
# database engines
|
11976
|
+
#
|
11977
|
+
# * For MySQL 5.6, minor version 5.6.34 or higher
|
11978
|
+
#
|
11979
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher
|
11980
|
+
#
|
11981
|
+
# * Aurora 5.6 or higher.
|
11982
|
+
#
|
11983
|
+
# Default: `false`
|
11984
|
+
# @return [Boolean]
|
11985
|
+
#
|
11937
11986
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
11938
11987
|
#
|
11939
11988
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
@@ -11959,7 +12008,8 @@ module Aws::RDS
|
|
11959
12008
|
:tde_credential_arn,
|
11960
12009
|
:tde_credential_password,
|
11961
12010
|
:domain,
|
11962
|
-
:domain_iam_role_name
|
12011
|
+
:domain_iam_role_name,
|
12012
|
+
:enable_iam_database_authentication)
|
11963
12013
|
include Aws::Structure
|
11964
12014
|
end
|
11965
12015
|
|