aws-sdk-rds 1.155.0 → 1.156.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 02a10328be9ceff169cab42520412da589740a9a334b79ba0608b8d543e27045
4
- data.tar.gz: 918f9736919e2b2375dcdb975f5e46eb9e3064f10152fad1132b387562ac3e23
3
+ metadata.gz: 5dba65aa86909d37219eea5e309a32867787fa1e3a09a38808b6832784d71074
4
+ data.tar.gz: ecaf303c9a600d12fbd3dc17c62cb4b0d6b121e653b4b0b53b0a968d2f4e25dc
5
5
  SHA512:
6
- metadata.gz: 9115bd1a2dd2c51c1e1d6d4e868b1a79c5fc1cf4a9de0c07d50f3a3545f0c2f36c0a152a6f4479329e2c44c979a298db3a4b5a4ad41799793e43cf95122bad24
7
- data.tar.gz: e35f3e1997e9ae9e31aceb655d0c58862557db3047868f13b8a29470b7b9c9c57b2211691142308e8ee9e66154d01ce43966d2246c22068bf6c33400c16f2ad5
6
+ metadata.gz: 3af0d6edbfe17f9415fe039294544d0b0dbe59825f4ccabb074fa016defef85f5ab5ef5ddf8ff61796f37fb17c17919c0626dac22f5c05b807d253093ff9b2bb
7
+ data.tar.gz: e5622ab5ff112e847588008e9976b370bbbd672a16809d4a1dad6f18cc037c762d0c58c8c90a2a734d7c29936fbd02d68949d36dbfd7f04826b349826315ccb1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.156.0 (2022-09-19)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for Amazon RDS Proxy with SQL Server compatibility.
8
+
4
9
  1.155.0 (2022-08-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.155.0
1
+ 1.156.0
@@ -2583,7 +2583,7 @@ module Aws::RDS
2583
2583
  #
2584
2584
  # @option params [String] :db_cluster_instance_class
2585
2585
  # The compute and memory capacity of each DB instance in the Multi-AZ DB
2586
- # cluster, for example db.m6g.xlarge. Not all DB instance classes are
2586
+ # cluster, for example db.m6gd.xlarge. Not all DB instance classes are
2587
2587
  # available in all Amazon Web Services Regions, or for all database
2588
2588
  # engines.
2589
2589
  #
@@ -3510,8 +3510,8 @@ module Aws::RDS
3510
3510
  #
3511
3511
  # * It must contain 1 to 63 alphanumeric characters.
3512
3512
  #
3513
- # * It must begin with a letter or an underscore. Subsequent characters
3514
- # can be letters, underscores, or digits (0 to 9).
3513
+ # * It must begin with a letter. Subsequent characters can be letters,
3514
+ # underscores, or digits (0 to 9).
3515
3515
  #
3516
3516
  # * It can't be a word reserved by the database engine.
3517
3517
  #
@@ -3819,11 +3819,11 @@ module Aws::RDS
3819
3819
  #
3820
3820
  # Constraints:
3821
3821
  #
3822
- # * Must be 1 to 255 letters, numbers, or hyphens.
3822
+ # * It must be 1 to 255 letters, numbers, or hyphens.
3823
3823
  #
3824
- # * First character must be a letter
3824
+ # * The first character must be a letter.
3825
3825
  #
3826
- # * Can't end with a hyphen or contain two consecutive hyphens
3826
+ # * It can't end with a hyphen or contain two consecutive hyphens.
3827
3827
  #
3828
3828
  # @option params [Integer] :backup_retention_period
3829
3829
  # The number of days for which automated backups are retained. Setting
@@ -5701,7 +5701,7 @@ module Aws::RDS
5701
5701
  # it interprets network traffic to and from the database. For Aurora
5702
5702
  # MySQL, RDS for MariaDB, and RDS for MySQL databases, specify `MYSQL`.
5703
5703
  # For Aurora PostgreSQL and RDS for PostgreSQL databases, specify
5704
- # `POSTGRESQL`.
5704
+ # `POSTGRESQL`. For RDS for Microsoft SQL Server, specify `SQLSERVER`.
5705
5705
  #
5706
5706
  # @option params [required, Array<Types::UserAuthConfig>] :auth
5707
5707
  # The authorization mechanism that the proxy uses.
@@ -5747,14 +5747,14 @@ module Aws::RDS
5747
5747
  #
5748
5748
  # resp = client.create_db_proxy({
5749
5749
  # db_proxy_name: "String", # required
5750
- # engine_family: "MYSQL", # required, accepts MYSQL, POSTGRESQL
5750
+ # engine_family: "MYSQL", # required, accepts MYSQL, POSTGRESQL, SQLSERVER
5751
5751
  # auth: [ # required
5752
5752
  # {
5753
5753
  # description: "String",
5754
5754
  # user_name: "String",
5755
5755
  # auth_scheme: "SECRETS", # accepts SECRETS
5756
5756
  # secret_arn: "String",
5757
- # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED
5757
+ # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED, ENABLED
5758
5758
  # },
5759
5759
  # ],
5760
5760
  # role_arn: "String", # required
@@ -5787,7 +5787,7 @@ module Aws::RDS
5787
5787
  # resp.db_proxy.auth[0].user_name #=> String
5788
5788
  # resp.db_proxy.auth[0].auth_scheme #=> String, one of "SECRETS"
5789
5789
  # resp.db_proxy.auth[0].secret_arn #=> String
5790
- # resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED"
5790
+ # resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED", "ENABLED"
5791
5791
  # resp.db_proxy.role_arn #=> String
5792
5792
  # resp.db_proxy.endpoint #=> String
5793
5793
  # resp.db_proxy.require_tls #=> Boolean
@@ -5830,7 +5830,9 @@ module Aws::RDS
5830
5830
  #
5831
5831
  # @option params [String] :target_role
5832
5832
  # A value that indicates whether the DB proxy endpoint can be used for
5833
- # read/write or read-only operations. The default is `READ_WRITE`.
5833
+ # read/write or read-only operations. The default is `READ_WRITE`. The
5834
+ # only role that proxies for RDS for Microsoft SQL Server support is
5835
+ # `READ_WRITE`.
5834
5836
  #
5835
5837
  # @option params [Array<Types::Tag>] :tags
5836
5838
  # A list of tags. For more information, see [Tagging Amazon RDS
@@ -7533,7 +7535,7 @@ module Aws::RDS
7533
7535
  # resp.db_proxy.auth[0].user_name #=> String
7534
7536
  # resp.db_proxy.auth[0].auth_scheme #=> String, one of "SECRETS"
7535
7537
  # resp.db_proxy.auth[0].secret_arn #=> String
7536
- # resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED"
7538
+ # resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED", "ENABLED"
7537
7539
  # resp.db_proxy.role_arn #=> String
7538
7540
  # resp.db_proxy.endpoint #=> String
7539
7541
  # resp.db_proxy.require_tls #=> Boolean
@@ -9983,7 +9985,7 @@ module Aws::RDS
9983
9985
  # resp.db_proxies[0].auth[0].user_name #=> String
9984
9986
  # resp.db_proxies[0].auth[0].auth_scheme #=> String, one of "SECRETS"
9985
9987
  # resp.db_proxies[0].auth[0].secret_arn #=> String
9986
- # resp.db_proxies[0].auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED"
9988
+ # resp.db_proxies[0].auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED", "ENABLED"
9987
9989
  # resp.db_proxies[0].role_arn #=> String
9988
9990
  # resp.db_proxies[0].endpoint #=> String
9989
9991
  # resp.db_proxies[0].require_tls #=> Boolean
@@ -12311,8 +12313,20 @@ module Aws::RDS
12311
12313
 
12312
12314
  # Returns a list of the source Amazon Web Services Regions where the
12313
12315
  # current Amazon Web Services Region can create a read replica, copy a
12314
- # DB snapshot from, or replicate automated backups from. This API action
12315
- # supports pagination.
12316
+ # DB snapshot from, or replicate automated backups from.
12317
+ #
12318
+ # Use this operation to determine whether cross-Region features are
12319
+ # supported between other Regions and your current Region. This
12320
+ # operation supports pagination.
12321
+ #
12322
+ # To return information about the Regions that are enabled for your
12323
+ # account, or all Regions, use the EC2 operation `DescribeRegions`. For
12324
+ # more information, see [ DescribeRegions][1] in the *Amazon EC2 API
12325
+ # Reference*.
12326
+ #
12327
+ #
12328
+ #
12329
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeRegions.html
12316
12330
  #
12317
12331
  # @option params [String] :region_name
12318
12332
  # The source Amazon Web Services Region name. For example, `us-east-1`.
@@ -13699,7 +13713,7 @@ module Aws::RDS
13699
13713
  #
13700
13714
  # @option params [String] :db_cluster_instance_class
13701
13715
  # The compute and memory capacity of each DB instance in the Multi-AZ DB
13702
- # cluster, for example db.m6g.xlarge. Not all DB instance classes are
13716
+ # cluster, for example db.m6gd.xlarge. Not all DB instance classes are
13703
13717
  # available in all Amazon Web Services Regions, or for all database
13704
13718
  # engines.
13705
13719
  #
@@ -15609,7 +15623,7 @@ module Aws::RDS
15609
15623
  # user_name: "String",
15610
15624
  # auth_scheme: "SECRETS", # accepts SECRETS
15611
15625
  # secret_arn: "String",
15612
- # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED
15626
+ # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED, ENABLED
15613
15627
  # },
15614
15628
  # ],
15615
15629
  # require_tls: false,
@@ -15635,7 +15649,7 @@ module Aws::RDS
15635
15649
  # resp.db_proxy.auth[0].user_name #=> String
15636
15650
  # resp.db_proxy.auth[0].auth_scheme #=> String, one of "SECRETS"
15637
15651
  # resp.db_proxy.auth[0].secret_arn #=> String
15638
- # resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED"
15652
+ # resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED", "ENABLED"
15639
15653
  # resp.db_proxy.role_arn #=> String
15640
15654
  # resp.db_proxy.endpoint #=> String
15641
15655
  # resp.db_proxy.require_tls #=> Boolean
@@ -18621,7 +18635,7 @@ module Aws::RDS
18621
18635
  #
18622
18636
  # @option params [String] :db_cluster_instance_class
18623
18637
  # The compute and memory capacity of the each DB instance in the
18624
- # Multi-AZ DB cluster, for example db.m6g.xlarge. Not all DB instance
18638
+ # Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
18625
18639
  # classes are available in all Amazon Web Services Regions, or for all
18626
18640
  # database engines.
18627
18641
  #
@@ -19226,7 +19240,7 @@ module Aws::RDS
19226
19240
  #
19227
19241
  # @option params [String] :db_cluster_instance_class
19228
19242
  # The compute and memory capacity of the each DB instance in the
19229
- # Multi-AZ DB cluster, for example db.m6g.xlarge. Not all DB instance
19243
+ # Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
19230
19244
  # classes are available in all Amazon Web Services Regions, or for all
19231
19245
  # database engines.
19232
19246
  #
@@ -23013,7 +23027,7 @@ module Aws::RDS
23013
23027
  params: params,
23014
23028
  config: config)
