aws-sdk-rds 1.219.0 → 1.221.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +109 -33
- data/lib/aws-sdk-rds/client_api.rb +4 -0
- data/lib/aws-sdk-rds/db_cluster.rb +44 -2
- data/lib/aws-sdk-rds/db_instance.rb +24 -24
- data/lib/aws-sdk-rds/db_snapshot.rb +3 -3
- data/lib/aws-sdk-rds/resource.rb +30 -17
- data/lib/aws-sdk-rds/types.rb +98 -38
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +3 -1
- data/sig/db_cluster.rbs +6 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +4 -0
- metadata +2 -2
@@ -1147,7 +1147,7 @@ module Aws::RDS
|
|
1147
1147
|
# 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for
|
1148
1148
|
# SQL Server.
|
1149
1149
|
#
|
1150
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 40 to
|
1150
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 40 to
|
1151
1151
|
# 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
|
1152
1152
|
# Server.
|
1153
1153
|
#
|
@@ -1157,10 +1157,10 @@ module Aws::RDS
|
|
1157
1157
|
# following:
|
1158
1158
|
#
|
1159
1159
|
# * General Purpose (SSD) storage (gp3): Must be an integer from 20 to
|
1160
|
-
#
|
1160
|
+
# 65536.
|
1161
1161
|
#
|
1162
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
1163
|
-
#
|
1162
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
1163
|
+
# to 65536.
|
1164
1164
|
#
|
1165
1165
|
# RDS for MariaDB
|
1166
1166
|
#
|
@@ -1170,8 +1170,8 @@ module Aws::RDS
|
|
1170
1170
|
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
|
1171
1171
|
# 20 to 65536.
|
1172
1172
|
#
|
1173
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
1174
|
-
# 65536.
|
1173
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
1174
|
+
# to 65536.
|
1175
1175
|
#
|
1176
1176
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
1177
1177
|
#
|
@@ -1183,8 +1183,8 @@ module Aws::RDS
|
|
1183
1183
|
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
|
1184
1184
|
# 20 to 65536.
|
1185
1185
|
#
|
1186
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
1187
|
-
# 65536.
|
1186
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
1187
|
+
# to 65536.
|
1188
1188
|
#
|
1189
1189
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
1190
1190
|
#
|
@@ -1196,8 +1196,8 @@ module Aws::RDS
|
|
1196
1196
|
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
|
1197
1197
|
# 20 to 65536.
|
1198
1198
|
#
|
1199
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
1200
|
-
# 65536.
|
1199
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
1200
|
+
# to 65536.
|
1201
1201
|
#
|
1202
1202
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
1203
1203
|
#
|
@@ -1209,8 +1209,8 @@ module Aws::RDS
|
|
1209
1209
|
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
|
1210
1210
|
# 20 to 65536.
|
1211
1211
|
#
|
1212
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
1213
|
-
# 65536.
|
1212
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
1213
|
+
# to 65536.
|
1214
1214
|
#
|
1215
1215
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
1216
1216
|
#
|
@@ -1226,7 +1226,7 @@ module Aws::RDS
|
|
1226
1226
|
#
|
1227
1227
|
# * Web and Express editions: Must be an integer from 20 to 16384.
|
1228
1228
|
#
|
1229
|
-
# * Provisioned IOPS storage (io1):
|
1229
|
+
# * Provisioned IOPS storage (io1, io2):
|
1230
1230
|
#
|
1231
1231
|
# * Enterprise and Standard editions: Must be an integer from 100 to
|
1232
1232
|
# 16384.
|
@@ -1694,13 +1694,13 @@ module Aws::RDS
|
|
1694
1694
|
# @option options [String] :storage_type
|
1695
1695
|
# The storage type to associate with the DB instance.
|
1696
1696
|
#
|
1697
|
-
# If you specify `io1` or `gp3`, you must also include a value
|
1698
|
-
# `Iops` parameter.
|
1697
|
+
# If you specify `io1`, `io2`, or `gp3`, you must also include a value
|
1698
|
+
# for the `Iops` parameter.
|
1699
1699
|
#
|
1700
1700
|
# This setting doesn't apply to Amazon Aurora DB instances. Storage is
|
1701
1701
|
# managed by the DB cluster.
|
1702
1702
|
#
|
1703
|
-
# Valid Values: `gp2 | gp3 | io1 | standard`
|
1703
|
+
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
1704
1704
|
#
|
1705
1705
|
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
1706
1706
|
# `gp2`.
|
@@ -2365,10 +2365,10 @@ module Aws::RDS
|
|
2365
2365
|
# @option options [String] :storage_type
|
2366
2366
|
# The storage type to associate with the read replica.
|
2367
2367
|
#
|
2368
|
-
# If you specify `io1` or `gp3`, you must also include a value
|
2369
|
-
# `Iops` parameter.
|
2368
|
+
# If you specify `io1`, `io2`, or `gp3`, you must also include a value
|
2369
|
+
# for the `Iops` parameter.
|
2370
2370
|
#
|
2371
|
-
# Valid Values: `gp2 | gp3 | io1 | standard`
|
2371
|
+
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
2372
2372
|
#
|
2373
2373
|
# Default: `io1` if the `Iops` parameter is specified. Otherwise, `gp2`.
|
2374
2374
|
# @option options [Boolean] :copy_tags_to_snapshot
|
@@ -3420,7 +3420,7 @@ module Aws::RDS
|
|
3420
3420
|
# @option options [String] :storage_type
|
3421
3421
|
# The storage type to associate with the DB instance.
|
3422
3422
|
#
|
3423
|
-
# If you specify
|
3423
|
+
# If you specify `io1`, `io2`, or `gp3` you must also include a value
|
3424
3424
|
# for the `Iops` parameter.
|
3425
3425
|
#
|
3426
3426
|
# If you choose to migrate your DB instance from using standard storage
|
@@ -3438,7 +3438,7 @@ module Aws::RDS
|
|
3438
3438
|
# rebooting the instance, deleting the instance, creating a read replica
|
3439
3439
|
# for the instance, and creating a DB snapshot of the instance.
|
3440
3440
|
#
|
3441
|
-
# Valid Values: `gp2 | gp3 | io1 | standard`
|
3441
|
+
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
3442
3442
|
#
|
3443
3443
|
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
3444
3444
|
# `gp2`.
|
@@ -4333,15 +4333,15 @@ module Aws::RDS
|
|
4333
4333
|
# @option options [String] :storage_type
|
4334
4334
|
# The storage type to associate with the DB instance.
|
4335
4335
|
#
|
4336
|
-
# Valid Values: `gp2 | gp3 | io1 | standard`
|
4336
|
+
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
4337
4337
|
#
|
4338
4338
|
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
4339
4339
|
# `gp2`.
|
4340
4340
|
#
|
4341
4341
|
# Constraints:
|
4342
4342
|
#
|
4343
|
-
# * If you specify `io1` or `gp3`, you must also include a value
|
4344
|
-
# `Iops` parameter.
|
4343
|
+
# * If you specify `io1`, `io2`, or `gp3`, you must also include a value
|
4344
|
+
# for the `Iops` parameter.
|
4345
4345
|
#
|
4346
4346
|
# ^
|
4347
4347
|
# @option options [String] :tde_credential_arn
|
@@ -875,10 +875,10 @@ module Aws::RDS
|
|
875
875
|
# @option options [String] :storage_type
|
876
876
|
# Specifies the storage type to be associated with the DB instance.
|
877
877
|
#
|
878
|
-
# Valid Values: `gp2 | gp3 | io1 | standard`
|
878
|
+
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
879
879
|
#
|
880
|
-
# If you specify `io1` or `gp3`, you must also include a value
|
881
|
-
# `Iops` parameter.
|
880
|
+
# If you specify `io1`, `io2`, or `gp3`, you must also include a value
|
881
|
+
# for the `Iops` parameter.
|
882
882
|
#
|
883
883
|
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
884
884
|
# @option options [String] :tde_credential_arn
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -109,6 +109,7 @@ module Aws::RDS
|
|
109
109
|
# manage_master_user_password: false,
|
110
110
|
# master_user_secret_kms_key_id: "String",
|
111
111
|
# enable_local_write_forwarding: false,
|
112
|
+
# ca_certificate_identifier: "String",
|
112
113
|
# source_region: "String",
|
113
114
|
# })
|
114
115
|
# @param [Hash] options ({})
|
@@ -638,7 +639,7 @@ module Aws::RDS
|
|
638
639
|
#
|
639
640
|
# * Aurora DB clusters - `aurora | aurora-iopt1`
|
640
641
|
#
|
641
|
-
# * Multi-AZ DB clusters - `io1`
|
642
|
+
# * Multi-AZ DB clusters - `io1 | io2 | gp3`
|
642
643
|
#
|
643
644
|
# Default:
|
644
645
|
#
|
@@ -877,6 +878,18 @@ module Aws::RDS
|
|
877
878
|
# aren't allowed on reader DB instances.
|
878
879
|
#
|
879
880
|
# Valid for: Aurora DB clusters only
|
881
|
+
# @option options [String] :ca_certificate_identifier
|
882
|
+
# The CA certificate identifier to use for the DB cluster's server
|
883
|
+
# certificate.
|
884
|
+
#
|
885
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
886
|
+
# DB instance][1] in the *Amazon RDS User Guide*.
|
887
|
+
#
|
888
|
+
# Valid for Cluster Type: Multi-AZ DB clusters
|
889
|
+
#
|
890
|
+
#
|
891
|
+
#
|
892
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
880
893
|
# @option options [String] :source_region
|
881
894
|
# The source region of the snapshot. This is only needed when the
|
882
895
|
# shapshot is encrypted and in a different region.
|
@@ -1221,7 +1234,7 @@ module Aws::RDS
|
|
1221
1234
|
# 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for
|
1222
1235
|
# SQL Server.
|
1223
1236
|
#
|
1224
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 40 to
|
1237
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 40 to
|
1225
1238
|
# 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
|
1226
1239
|
# Server.
|
1227
1240
|
#
|
@@ -1231,10 +1244,10 @@ module Aws::RDS
|
|
1231
1244
|
# following:
|
1232
1245
|
#
|
1233
1246
|
# * General Purpose (SSD) storage (gp3): Must be an integer from 20 to
|
1234
|
-
#
|
1247
|
+
# 65536.
|
1235
1248
|
#
|
1236
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
1237
|
-
#
|
1249
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
1250
|
+
# to 65536.
|
1238
1251
|
#
|
1239
1252
|
# RDS for MariaDB
|
1240
1253
|
#
|
@@ -1244,8 +1257,8 @@ module Aws::RDS
|
|
1244
1257
|
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
|
1245
1258
|
# 20 to 65536.
|
1246
1259
|
#
|
1247
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
1248
|
-
# 65536.
|
1260
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
1261
|
+
# to 65536.
|
1249
1262
|
#
|
1250
1263
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
1251
1264
|
#
|
@@ -1257,8 +1270,8 @@ module Aws::RDS
|
|
1257
1270
|
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
|
1258
1271
|
# 20 to 65536.
|
1259
1272
|
#
|
1260
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
1261
|
-
# 65536.
|
1273
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
1274
|
+
# to 65536.
|
1262
1275
|
#
|
1263
1276
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
1264
1277
|
#
|
@@ -1270,8 +1283,8 @@ module Aws::RDS
|
|
1270
1283
|
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
|
1271
1284
|
# 20 to 65536.
|
1272
1285
|
#
|
1273
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
1274
|
-
# 65536.
|
1286
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
1287
|
+
# to 65536.
|
1275
1288
|
#
|
1276
1289
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
1277
1290
|
#
|
@@ -1283,8 +1296,8 @@ module Aws::RDS
|
|
1283
1296
|
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer from
|
1284
1297
|
# 20 to 65536.
|
1285
1298
|
#
|
1286
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
1287
|
-
# 65536.
|
1299
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
1300
|
+
# to 65536.
|
1288
1301
|
#
|
1289
1302
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
1290
1303
|
#
|
@@ -1300,7 +1313,7 @@ module Aws::RDS
|
|
1300
1313
|
#
|
1301
1314
|
# * Web and Express editions: Must be an integer from 20 to 16384.
|
1302
1315
|
#
|
1303
|
-
# * Provisioned IOPS storage (io1):
|
1316
|
+
# * Provisioned IOPS storage (io1, io2):
|
1304
1317
|
#
|
1305
1318
|
# * Enterprise and Standard editions: Must be an integer from 100 to
|
1306
1319
|
# 16384.
|
@@ -1768,13 +1781,13 @@ module Aws::RDS
|
|
1768
1781
|
# @option options [String] :storage_type
|
1769
1782
|
# The storage type to associate with the DB instance.
|
1770
1783
|
#
|
1771
|
-
# If you specify `io1` or `gp3`, you must also include a value
|
1772
|
-
# `Iops` parameter.
|
1784
|
+
# If you specify `io1`, `io2`, or `gp3`, you must also include a value
|
1785
|
+
# for the `Iops` parameter.
|
1773
1786
|
#
|
1774
1787
|
# This setting doesn't apply to Amazon Aurora DB instances. Storage is
|
1775
1788
|
# managed by the DB cluster.
|
1776
1789
|
#
|
1777
|
-
# Valid Values: `gp2 | gp3 | io1 | standard`
|
1790
|
+
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
1778
1791
|
#
|
1779
1792
|
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
1780
1793
|
# `gp2`.
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -939,6 +939,20 @@ module Aws::RDS
|
|
939
939
|
# The storage type for the DB cluster.
|
940
940
|
# @return [String]
|
941
941
|
#
|
942
|
+
# @!attribute [rw] certificate_details
|
943
|
+
# Returns the details of the DB instance’s server certificate.
|
944
|
+
#
|
945
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
946
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
947
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
948
|
+
# User Guide*.
|
949
|
+
#
|
950
|
+
#
|
951
|
+
#
|
952
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
953
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
954
|
+
# @return [Types::CertificateDetails]
|
955
|
+
#
|
942
956
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ClusterPendingModifiedValues AWS API Documentation
|
943
957
|
#
|
944
958
|
class ClusterPendingModifiedValues < Struct.new(
|
@@ -951,7 +965,8 @@ module Aws::RDS
|
|
951
965
|
:allocated_storage,
|
952
966
|
:rds_custom_cluster_configuration,
|
953
967
|
:iops,
|
954
|
-
:storage_type
|
968
|
+
:storage_type,
|
969
|
+
:certificate_details)
|
955
970
|
SENSITIVE = []
|
956
971
|
include Aws::Structure
|
957
972
|
end
|
@@ -2632,7 +2647,7 @@ module Aws::RDS
|
|
2632
2647
|
#
|
2633
2648
|
# * Aurora DB clusters - `aurora | aurora-iopt1`
|
2634
2649
|
#
|
2635
|
-
# * Multi-AZ DB clusters - `io1`
|
2650
|
+
# * Multi-AZ DB clusters - `io1 | io2 | gp3`
|
2636
2651
|
#
|
2637
2652
|
# Default:
|
2638
2653
|
#
|
@@ -2905,6 +2920,20 @@ module Aws::RDS
|
|
2905
2920
|
# Valid for: Aurora DB clusters only
|
2906
2921
|
# @return [Boolean]
|
2907
2922
|
#
|
2923
|
+
# @!attribute [rw] ca_certificate_identifier
|
2924
|
+
# The CA certificate identifier to use for the DB cluster's server
|
2925
|
+
# certificate.
|
2926
|
+
#
|
2927
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
2928
|
+
# a DB instance][1] in the *Amazon RDS User Guide*.
|
2929
|
+
#
|
2930
|
+
# Valid for Cluster Type: Multi-AZ DB clusters
|
2931
|
+
#
|
2932
|
+
#
|
2933
|
+
#
|
2934
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
2935
|
+
# @return [String]
|
2936
|
+
#
|
2908
2937
|
# @!attribute [rw] source_region
|
2909
2938
|
# The source region of the snapshot. This is only needed when the
|
2910
2939
|
# shapshot is encrypted and in a different region.
|
@@ -2965,6 +2994,7 @@ module Aws::RDS
|
|
2965
2994
|
:manage_master_user_password,
|
2966
2995
|
:master_user_secret_kms_key_id,
|
2967
2996
|
:enable_local_write_forwarding,
|
2997
|
+
:ca_certificate_identifier,
|
2968
2998
|
:source_region)
|
2969
2999
|
SENSITIVE = []
|
2970
3000
|
include Aws::Structure
|
@@ -3331,8 +3361,8 @@ module Aws::RDS
|
|
3331
3361
|
# from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom
|
3332
3362
|
# for SQL Server.
|
3333
3363
|
#
|
3334
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 40
|
3335
|
-
# 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
|
3364
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 40
|
3365
|
+
# to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
|
3336
3366
|
# Server.
|
3337
3367
|
#
|
3338
3368
|
# RDS for Db2
|
@@ -3341,10 +3371,10 @@ module Aws::RDS
|
|
3341
3371
|
# following:
|
3342
3372
|
#
|
3343
3373
|
# * General Purpose (SSD) storage (gp3): Must be an integer from 20
|
3344
|
-
# to
|
3374
|
+
# to 65536.
|
3345
3375
|
#
|
3346
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
3347
|
-
#
|
3376
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
3377
|
+
# to 65536.
|
3348
3378
|
#
|
3349
3379
|
# RDS for MariaDB
|
3350
3380
|
#
|
@@ -3354,8 +3384,8 @@ module Aws::RDS
|
|
3354
3384
|
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer
|
3355
3385
|
# from 20 to 65536.
|
3356
3386
|
#
|
3357
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
3358
|
-
# 65536.
|
3387
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
3388
|
+
# to 65536.
|
3359
3389
|
#
|
3360
3390
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
3361
3391
|
#
|
@@ -3367,8 +3397,8 @@ module Aws::RDS
|
|
3367
3397
|
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer
|
3368
3398
|
# from 20 to 65536.
|
3369
3399
|
#
|
3370
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
3371
|
-
# 65536.
|
3400
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
3401
|
+
# to 65536.
|
3372
3402
|
#
|
3373
3403
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
3374
3404
|
#
|
@@ -3380,8 +3410,8 @@ module Aws::RDS
|
|
3380
3410
|
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer
|
3381
3411
|
# from 20 to 65536.
|
3382
3412
|
#
|
3383
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
3384
|
-
# 65536.
|
3413
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
3414
|
+
# to 65536.
|
3385
3415
|
#
|
3386
3416
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
3387
3417
|
#
|
@@ -3393,8 +3423,8 @@ module Aws::RDS
|
|
3393
3423
|
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer
|
3394
3424
|
# from 20 to 65536.
|
3395
3425
|
#
|
3396
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100
|
3397
|
-
# 65536.
|
3426
|
+
# * Provisioned IOPS storage (io1, io2): Must be an integer from 100
|
3427
|
+
# to 65536.
|
3398
3428
|
#
|
3399
3429
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
3400
3430
|
#
|
@@ -3410,7 +3440,7 @@ module Aws::RDS
|
|
3410
3440
|
#
|
3411
3441
|
# * Web and Express editions: Must be an integer from 20 to 16384.
|
3412
3442
|
#
|
3413
|
-
# * Provisioned IOPS storage (io1):
|
3443
|
+
# * Provisioned IOPS storage (io1, io2):
|
3414
3444
|
#
|
3415
3445
|
# * Enterprise and Standard editions: Must be an integer from 100
|
3416
3446
|
# to 16384.
|
@@ -3933,13 +3963,13 @@ module Aws::RDS
|
|
3933
3963
|
# @!attribute [rw] storage_type
|
3934
3964
|
# The storage type to associate with the DB instance.
|
3935
3965
|
#
|
3936
|
-
# If you specify `io1` or `gp3`, you must also include a value
|
3937
|
-
# `Iops` parameter.
|
3966
|
+
# If you specify `io1`, `io2`, or `gp3`, you must also include a value
|
3967
|
+
# for the `Iops` parameter.
|
3938
3968
|
#
|
3939
3969
|
# This setting doesn't apply to Amazon Aurora DB instances. Storage
|
3940
3970
|
# is managed by the DB cluster.
|
3941
3971
|
#
|
3942
|
-
# Valid Values: `gp2 | gp3 | io1 | standard`
|
3972
|
+
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
3943
3973
|
#
|
3944
3974
|
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
3945
3975
|
# `gp2`.
|
@@ -4744,10 +4774,10 @@ module Aws::RDS
|
|
4744
4774
|
# @!attribute [rw] storage_type
|
4745
4775
|
# The storage type to associate with the read replica.
|
4746
4776
|
#
|
4747
|
-
# If you specify `io1` or `gp3`, you must also include a value
|
4748
|
-
# `Iops` parameter.
|
4777
|
+
# If you specify `io1`, `io2`, or `gp3`, you must also include a value
|
4778
|
+
# for the `Iops` parameter.
|
4749
4779
|
#
|
4750
|
-
# Valid Values: `gp2 | gp3 | io1 | standard`
|
4780
|
+
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
4751
4781
|
#
|
4752
4782
|
# Default: `io1` if the `Iops` parameter is specified. Otherwise,
|
4753
4783
|
# `gp2`.
|
@@ -6877,6 +6907,20 @@ module Aws::RDS
|
|
6877
6907
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
6878
6908
|
# @return [Integer]
|
6879
6909
|
#
|
6910
|
+
# @!attribute [rw] certificate_details
|
6911
|
+
# Returns the details of the DB instance’s server certificate.
|
6912
|
+
#
|
6913
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
6914
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
6915
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
6916
|
+
# User Guide*.
|
6917
|
+
#
|
6918
|
+
#
|
6919
|
+
#
|
6920
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
6921
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
6922
|
+
# @return [Types::CertificateDetails]
|
6923
|
+
#
|
6880
6924
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
|
6881
6925
|
#
|
6882
6926
|
class DBCluster < Struct.new(
|
@@ -6957,7 +7001,8 @@ module Aws::RDS
|
|
6957
7001
|
:local_write_forwarding_status,
|
6958
7002
|
:aws_backup_recovery_point_arn,
|
6959
7003
|
:limitless_database,
|
6960
|
-
:storage_throughput
|
7004
|
+
:storage_throughput,
|
7005
|
+
:certificate_details)
|
6961
7006
|
SENSITIVE = []
|
6962
7007
|
include Aws::Structure
|
6963
7008
|
end
|
@@ -17072,7 +17117,7 @@ module Aws::RDS
|
|
17072
17117
|
#
|
17073
17118
|
# * Aurora DB clusters - `aurora | aurora-iopt1`
|
17074
17119
|
#
|
17075
|
-
# * Multi-AZ DB clusters - `io1`
|
17120
|
+
# * Multi-AZ DB clusters - `io1 | io2 | gp3`
|
17076
17121
|
#
|
17077
17122
|
# Default:
|
17078
17123
|
#
|
@@ -17376,6 +17421,20 @@ module Aws::RDS
|
|
17376
17421
|
# Valid for: Aurora DB clusters only
|
17377
17422
|
# @return [Boolean]
|
17378
17423
|
#
|
17424
|
+
# @!attribute [rw] ca_certificate_identifier
|
17425
|
+
# The CA certificate identifier to use for the DB cluster's server
|
17426
|
+
# certificate.
|
17427
|
+
#
|
17428
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
17429
|
+
# a DB instance][1] in the *Amazon RDS User Guide*.
|
17430
|
+
#
|
17431
|
+
# Valid for Cluster Type: Multi-AZ DB clusters
|
17432
|
+
#
|
17433
|
+
#
|
17434
|
+
#
|
17435
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
17436
|
+
# @return [String]
|
17437
|
+
#
|
17379
17438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
17380
17439
|
#
|
17381
17440
|
class ModifyDBClusterMessage < Struct.new(
|
@@ -17422,7 +17481,8 @@ module Aws::RDS
|
|
17422
17481
|
:allow_engine_mode_change,
|
17423
17482
|
:enable_local_write_forwarding,
|
17424
17483
|
:aws_backup_recovery_point_arn,
|
17425
|
-
:enable_limitless_database
|
17484
|
+
:enable_limitless_database,
|
17485
|
+
:ca_certificate_identifier)
|
17426
17486
|
SENSITIVE = []
|
17427
17487
|
include Aws::Structure
|
17428
17488
|
end
|
@@ -18061,8 +18121,8 @@ module Aws::RDS
|
|
18061
18121
|
# @!attribute [rw] storage_type
|
18062
18122
|
# The storage type to associate with the DB instance.
|
18063
18123
|
#
|
18064
|
-
# If you specify
|
18065
|
-
#
|
18124
|
+
# If you specify `io1`, `io2`, or `gp3` you must also include a value
|
18125
|
+
# for the `Iops` parameter.
|
18066
18126
|
#
|
18067
18127
|
# If you choose to migrate your DB instance from using standard
|
18068
18128
|
# storage to using Provisioned IOPS, or from using Provisioned IOPS to
|
@@ -18080,7 +18140,7 @@ module Aws::RDS
|
|
18080
18140
|
# read replica for the instance, and creating a DB snapshot of the
|
18081
18141
|
# instance.
|
18082
18142
|
#
|
18083
|
-
# Valid Values: `gp2 | gp3 | io1 | standard`
|
18143
|
+
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
18084
18144
|
#
|
18085
18145
|
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
18086
18146
|
# `gp2`.
|
@@ -23605,10 +23665,10 @@ module Aws::RDS
|
|
23605
23665
|
# @!attribute [rw] storage_type
|
23606
23666
|
# Specifies the storage type to be associated with the DB instance.
|
23607
23667
|
#
|
23608
|
-
# Valid Values: `gp2 | gp3 | io1 | standard`
|
23668
|
+
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
23609
23669
|
#
|
23610
|
-
# If you specify `io1` or `gp3`, you must also include a value
|
23611
|
-
# `Iops` parameter.
|
23670
|
+
# If you specify `io1`, `io2`, or `gp3`, you must also include a value
|
23671
|
+
# for the `Iops` parameter.
|
23612
23672
|
#
|
23613
23673
|
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
23614
23674
|
# @return [String]
|
@@ -24277,10 +24337,10 @@ module Aws::RDS
|
|
24277
24337
|
# @!attribute [rw] storage_type
|
24278
24338
|
# Specifies the storage type to be associated with the DB instance.
|
24279
24339
|
#
|
24280
|
-
# Valid Values: `gp2 | gp3 | io1 | standard`
|
24340
|
+
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
24281
24341
|
#
|
24282
|
-
# If you specify `io1` or `gp3`, you must also include a value
|
24283
|
-
# `Iops` parameter.
|
24342
|
+
# If you specify `io1`, `io2`, or `gp3`, you must also include a value
|
24343
|
+
# for the `Iops` parameter.
|
24284
24344
|
#
|
24285
24345
|
# Default: `io1` if the `Iops` parameter is specified; otherwise `gp2`
|
24286
24346
|
# @return [String]
|
@@ -24873,15 +24933,15 @@ module Aws::RDS
|
|
24873
24933
|
# @!attribute [rw] storage_type
|
24874
24934
|
# The storage type to associate with the DB instance.
|
24875
24935
|
#
|
24876
|
-
# Valid Values: `gp2 | gp3 | io1 | standard`
|
24936
|
+
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
24877
24937
|
#
|
24878
24938
|
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
24879
24939
|
# `gp2`.
|
24880
24940
|
#
|
24881
24941
|
# Constraints:
|
24882
24942
|
#
|
24883
|
-
# * If you specify `io1` or `gp3`, you must also include a
|
24884
|
-
# the `Iops` parameter.
|
24943
|
+
# * If you specify `io1`, `io2`, or `gp3`, you must also include a
|
24944
|
+
# value for the `Iops` parameter.
|
24885
24945
|
#
|
24886
24946
|
# ^
|
24887
24947
|
# @return [String]
|
@@ -26953,7 +27013,7 @@ module Aws::RDS
|
|
26953
27013
|
#
|
26954
27014
|
# @!attribute [rw] storage_type
|
26955
27015
|
# The valid storage types for your DB instance. For example: gp2, gp3,
|
26956
|
-
# io1.
|
27016
|
+
# io1, io2.
|
26957
27017
|
# @return [String]
|
26958
27018
|
#
|
26959
27019
|
# @!attribute [rw] storage_size
|
data/lib/aws-sdk-rds.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -435,6 +435,7 @@ module Aws
|
|
435
435
|
?manage_master_user_password: bool,
|
436
436
|
?master_user_secret_kms_key_id: ::String,
|
437
437
|
?enable_local_write_forwarding: bool,
|
438
|
+
?ca_certificate_identifier: ::String,
|
438
439
|
?source_region: ::String
|
439
440
|
) -> _CreateDBClusterResponseSuccess
|
440
441
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBClusterResponseSuccess
|
@@ -2274,7 +2275,8 @@ module Aws
|
|
2274
2275
|
?allow_engine_mode_change: bool,
|
2275
2276
|
?enable_local_write_forwarding: bool,
|
2276
2277
|
?aws_backup_recovery_point_arn: ::String,
|
2277
|
-
?enable_limitless_database: bool
|
2278
|
+
?enable_limitless_database: bool,
|
2279
|
+
?ca_certificate_identifier: ::String
|
2278
2280
|
) -> _ModifyDBClusterResponseSuccess
|
2279
2281
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBClusterResponseSuccess
|
2280
2282
|
|
data/sig/db_cluster.rbs
CHANGED
@@ -249,6 +249,9 @@ module Aws
|
|
249
249
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#storage_throughput-instance_method
|
250
250
|
def storage_throughput: () -> ::Integer
|
251
251
|
|
252
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#certificate_details-instance_method
|
253
|
+
def certificate_details: () -> Types::CertificateDetails
|
254
|
+
|
252
255
|
def client: () -> Client
|
253
256
|
|
254
257
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#load-instance_method
|
@@ -334,6 +337,7 @@ module Aws
|
|
334
337
|
?manage_master_user_password: bool,
|
335
338
|
?master_user_secret_kms_key_id: ::String,
|
336
339
|
?enable_local_write_forwarding: bool,
|
340
|
+
?ca_certificate_identifier: ::String,
|
337
341
|
?source_region: ::String
|
338
342
|
) -> DBCluster
|
339
343
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
@@ -421,7 +425,8 @@ module Aws
|
|
421
425
|
?allow_engine_mode_change: bool,
|
422
426
|
?enable_local_write_forwarding: bool,
|
423
427
|
?aws_backup_recovery_point_arn: ::String,
|
424
|
-
?enable_limitless_database: bool
|
428
|
+
?enable_limitless_database: bool,
|
429
|
+
?ca_certificate_identifier: ::String
|
425
430
|
) -> DBCluster
|
426
431
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
427
432
|
|
data/sig/resource.rbs
CHANGED
@@ -147,6 +147,7 @@ module Aws
|
|
147
147
|
?manage_master_user_password: bool,
|
148
148
|
?master_user_secret_kms_key_id: ::String,
|
149
149
|
?enable_local_write_forwarding: bool,
|
150
|
+
?ca_certificate_identifier: ::String,
|
150
151
|
?source_region: ::String
|
151
152
|
) -> DBCluster
|
152
153
|
| (?Hash[Symbol, untyped]) -> DBCluster
|