23015
23029
  context[:gem_name] = 'aws-sdk-rds'
23016
- context[:gem_version] = '1.155.0'
23030
+ context[:gem_version] = '1.156.0'
23017
23031
  Seahorse::Client::Request.new(handlers, context)
23018
23032
  end
23019
23033
 
@@ -1350,7 +1350,7 @@ module Aws::RDS
1350
1350
  # Valid for: Aurora DB clusters only
1351
1351
  # @option options [String] :db_cluster_instance_class
1352
1352
  # The compute and memory capacity of each DB instance in the Multi-AZ DB
1353
- # cluster, for example db.m6g.xlarge. Not all DB instance classes are
1353
+ # cluster, for example db.m6gd.xlarge. Not all DB instance classes are
1354
1354
  # available in all Amazon Web Services Regions, or for all database
1355
1355
  # engines.
1356
1356
  #
@@ -2050,7 +2050,7 @@ module Aws::RDS
2050
2050
  # Valid for: Aurora DB clusters only
2051
2051
  # @option options [String] :db_cluster_instance_class
2052
2052
  # The compute and memory capacity of each DB instance in the Multi-AZ DB
2053
- # cluster, for example db.m6g.xlarge. Not all DB instance classes are
2053
+ # cluster, for example db.m6gd.xlarge. Not all DB instance classes are
2054
2054
  # available in all Amazon Web Services Regions, or for all database
2055
2055
  # engines.
2056
2056
  #
@@ -2513,7 +2513,7 @@ module Aws::RDS
2513
2513
  # Valid for: Aurora DB clusters only
2514
2514
  # @option options [String] :db_cluster_instance_class
2515
2515
  # The compute and memory capacity of the each DB instance in the
2516
- # Multi-AZ DB cluster, for example db.m6g.xlarge. Not all DB instance
2516
+ # Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
2517
2517
  # classes are available in all Amazon Web Services Regions, or for all
2518
2518
  # database engines.
2519
2519
  #
@@ -825,7 +825,7 @@ module Aws::RDS
825
825
  # Valid for: Aurora DB clusters only
826
826
  # @option options [String] :db_cluster_instance_class
827
827
  # The compute and memory capacity of the each DB instance in the
828
- # Multi-AZ DB cluster, for example db.m6g.xlarge. Not all DB instance
828
+ # Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
829
829
  # classes are available in all Amazon Web Services Regions, or for all
830
830
  # database engines.
831
831
  #
@@ -1034,8 +1034,8 @@ module Aws::RDS
1034
1034
  #
1035
1035
  # * It must contain 1 to 63 alphanumeric characters.
1036
1036
  #
1037
- # * It must begin with a letter or an underscore. Subsequent characters
1038
- # can be letters, underscores, or digits (0 to 9).
1037
+ # * It must begin with a letter. Subsequent characters can be letters,
1038
+ # underscores, or digits (0 to 9).
1039
1039
  #
1040
1040
  # * It can't be a word reserved by the database engine.
1041
1041
  # @option options [Integer] :allocated_storage
@@ -1318,11 +1318,11 @@ module Aws::RDS
1318
1318
  #
1319
1319
  # Constraints:
1320
1320
  #
1321
- # * Must be 1 to 255 letters, numbers, or hyphens.
1321
+ # * It must be 1 to 255 letters, numbers, or hyphens.
1322
1322
  #
1323
- # * First character must be a letter
1323
+ # * The first character must be a letter.
1324
1324
  #
1325
- # * Can't end with a hyphen or contain two consecutive hyphens
1325
+ # * It can't end with a hyphen or contain two consecutive hyphens.
1326
1326
  # @option options [Integer] :backup_retention_period
1327
1327
  # The number of days for which automated backups are retained. Setting
1328
1328
  # this parameter to a positive number enables backups. Setting this
@@ -624,7 +624,7 @@ module Aws::RDS
624
624
  # Valid for: Aurora DB clusters only
625
625
  # @option options [String] :db_cluster_instance_class
626
626
  # The compute and memory capacity of each DB instance in the Multi-AZ DB
627
- # cluster, for example db.m6g.xlarge. Not all DB instance classes are
627
+ # cluster, for example db.m6gd.xlarge. Not all DB instance classes are
628
628
  # available in all Amazon Web Services Regions, or for all database
629
629
  # engines.
630
630
  #
@@ -1105,8 +1105,8 @@ module Aws::RDS
1105
1105
  #
1106
1106
  # * It must contain 1 to 63 alphanumeric characters.
1107
1107
  #
1108
- # * It must begin with a letter or an underscore. Subsequent characters
1109
- # can be letters, underscores, or digits (0 to 9).
1108
+ # * It must begin with a letter. Subsequent characters can be letters,
1109
+ # underscores, or digits (0 to 9).
1110
1110
  #
1111
1111
  # * It can't be a word reserved by the database engine.
1112
1112
  # @option options [required, String] :db_instance_identifier
@@ -1402,11 +1402,11 @@ module Aws::RDS
1402
1402
  #
1403
1403
  # Constraints:
1404
1404
  #
1405
- # * Must be 1 to 255 letters, numbers, or hyphens.
1405
+ # * It must be 1 to 255 letters, numbers, or hyphens.
1406
1406
  #
1407
- # * First character must be a letter
1407
+ # * The first character must be a letter.
1408
1408
  #
1409
- # * Can't end with a hyphen or contain two consecutive hyphens
1409
+ # * It can't end with a hyphen or contain two consecutive hyphens.
1410
1410
  # @option options [Integer] :backup_retention_period
1411
1411
  # The number of days for which automated backups are retained. Setting
1412
1412
  # this parameter to a positive number enables backups. Setting this
@@ -820,9 +820,10 @@ module Aws::RDS
820
820
  # `max_connections` setting for the RDS DB instance or Aurora DB
821
821
  # cluster used by the target group.
822
822
  #
823
- # Default: 100
823
+ # Default: 10 for RDS for Microsoft SQL Server, and 100 for all other
824
+ # engines
824
825
  #
825
- # Constraints: between 1 and 100
826
+ # Constraints: Must be between 1 and 100.
826
827
  # @return [Integer]
827
828
  #
828
829
  # @!attribute [rw] max_idle_connections_percent
@@ -834,9 +835,15 @@ module Aws::RDS
834
835
  # value causes the proxy to close more idle connections and return
835
836
  # them to the database.
836
837
  #
837
- # Default: 50
838
+ # Default: The default value is half of the value of
839
+ # `MaxConnectionsPercent`. For example, if `MaxConnectionsPercent` is
840
+ # 80, then the default value of `MaxIdleConnectionsPercent` is 40. If
841
+ # the value of `MaxConnectionsPercent` isn't specified, then for SQL
842
+ # Server, `MaxIdleConnectionsPercent` is 5, and for all other engines,
843
+ # the default is 50.
838
844
  #
839
- # Constraints: between 0 and `MaxConnectionsPercent`
845
+ # Constraints: Must be between 0 and the value of
846
+ # `MaxConnectionsPercent`.
840
847
  # @return [Integer]
841
848
  #
842
849
  # @!attribute [rw] connection_borrow_timeout
@@ -915,7 +922,8 @@ module Aws::RDS
915
922
  # normally cause all later statements in a session using a proxy to be
916
923
  # pinned to the same underlying database connection. Including an item
917
924
  # in the list exempts that class of SQL operations from the pinning
918
- # behavior. Currently, the only allowed value is
925
+ # behavior. This setting is only supported for MySQL engine family
926
+ # databases. Currently, the only allowed value is
919
927
  # `EXCLUDE_VARIABLE_SETS`.
920
928
  # @return [Array<String>]
921
929
  #
@@ -2469,7 +2477,7 @@ module Aws::RDS
2469
2477
  #
2470
2478
  # @!attribute [rw] db_cluster_instance_class
2471
2479
  # The compute and memory capacity of each DB instance in the Multi-AZ
2472
- # DB cluster, for example db.m6g.xlarge. Not all DB instance classes
2480
+ # DB cluster, for example db.m6gd.xlarge. Not all DB instance classes
2473
2481
  # are available in all Amazon Web Services Regions, or for all
2474
2482
  # database engines.
2475
2483
  #
@@ -3160,8 +3168,8 @@ module Aws::RDS
3160
3168
  #
3161
3169
  # * It must contain 1 to 63 alphanumeric characters.
3162
3170
  #
3163
- # * It must begin with a letter or an underscore. Subsequent
3164
- # characters can be letters, underscores, or digits (0 to 9).
3171
+ # * It must begin with a letter. Subsequent characters can be letters,
3172
+ # underscores, or digits (0 to 9).
3165
3173
  #
3166
3174
  # * It can't be a word reserved by the database engine.
3167
3175
  # @return [String]
@@ -3482,11 +3490,11 @@ module Aws::RDS
3482
3490
  #
3483
3491
  # Constraints:
3484
3492
  #
3485
- # * Must be 1 to 255 letters, numbers, or hyphens.
3493
+ # * It must be 1 to 255 letters, numbers, or hyphens.
3486
3494
  #
3487
- # * First character must be a letter
3495
+ # * The first character must be a letter.
3488
3496
  #
3489
- # * Can't end with a hyphen or contain two consecutive hyphens
3497
+ # * It can't end with a hyphen or contain two consecutive hyphens.
3490
3498
  # @return [String]
3491
3499
  #
3492
3500
  # @!attribute [rw] backup_retention_period
@@ -5139,7 +5147,9 @@ module Aws::RDS
5139
5147
  #
5140
5148
  # @!attribute [rw] target_role
5141
5149
  # A value that indicates whether the DB proxy endpoint can be used for
5142
- # read/write or read-only operations. The default is `READ_WRITE`.
5150
+ # read/write or read-only operations. The default is `READ_WRITE`. The
5151
+ # only role that proxies for RDS for Microsoft SQL Server support is
5152
+ # `READ_WRITE`.
5143
5153
  # @return [String]
5144
5154
  #
5145
5155
  # @!attribute [rw] tags
@@ -5184,14 +5194,14 @@ module Aws::RDS
5184
5194
  #
5185
5195
  # {
5186
5196
  # db_proxy_name: "String", # required
5187
- # engine_family: "MYSQL", # required, accepts MYSQL, POSTGRESQL
5197
+ # engine_family: "MYSQL", # required, accepts MYSQL, POSTGRESQL, SQLSERVER
5188
5198
  # auth: [ # required
5189
5199
  # {
5190
5200
  # description: "String",
5191
5201
  # user_name: "String",
5192
5202
  # auth_scheme: "SECRETS", # accepts SECRETS
5193
5203
  # secret_arn: "String",
5194
- # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED
5204
+ # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED, ENABLED
5195
5205
  # },
5196
5206
  # ],
5197
5207
  # role_arn: "String", # required
@@ -5222,7 +5232,8 @@ module Aws::RDS
5222
5232
  # it interprets network traffic to and from the database. For Aurora
5223
5233
  # MySQL, RDS for MariaDB, and RDS for MySQL databases, specify
5224
5234
  # `MYSQL`. For Aurora PostgreSQL and RDS for PostgreSQL databases,
5225
- # specify `POSTGRESQL`.
5235
+ # specify `POSTGRESQL`. For RDS for Microsoft SQL Server, specify
5236
+ # `SQLSERVER`.
5226
5237
  # @return [String]
5227
5238
  #
5228
5239
  # @!attribute [rw] auth
@@ -8556,6 +8567,7 @@ module Aws::RDS
8556
8567
  # it interprets network traffic to and from the database. `MYSQL`
8557
8568
  # supports Aurora MySQL, RDS for MariaDB, and RDS for MySQL databases.
8558
8569
  # `POSTGRESQL` supports Aurora PostgreSQL and RDS for PostgreSQL
8570
+ # databases. `SQLSERVER` supports RDS for Microsoft SQL Server
8559
8571
  # databases.
8560
8572
  # @return [String]
8561
8573
  #
@@ -15261,7 +15273,7 @@ module Aws::RDS
15261
15273
  #
15262
15274
  # @!attribute [rw] db_cluster_instance_class
15263
15275
  # The compute and memory capacity of each DB instance in the Multi-AZ
15264
- # DB cluster, for example db.m6g.xlarge. Not all DB instance classes
15276
+ # DB cluster, for example db.m6gd.xlarge. Not all DB instance classes
15265
15277
  # are available in all Amazon Web Services Regions, or for all
15266
15278
  # database engines.
15267
15279
  #
@@ -16821,7 +16833,7 @@ module Aws::RDS
16821
16833
  # user_name: "String",
16822
16834
  # auth_scheme: "SECRETS", # accepts SECRETS
16823
16835
  # secret_arn: "String",
16824
- # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED
16836
+ # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED, ENABLED
16825
16837
  # },
16826
16838
  # ],
16827
16839
  # require_tls: false,
@@ -20467,7 +20479,7 @@ module Aws::RDS
20467
20479
  #
20468
20480
  # @!attribute [rw] db_cluster_instance_class
20469
20481
  # The compute and memory capacity of the each DB instance in the
20470
- # Multi-AZ DB cluster, for example db.m6g.xlarge. Not all DB instance
20482
+ # Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
20471
20483
  # classes are available in all Amazon Web Services Regions, or for all
20472
20484
  # database engines.
20473
20485
  #
@@ -21010,7 +21022,7 @@ module Aws::RDS
21010
21022
  #
21011
21023
  # @!attribute [rw] db_cluster_instance_class
21012
21024
  # The compute and memory capacity of the each DB instance in the
21013
- # Multi-AZ DB cluster, for example db.m6g.xlarge. Not all DB instance
21025
+ # Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
21014
21026
  # classes are available in all Amazon Web Services Regions, or for all
21015
21027
  # database engines.
21016
21028
  #
@@ -24230,7 +24242,7 @@ module Aws::RDS
24230
24242
  # user_name: "String",
24231
24243
  # auth_scheme: "SECRETS", # accepts SECRETS
24232
24244
  # secret_arn: "String",
24233
- # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED
24245
+ # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED, ENABLED
24234
24246
  # }
24235
24247
  #
24236
24248
  # @!attribute [rw] description
@@ -24256,6 +24268,8 @@ module Aws::RDS
24256
24268
  # @!attribute [rw] iam_auth
24257
24269
  # Whether to require or disallow Amazon Web Services Identity and
24258
24270
  # Access Management (IAM) authentication for connections to the proxy.
24271
+ # The `ENABLED` value is valid only for proxies with RDS for Microsoft
24272
+ # SQL Server.
24259
24273
  # @return [String]
24260
24274
  #
24261
24275
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UserAuthConfig AWS API Documentation
@@ -24296,6 +24310,8 @@ module Aws::RDS
24296
24310
  # @!attribute [rw] iam_auth
24297
24311
  # Whether to require or disallow Amazon Web Services Identity and
24298
24312
  # Access Management (IAM) authentication for connections to the proxy.
24313
+ # The `ENABLED` value is valid only for proxies with RDS for Microsoft
24314
+ # SQL Server.
24299
24315
  # @return [String]
24300
24316
  #
24301
24317
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UserAuthConfigInfo AWS API Documentation
data/lib/aws-sdk-rds.rb CHANGED
@@ -74,6 +74,6 @@ require_relative 'aws-sdk-rds/customizations'
74
74
  # @!group service
75
75
  module Aws::RDS
76
76
 
77
- GEM_VERSION = '1.155.0'
77
+ GEM_VERSION = '1.156.0'
78
78
 
79
79
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.155.0
4
+ version: 1.156.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-26 00:00:00.000000000 Z
11
+ date: 2022-09-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4