aws-sdk-rds 1.289.0 → 1.291.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 +78 -12
- data/lib/aws-sdk-rds/client_api.rb +6 -0
- data/lib/aws-sdk-rds/db_cluster.rb +35 -2
- data/lib/aws-sdk-rds/db_instance.rb +37 -9
- data/lib/aws-sdk-rds/resource.rb +30 -0
- data/lib/aws-sdk-rds/types.rb +96 -14
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +7 -3
- data/sig/db_cluster.rbs +3 -1
- data/sig/db_instance.rbs +4 -2
- data/sig/resource.rbs +3 -1
- data/sig/types.rbs +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 30004e981fdfe16613fd17d443d84974f49123ac1e8aa8640d1a4e08f02af1db
|
4
|
+
data.tar.gz: aabededda4ba8d71c3be7643ccffa645cab98cd21368ab0d36e7c295378cf5b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ec0cea2b2620aae547abd744ea165f1e7e08915ed61b0b7be0cb2f40b8065f6cc1af594ff308edce23f8865140b50a6b1786535b75a59e2058162e373c5ffd6
|
7
|
+
data.tar.gz: 8711844b44ca8e86ec379ec3b31f901c1099d72ec27bb93ced5dea8c504341332724ccd254e110fb9fd6823b48b75c1a6f31d5284f1621da20410edaea48d73a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.291.0 (2025-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for MasterUserAuthenticationType parameter on CreateDBInstance, ModifyDBInstance, CreateDBCluster, and ModifyDBCluster operations.
|
8
|
+
|
9
|
+
1.290.0 (2025-08-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added RDS HTTP Endpoint feature support flag to DescribeOrderableDBInstanceOptions API
|
13
|
+
|
4
14
|
1.289.0 (2025-08-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.291.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -3631,6 +3631,22 @@ module Aws::RDS
|
|
3631
3631
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
3632
3632
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
3633
3633
|
#
|
3634
|
+
# @option params [String] :master_user_authentication_type
|
3635
|
+
# Specifies the authentication type for the master user. With IAM master
|
3636
|
+
# user authentication, you can configure the master DB user with IAM
|
3637
|
+
# database authentication when you create a DB cluster.
|
3638
|
+
#
|
3639
|
+
# You can specify one of the following values:
|
3640
|
+
#
|
3641
|
+
# * `password` - Use standard database authentication with a password.
|
3642
|
+
#
|
3643
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
3644
|
+
#
|
3645
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3646
|
+
#
|
3647
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
3648
|
+
# engines.
|
3649
|
+
#
|
3634
3650
|
# @option params [String] :source_region
|
3635
3651
|
# The source region of the snapshot. This is only needed when the
|
3636
3652
|
# shapshot is encrypted and in a different region.
|
@@ -3846,6 +3862,7 @@ module Aws::RDS
|
|
3846
3862
|
# enable_local_write_forwarding: false,
|
3847
3863
|
# ca_certificate_identifier: "String",
|
3848
3864
|
# engine_lifecycle_support: "String",
|
3865
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
3849
3866
|
# source_region: "String",
|
3850
3867
|
# })
|
3851
3868
|
#
|
@@ -5762,6 +5779,20 @@ module Aws::RDS
|
|
5762
5779
|
#
|
5763
5780
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
5764
5781
|
#
|
5782
|
+
# @option params [String] :master_user_authentication_type
|
5783
|
+
# Specifies the authentication type for the master user. With IAM master
|
5784
|
+
# user authentication, you can configure the master DB user with IAM
|
5785
|
+
# database authentication when you create a DB instance.
|
5786
|
+
#
|
5787
|
+
# You can specify one of the following values:
|
5788
|
+
#
|
5789
|
+
# * `password` - Use standard database authentication with a password.
|
5790
|
+
#
|
5791
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
5792
|
+
#
|
5793
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
5794
|
+
# engines.
|
5795
|
+
#
|
5765
5796
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5766
5797
|
#
|
5767
5798
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -5953,6 +5984,7 @@ module Aws::RDS
|
|
5953
5984
|
# dedicated_log_volume: false,
|
5954
5985
|
# multi_tenant: false,
|
5955
5986
|
# engine_lifecycle_support: "String",
|
5987
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
5956
5988
|
# })
|
5957
5989
|
#
|
5958
5990
|
# @example Response structure
|
@@ -6275,15 +6307,15 @@ module Aws::RDS
|
|
6275
6307
|
# The name of the DB parameter group to associate with this read replica
|
6276
6308
|
# DB instance.
|
6277
6309
|
#
|
6278
|
-
# For the Db2 DB engine, if your source DB instance uses the
|
6279
|
-
#
|
6280
|
-
# with the replica. For a same Amazon Web Services Region
|
6281
|
-
# you don't specify a custom parameter group, Amazon RDS
|
6282
|
-
# custom parameter group associated with the source DB
|
6283
|
-
# cross-Region replica, you must specify a custom
|
6284
|
-
# custom parameter group must include your IBM
|
6285
|
-
# ID. For more information, see [
|
6286
|
-
# Db2][1].
|
6310
|
+
# For the Db2 DB engine, if your source DB instance uses the bring your
|
6311
|
+
# own license (BYOL) model, then a custom parameter group must be
|
6312
|
+
# associated with the replica. For a same Amazon Web Services Region
|
6313
|
+
# replica, if you don't specify a custom parameter group, Amazon RDS
|
6314
|
+
# associates the custom parameter group associated with the source DB
|
6315
|
+
# instance. For a cross-Region replica, you must specify a custom
|
6316
|
+
# parameter group. This custom parameter group must include your IBM
|
6317
|
+
# Site ID and IBM Customer ID. For more information, see [IBM IDs for
|
6318
|
+
# bring your own license (BYOL) for Db2][1].
|
6287
6319
|
#
|
6288
6320
|
# For Single-AZ or Multi-AZ DB instance read replica instances, if you
|
6289
6321
|
# don't specify a value for `DBParameterGroupName`, then Amazon RDS
|
@@ -17112,6 +17144,7 @@ module Aws::RDS
|
|
17112
17144
|
# resp.orderable_db_instance_options[0].min_storage_throughput_per_iops #=> Float
|
17113
17145
|
# resp.orderable_db_instance_options[0].max_storage_throughput_per_iops #=> Float
|
17114
17146
|
# resp.orderable_db_instance_options[0].supports_dedicated_log_volume #=> Boolean
|
17147
|
+
# resp.orderable_db_instance_options[0].supports_http_endpoint #=> Boolean
|
17115
17148
|
# resp.marker #=> String
|
17116
17149
|
#
|
17117
17150
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
@@ -19579,8 +19612,9 @@ module Aws::RDS
|
|
19579
19612
|
# the `PerformanceInsightsEnabled` parameter to `true` and the
|
19580
19613
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
19581
19614
|
#
|
19582
|
-
# If you change the value from `advanced` to `standard`, you
|
19583
|
-
#
|
19615
|
+
# If you change the value from `advanced` to `standard`, you can set the
|
19616
|
+
# `PerformanceInsightsEnabled` parameter to `true` to collect detailed
|
19617
|
+
# database counter and per-query metrics.
|
19584
19618
|
#
|
19585
19619
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
19586
19620
|
#
|
@@ -19816,6 +19850,22 @@ module Aws::RDS
|
|
19816
19850
|
#
|
19817
19851
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
19818
19852
|
#
|
19853
|
+
# @option params [String] :master_user_authentication_type
|
19854
|
+
# Specifies the authentication type for the master user. With IAM master
|
19855
|
+
# user authentication, you can change the master DB user to use IAM
|
19856
|
+
# database authentication.
|
19857
|
+
#
|
19858
|
+
# You can specify one of the following values:
|
19859
|
+
#
|
19860
|
+
# * `password` - Use standard database authentication with a password.
|
19861
|
+
#
|
19862
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
19863
|
+
#
|
19864
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
19865
|
+
#
|
19866
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
19867
|
+
# engines.
|
19868
|
+
#
|
19819
19869
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19820
19870
|
#
|
19821
19871
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -19958,6 +20008,7 @@ module Aws::RDS
|
|
19958
20008
|
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
19959
20009
|
# enable_limitless_database: false,
|
19960
20010
|
# ca_certificate_identifier: "String",
|
20011
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
19961
20012
|
# })
|
19962
20013
|
#
|
19963
20014
|
# @example Response structure
|
@@ -21621,6 +21672,20 @@ module Aws::RDS
|
|
21621
21672
|
# configuration. When you specify this parameter, you must also specify
|
21622
21673
|
# `ApplyImmediately`.
|
21623
21674
|
#
|
21675
|
+
# @option params [String] :master_user_authentication_type
|
21676
|
+
# Specifies the authentication type for the master user. With IAM master
|
21677
|
+
# user authentication, you can change the master DB user to use IAM
|
21678
|
+
# database authentication.
|
21679
|
+
#
|
21680
|
+
# You can specify one of the following values:
|
21681
|
+
#
|
21682
|
+
# * `password` - Use standard database authentication with a password.
|
21683
|
+
#
|
21684
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
21685
|
+
#
|
21686
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
21687
|
+
# engines.
|
21688
|
+
#
|
21624
21689
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21625
21690
|
#
|
21626
21691
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -21748,6 +21813,7 @@ module Aws::RDS
|
|
21748
21813
|
# engine: "String",
|
21749
21814
|
# dedicated_log_volume: false,
|
21750
21815
|
# multi_tenant: false,
|
21816
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
21751
21817
|
# })
|
21752
21818
|
#
|
21753
21819
|
# @example Response structure
|
@@ -32450,7 +32516,7 @@ module Aws::RDS
|
|
32450
32516
|
tracer: tracer
|
32451
32517
|
)
|
32452
32518
|
context[:gem_name] = 'aws-sdk-rds'
|
32453
|
-
context[:gem_version] = '1.
|
32519
|
+
context[:gem_version] = '1.291.0'
|
32454
32520
|
Seahorse::Client::Request.new(handlers, context)
|
32455
32521
|
end
|
32456
32522
|
|
@@ -510,6 +510,7 @@ module Aws::RDS
|
|
510
510
|
LongOptional = Shapes::IntegerShape.new(name: 'LongOptional')
|
511
511
|
MajorEngineVersion = Shapes::StringShape.new(name: 'MajorEngineVersion')
|
512
512
|
Marker = Shapes::StringShape.new(name: 'Marker')
|
513
|
+
MasterUserAuthenticationType = Shapes::StringShape.new(name: 'MasterUserAuthenticationType')
|
513
514
|
MasterUserSecret = Shapes::StructureShape.new(name: 'MasterUserSecret')
|
514
515
|
MaxDBShardGroupLimitReached = Shapes::StructureShape.new(name: 'MaxDBShardGroupLimitReached', error: {"code" => "MaxDBShardGroupLimitReached", "httpStatusCode" => 400, "senderFault" => true})
|
515
516
|
MaxRecords = Shapes::IntegerShape.new(name: 'MaxRecords')
|
@@ -1100,6 +1101,7 @@ module Aws::RDS
|
|
1100
1101
|
CreateDBClusterMessage.add_member(:enable_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLocalWriteForwarding"))
|
1101
1102
|
CreateDBClusterMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
1102
1103
|
CreateDBClusterMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
1104
|
+
CreateDBClusterMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
1103
1105
|
CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
1104
1106
|
CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
|
1105
1107
|
|
@@ -1187,6 +1189,7 @@ module Aws::RDS
|
|
1187
1189
|
CreateDBInstanceMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
1188
1190
|
CreateDBInstanceMessage.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
1189
1191
|
CreateDBInstanceMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
1192
|
+
CreateDBInstanceMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
1190
1193
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
1191
1194
|
|
1192
1195
|
CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
@@ -3147,6 +3150,7 @@ module Aws::RDS
|
|
3147
3150
|
ModifyDBClusterMessage.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: AwsBackupRecoveryPointArn, location_name: "AwsBackupRecoveryPointArn"))
|
3148
3151
|
ModifyDBClusterMessage.add_member(:enable_limitless_database, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLimitlessDatabase"))
|
3149
3152
|
ModifyDBClusterMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
3153
|
+
ModifyDBClusterMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
3150
3154
|
ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
|
3151
3155
|
|
3152
3156
|
ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
|
@@ -3226,6 +3230,7 @@ module Aws::RDS
|
|
3226
3230
|
ModifyDBInstanceMessage.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
3227
3231
|
ModifyDBInstanceMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
3228
3232
|
ModifyDBInstanceMessage.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
3233
|
+
ModifyDBInstanceMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
3229
3234
|
ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
|
3230
3235
|
|
3231
3236
|
ModifyDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3505,6 +3510,7 @@ module Aws::RDS
|
|
3505
3510
|
OrderableDBInstanceOption.add_member(:min_storage_throughput_per_iops, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinStorageThroughputPerIops"))
|
3506
3511
|
OrderableDBInstanceOption.add_member(:max_storage_throughput_per_iops, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxStorageThroughputPerIops"))
|
3507
3512
|
OrderableDBInstanceOption.add_member(:supports_dedicated_log_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsDedicatedLogVolume"))
|
3513
|
+
OrderableDBInstanceOption.add_member(:supports_http_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsHttpEndpoint"))
|
3508
3514
|
OrderableDBInstanceOption.struct_class = Types::OrderableDBInstanceOption
|
3509
3515
|
|
3510
3516
|
OrderableDBInstanceOptionsList.member = Shapes::ShapeRef.new(shape: OrderableDBInstanceOption, location_name: "OrderableDBInstanceOption")
|
@@ -993,6 +993,7 @@ module Aws::RDS
|
|
993
993
|
# enable_local_write_forwarding: false,
|
994
994
|
# ca_certificate_identifier: "String",
|
995
995
|
# engine_lifecycle_support: "String",
|
996
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
996
997
|
# source_region: "String",
|
997
998
|
# })
|
998
999
|
# @param [Hash] options ({})
|
@@ -1853,6 +1854,21 @@ module Aws::RDS
|
|
1853
1854
|
#
|
1854
1855
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
1855
1856
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
1857
|
+
# @option options [String] :master_user_authentication_type
|
1858
|
+
# Specifies the authentication type for the master user. With IAM master
|
1859
|
+
# user authentication, you can configure the master DB user with IAM
|
1860
|
+
# database authentication when you create a DB cluster.
|
1861
|
+
#
|
1862
|
+
# You can specify one of the following values:
|
1863
|
+
#
|
1864
|
+
# * `password` - Use standard database authentication with a password.
|
1865
|
+
#
|
1866
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
1867
|
+
#
|
1868
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
1869
|
+
#
|
1870
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
1871
|
+
# engines.
|
1856
1872
|
# @option options [String] :source_region
|
1857
1873
|
# The source region of the snapshot. This is only needed when the
|
1858
1874
|
# shapshot is encrypted and in a different region.
|
@@ -2055,6 +2071,7 @@ module Aws::RDS
|
|
2055
2071
|
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
2056
2072
|
# enable_limitless_database: false,
|
2057
2073
|
# ca_certificate_identifier: "String",
|
2074
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
2058
2075
|
# })
|
2059
2076
|
# @param [Hash] options ({})
|
2060
2077
|
# @option options [String] :new_db_cluster_identifier
|
@@ -2501,8 +2518,9 @@ module Aws::RDS
|
|
2501
2518
|
# the `PerformanceInsightsEnabled` parameter to `true` and the
|
2502
2519
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
2503
2520
|
#
|
2504
|
-
# If you change the value from `advanced` to `standard`, you
|
2505
|
-
#
|
2521
|
+
# If you change the value from `advanced` to `standard`, you can set the
|
2522
|
+
# `PerformanceInsightsEnabled` parameter to `true` to collect detailed
|
2523
|
+
# database counter and per-query metrics.
|
2506
2524
|
#
|
2507
2525
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2508
2526
|
# @option options [Boolean] :enable_performance_insights
|
@@ -2723,6 +2741,21 @@ module Aws::RDS
|
|
2723
2741
|
#
|
2724
2742
|
#
|
2725
2743
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
2744
|
+
# @option options [String] :master_user_authentication_type
|
2745
|
+
# Specifies the authentication type for the master user. With IAM master
|
2746
|
+
# user authentication, you can change the master DB user to use IAM
|
2747
|
+
# database authentication.
|
2748
|
+
#
|
2749
|
+
# You can specify one of the following values:
|
2750
|
+
#
|
2751
|
+
# * `password` - Use standard database authentication with a password.
|
2752
|
+
#
|
2753
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
2754
|
+
#
|
2755
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2756
|
+
#
|
2757
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
2758
|
+
# engines.
|
2726
2759
|
# @return [DBCluster]
|
2727
2760
|
def modify(options = {})
|
2728
2761
|
options = options.merge(db_cluster_identifier: @id)
|
@@ -1030,6 +1030,7 @@ module Aws::RDS
|
|
1030
1030
|
# dedicated_log_volume: false,
|
1031
1031
|
# multi_tenant: false,
|
1032
1032
|
# engine_lifecycle_support: "String",
|
1033
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
1033
1034
|
# })
|
1034
1035
|
# @param [Hash] options ({})
|
1035
1036
|
# @option options [String] :db_name
|
@@ -2268,6 +2269,19 @@ module Aws::RDS
|
|
2268
2269
|
#
|
2269
2270
|
#
|
2270
2271
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
2272
|
+
# @option options [String] :master_user_authentication_type
|
2273
|
+
# Specifies the authentication type for the master user. With IAM master
|
2274
|
+
# user authentication, you can configure the master DB user with IAM
|
2275
|
+
# database authentication when you create a DB instance.
|
2276
|
+
#
|
2277
|
+
# You can specify one of the following values:
|
2278
|
+
#
|
2279
|
+
# * `password` - Use standard database authentication with a password.
|
2280
|
+
#
|
2281
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
2282
|
+
#
|
2283
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
2284
|
+
# engines.
|
2271
2285
|
# @return [DBInstance]
|
2272
2286
|
def create(options = {})
|
2273
2287
|
options = options.merge(db_instance_identifier: @id)
|
@@ -2414,15 +2428,15 @@ module Aws::RDS
|
|
2414
2428
|
# The name of the DB parameter group to associate with this read replica
|
2415
2429
|
# DB instance.
|
2416
2430
|
#
|
2417
|
-
# For the Db2 DB engine, if your source DB instance uses the
|
2418
|
-
#
|
2419
|
-
# with the replica. For a same Amazon Web Services Region
|
2420
|
-
# you don't specify a custom parameter group, Amazon RDS
|
2421
|
-
# custom parameter group associated with the source DB
|
2422
|
-
# cross-Region replica, you must specify a custom
|
2423
|
-
# custom parameter group must include your IBM
|
2424
|
-
# ID. For more information, see [
|
2425
|
-
# Db2][1].
|
2431
|
+
# For the Db2 DB engine, if your source DB instance uses the bring your
|
2432
|
+
# own license (BYOL) model, then a custom parameter group must be
|
2433
|
+
# associated with the replica. For a same Amazon Web Services Region
|
2434
|
+
# replica, if you don't specify a custom parameter group, Amazon RDS
|
2435
|
+
# associates the custom parameter group associated with the source DB
|
2436
|
+
# instance. For a cross-Region replica, you must specify a custom
|
2437
|
+
# parameter group. This custom parameter group must include your IBM
|
2438
|
+
# Site ID and IBM Customer ID. For more information, see [IBM IDs for
|
2439
|
+
# bring your own license (BYOL) for Db2][1].
|
2426
2440
|
#
|
2427
2441
|
# For Single-AZ or Multi-AZ DB instance read replica instances, if you
|
2428
2442
|
# don't specify a value for `DBParameterGroupName`, then Amazon RDS
|
@@ -3179,6 +3193,7 @@ module Aws::RDS
|
|
3179
3193
|
# engine: "String",
|
3180
3194
|
# dedicated_log_volume: false,
|
3181
3195
|
# multi_tenant: false,
|
3196
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
3182
3197
|
# })
|
3183
3198
|
# @param [Hash] options ({})
|
3184
3199
|
# @option options [Integer] :allocated_storage
|
@@ -4265,6 +4280,19 @@ module Aws::RDS
|
|
4265
4280
|
# irreversible, so you can't later convert back to the single-tenant
|
4266
4281
|
# configuration. When you specify this parameter, you must also specify
|
4267
4282
|
# `ApplyImmediately`.
|
4283
|
+
# @option options [String] :master_user_authentication_type
|
4284
|
+
# Specifies the authentication type for the master user. With IAM master
|
4285
|
+
# user authentication, you can change the master DB user to use IAM
|
4286
|
+
# database authentication.
|
4287
|
+
#
|
4288
|
+
# You can specify one of the following values:
|
4289
|
+
#
|
4290
|
+
# * `password` - Use standard database authentication with a password.
|
4291
|
+
#
|
4292
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
4293
|
+
#
|
4294
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
4295
|
+
# engines.
|
4268
4296
|
# @return [DBInstance]
|
4269
4297
|
def modify(options = {})
|
4270
4298
|
options = options.merge(db_instance_identifier: @id)
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -114,6 +114,7 @@ module Aws::RDS
|
|
114
114
|
# enable_local_write_forwarding: false,
|
115
115
|
# ca_certificate_identifier: "String",
|
116
116
|
# engine_lifecycle_support: "String",
|
117
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
117
118
|
# source_region: "String",
|
118
119
|
# })
|
119
120
|
# @param [Hash] options ({})
|
@@ -990,6 +991,21 @@ module Aws::RDS
|
|
990
991
|
#
|
991
992
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
992
993
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
994
|
+
# @option options [String] :master_user_authentication_type
|
995
|
+
# Specifies the authentication type for the master user. With IAM master
|
996
|
+
# user authentication, you can configure the master DB user with IAM
|
997
|
+
# database authentication when you create a DB cluster.
|
998
|
+
#
|
999
|
+
# You can specify one of the following values:
|
1000
|
+
#
|
1001
|
+
# * `password` - Use standard database authentication with a password.
|
1002
|
+
#
|
1003
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
1004
|
+
#
|
1005
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
1006
|
+
#
|
1007
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
1008
|
+
# engines.
|
993
1009
|
# @option options [String] :source_region
|
994
1010
|
# The source region of the snapshot. This is only needed when the
|
995
1011
|
# shapshot is encrypted and in a different region.
|
@@ -1173,6 +1189,7 @@ module Aws::RDS
|
|
1173
1189
|
# dedicated_log_volume: false,
|
1174
1190
|
# multi_tenant: false,
|
1175
1191
|
# engine_lifecycle_support: "String",
|
1192
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
1176
1193
|
# })
|
1177
1194
|
# @param [Hash] options ({})
|
1178
1195
|
# @option options [String] :db_name
|
@@ -2424,6 +2441,19 @@ module Aws::RDS
|
|
2424
2441
|
#
|
2425
2442
|
#
|
2426
2443
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
2444
|
+
# @option options [String] :master_user_authentication_type
|
2445
|
+
# Specifies the authentication type for the master user. With IAM master
|
2446
|
+
# user authentication, you can configure the master DB user with IAM
|
2447
|
+
# database authentication when you create a DB instance.
|
2448
|
+
#
|
2449
|
+
# You can specify one of the following values:
|
2450
|
+
#
|
2451
|
+
# * `password` - Use standard database authentication with a password.
|
2452
|
+
#
|
2453
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
2454
|
+
#
|
2455
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
2456
|
+
# engines.
|
2427
2457
|
# @return [DBInstance]
|
2428
2458
|
def create_db_instance(options = {})
|
2429
2459
|
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -3188,6 +3188,24 @@ module Aws::RDS
|
|
3188
3188
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
3189
3189
|
# @return [String]
|
3190
3190
|
#
|
3191
|
+
# @!attribute [rw] master_user_authentication_type
|
3192
|
+
# Specifies the authentication type for the master user. With IAM
|
3193
|
+
# master user authentication, you can configure the master DB user
|
3194
|
+
# with IAM database authentication when you create a DB cluster.
|
3195
|
+
#
|
3196
|
+
# You can specify one of the following values:
|
3197
|
+
#
|
3198
|
+
# * `password` - Use standard database authentication with a password.
|
3199
|
+
#
|
3200
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
3201
|
+
# user.
|
3202
|
+
#
|
3203
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3204
|
+
#
|
3205
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
3206
|
+
# PostgreSQL engines.
|
3207
|
+
# @return [String]
|
3208
|
+
#
|
3191
3209
|
# @!attribute [rw] source_region
|
3192
3210
|
# The source region of the snapshot. This is only needed when the
|
3193
3211
|
# shapshot is encrypted and in a different region.
|
@@ -3252,6 +3270,7 @@ module Aws::RDS
|
|
3252
3270
|
:enable_local_write_forwarding,
|
3253
3271
|
:ca_certificate_identifier,
|
3254
3272
|
:engine_lifecycle_support,
|
3273
|
+
:master_user_authentication_type,
|
3255
3274
|
:source_region)
|
3256
3275
|
SENSITIVE = []
|
3257
3276
|
include Aws::Structure
|
@@ -4843,6 +4862,22 @@ module Aws::RDS
|
|
4843
4862
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
4844
4863
|
# @return [String]
|
4845
4864
|
#
|
4865
|
+
# @!attribute [rw] master_user_authentication_type
|
4866
|
+
# Specifies the authentication type for the master user. With IAM
|
4867
|
+
# master user authentication, you can configure the master DB user
|
4868
|
+
# with IAM database authentication when you create a DB instance.
|
4869
|
+
#
|
4870
|
+
# You can specify one of the following values:
|
4871
|
+
#
|
4872
|
+
# * `password` - Use standard database authentication with a password.
|
4873
|
+
#
|
4874
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
4875
|
+
# user.
|
4876
|
+
#
|
4877
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
4878
|
+
# PostgreSQL engines.
|
4879
|
+
# @return [String]
|
4880
|
+
#
|
4846
4881
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
4847
4882
|
#
|
4848
4883
|
class CreateDBInstanceMessage < Struct.new(
|
@@ -4909,7 +4944,8 @@ module Aws::RDS
|
|
4909
4944
|
:db_system_id,
|
4910
4945
|
:dedicated_log_volume,
|
4911
4946
|
:multi_tenant,
|
4912
|
-
:engine_lifecycle_support
|
4947
|
+
:engine_lifecycle_support,
|
4948
|
+
:master_user_authentication_type)
|
4913
4949
|
SENSITIVE = []
|
4914
4950
|
include Aws::Structure
|
4915
4951
|
end
|
@@ -5047,15 +5083,15 @@ module Aws::RDS
|
|
5047
5083
|
# The name of the DB parameter group to associate with this read
|
5048
5084
|
# replica DB instance.
|
5049
5085
|
#
|
5050
|
-
# For the Db2 DB engine, if your source DB instance uses the
|
5051
|
-
#
|
5086
|
+
# For the Db2 DB engine, if your source DB instance uses the bring
|
5087
|
+
# your own license (BYOL) model, then a custom parameter group must be
|
5052
5088
|
# associated with the replica. For a same Amazon Web Services Region
|
5053
5089
|
# replica, if you don't specify a custom parameter group, Amazon RDS
|
5054
5090
|
# associates the custom parameter group associated with the source DB
|
5055
5091
|
# instance. For a cross-Region replica, you must specify a custom
|
5056
5092
|
# parameter group. This custom parameter group must include your IBM
|
5057
|
-
# Site ID and IBM Customer ID. For more information, see [
|
5058
|
-
#
|
5093
|
+
# Site ID and IBM Customer ID. For more information, see [IBM IDs for
|
5094
|
+
# bring your own license (BYOL) for Db2][1].
|
5059
5095
|
#
|
5060
5096
|
# For Single-AZ or Multi-AZ DB instance read replica instances, if you
|
5061
5097
|
# don't specify a value for `DBParameterGroupName`, then Amazon RDS
|
@@ -16596,10 +16632,14 @@ module Aws::RDS
|
|
16596
16632
|
# @return [String]
|
16597
16633
|
#
|
16598
16634
|
# @!attribute [rw] global_cluster_resource_id
|
16599
|
-
# The Amazon Web Services
|
16600
|
-
# global database cluster. This identifier is found in Amazon
|
16601
|
-
# Services CloudTrail log entries whenever the Amazon Web Services
|
16602
|
-
# key for the DB cluster is accessed.
|
16635
|
+
# The Amazon Web Services [partition][1]-unique, immutable identifier
|
16636
|
+
# for the global database cluster. This identifier is found in Amazon
|
16637
|
+
# Web Services CloudTrail log entries whenever the Amazon Web Services
|
16638
|
+
# KMS key for the DB cluster is accessed.
|
16639
|
+
#
|
16640
|
+
#
|
16641
|
+
#
|
16642
|
+
# [1]: https://docs.aws.amazon.com/glossary/latest/reference/glos-chap.html?id=docs_gateway#partition
|
16603
16643
|
# @return [String]
|
16604
16644
|
#
|
16605
16645
|
# @!attribute [rw] global_cluster_arn
|
@@ -18167,8 +18207,9 @@ module Aws::RDS
|
|
18167
18207
|
# the `PerformanceInsightsEnabled` parameter to `true` and the
|
18168
18208
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
18169
18209
|
#
|
18170
|
-
# If you change the value from `advanced` to `standard`, you
|
18171
|
-
# the `PerformanceInsightsEnabled` parameter to `
|
18210
|
+
# If you change the value from `advanced` to `standard`, you can set
|
18211
|
+
# the `PerformanceInsightsEnabled` parameter to `true` to collect
|
18212
|
+
# detailed database counter and per-query metrics.
|
18172
18213
|
#
|
18173
18214
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
18174
18215
|
# @return [String]
|
@@ -18421,6 +18462,24 @@ module Aws::RDS
|
|
18421
18462
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
18422
18463
|
# @return [String]
|
18423
18464
|
#
|
18465
|
+
# @!attribute [rw] master_user_authentication_type
|
18466
|
+
# Specifies the authentication type for the master user. With IAM
|
18467
|
+
# master user authentication, you can change the master DB user to use
|
18468
|
+
# IAM database authentication.
|
18469
|
+
#
|
18470
|
+
# You can specify one of the following values:
|
18471
|
+
#
|
18472
|
+
# * `password` - Use standard database authentication with a password.
|
18473
|
+
#
|
18474
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
18475
|
+
# user.
|
18476
|
+
#
|
18477
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
18478
|
+
#
|
18479
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
18480
|
+
# PostgreSQL engines.
|
18481
|
+
# @return [String]
|
18482
|
+
#
|
18424
18483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
18425
18484
|
#
|
18426
18485
|
class ModifyDBClusterMessage < Struct.new(
|
@@ -18469,7 +18528,8 @@ module Aws::RDS
|
|
18469
18528
|
:enable_local_write_forwarding,
|
18470
18529
|
:aws_backup_recovery_point_arn,
|
18471
18530
|
:enable_limitless_database,
|
18472
|
-
:ca_certificate_identifier
|
18531
|
+
:ca_certificate_identifier,
|
18532
|
+
:master_user_authentication_type)
|
18473
18533
|
SENSITIVE = []
|
18474
18534
|
include Aws::Structure
|
18475
18535
|
end
|
@@ -19849,6 +19909,22 @@ module Aws::RDS
|
|
19849
19909
|
# specify `ApplyImmediately`.
|
19850
19910
|
# @return [Boolean]
|
19851
19911
|
#
|
19912
|
+
# @!attribute [rw] master_user_authentication_type
|
19913
|
+
# Specifies the authentication type for the master user. With IAM
|
19914
|
+
# master user authentication, you can change the master DB user to use
|
19915
|
+
# IAM database authentication.
|
19916
|
+
#
|
19917
|
+
# You can specify one of the following values:
|
19918
|
+
#
|
19919
|
+
# * `password` - Use standard database authentication with a password.
|
19920
|
+
#
|
19921
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
19922
|
+
# user.
|
19923
|
+
#
|
19924
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
19925
|
+
# PostgreSQL engines.
|
19926
|
+
# @return [String]
|
19927
|
+
#
|
19852
19928
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
19853
19929
|
#
|
19854
19930
|
class ModifyDBInstanceMessage < Struct.new(
|
@@ -19912,7 +19988,8 @@ module Aws::RDS
|
|
19912
19988
|
:master_user_secret_kms_key_id,
|
19913
19989
|
:engine,
|
19914
19990
|
:dedicated_log_volume,
|
19915
|
-
:multi_tenant
|
19991
|
+
:multi_tenant,
|
19992
|
+
:master_user_authentication_type)
|
19916
19993
|
SENSITIVE = []
|
19917
19994
|
include Aws::Structure
|
19918
19995
|
end
|
@@ -21532,6 +21609,10 @@ module Aws::RDS
|
|
21532
21609
|
# volume (DLV).
|
21533
21610
|
# @return [Boolean]
|
21534
21611
|
#
|
21612
|
+
# @!attribute [rw] supports_http_endpoint
|
21613
|
+
# Indicates whether a DB instance supports HTTP endpoints.
|
21614
|
+
# @return [Boolean]
|
21615
|
+
#
|
21535
21616
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOption AWS API Documentation
|
21536
21617
|
#
|
21537
21618
|
class OrderableDBInstanceOption < Struct.new(
|
@@ -21570,7 +21651,8 @@ module Aws::RDS
|
|
21570
21651
|
:max_storage_throughput_per_db_instance,
|
21571
21652
|
:min_storage_throughput_per_iops,
|
21572
21653
|
:max_storage_throughput_per_iops,
|
21573
|
-
:supports_dedicated_log_volume
|
21654
|
+
:supports_dedicated_log_volume,
|
21655
|
+
:supports_http_endpoint)
|
21574
21656
|
SENSITIVE = []
|
21575
21657
|
include Aws::Structure
|
21576
21658
|
end
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -80,7 +80,7 @@ module Aws::RDS
|
|
80
80
|
autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
|
81
81
|
autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
|
82
82
|
|
83
|
-
GEM_VERSION = '1.
|
83
|
+
GEM_VERSION = '1.291.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -454,6 +454,7 @@ module Aws
|
|
454
454
|
?enable_local_write_forwarding: bool,
|
455
455
|
?ca_certificate_identifier: ::String,
|
456
456
|
?engine_lifecycle_support: ::String,
|
457
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
457
458
|
?source_region: ::String
|
458
459
|
) -> _CreateDBClusterResponseSuccess
|
459
460
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBClusterResponseSuccess
|
@@ -601,7 +602,8 @@ module Aws
|
|
601
602
|
?db_system_id: ::String,
|
602
603
|
?dedicated_log_volume: bool,
|
603
604
|
?multi_tenant: bool,
|
604
|
-
?engine_lifecycle_support: ::String
|
605
|
+
?engine_lifecycle_support: ::String,
|
606
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
605
607
|
) -> _CreateDBInstanceResponseSuccess
|
606
608
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBInstanceResponseSuccess
|
607
609
|
|
@@ -2347,7 +2349,8 @@ module Aws
|
|
2347
2349
|
?enable_local_write_forwarding: bool,
|
2348
2350
|
?aws_backup_recovery_point_arn: ::String,
|
2349
2351
|
?enable_limitless_database: bool,
|
2350
|
-
?ca_certificate_identifier: ::String
|
2352
|
+
?ca_certificate_identifier: ::String,
|
2353
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
2351
2354
|
) -> _ModifyDBClusterResponseSuccess
|
2352
2355
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBClusterResponseSuccess
|
2353
2356
|
|
@@ -2485,7 +2488,8 @@ module Aws
|
|
2485
2488
|
?master_user_secret_kms_key_id: ::String,
|
2486
2489
|
?engine: ::String,
|
2487
2490
|
?dedicated_log_volume: bool,
|
2488
|
-
?multi_tenant: bool
|
2491
|
+
?multi_tenant: bool,
|
2492
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
2489
2493
|
) -> _ModifyDBInstanceResponseSuccess
|
2490
2494
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBInstanceResponseSuccess
|
2491
2495
|
|
data/sig/db_cluster.rbs
CHANGED
@@ -357,6 +357,7 @@ module Aws
|
|
357
357
|
?enable_local_write_forwarding: bool,
|
358
358
|
?ca_certificate_identifier: ::String,
|
359
359
|
?engine_lifecycle_support: ::String,
|
360
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
360
361
|
?source_region: ::String
|
361
362
|
) -> DBCluster
|
362
363
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
@@ -447,7 +448,8 @@ module Aws
|
|
447
448
|
?enable_local_write_forwarding: bool,
|
448
449
|
?aws_backup_recovery_point_arn: ::String,
|
449
450
|
?enable_limitless_database: bool,
|
450
|
-
?ca_certificate_identifier: ::String
|
451
|
+
?ca_certificate_identifier: ::String,
|
452
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
451
453
|
) -> DBCluster
|
452
454
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
453
455
|
|
data/sig/db_instance.rbs
CHANGED
@@ -363,7 +363,8 @@ module Aws
|
|
363
363
|
?db_system_id: ::String,
|
364
364
|
?dedicated_log_volume: bool,
|
365
365
|
?multi_tenant: bool,
|
366
|
-
?engine_lifecycle_support: ::String
|
366
|
+
?engine_lifecycle_support: ::String,
|
367
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
367
368
|
) -> DBInstance
|
368
369
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
369
370
|
|
@@ -518,7 +519,8 @@ module Aws
|
|
518
519
|
?master_user_secret_kms_key_id: ::String,
|
519
520
|
?engine: ::String,
|
520
521
|
?dedicated_log_volume: bool,
|
521
|
-
?multi_tenant: bool
|
522
|
+
?multi_tenant: bool,
|
523
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
522
524
|
) -> DBInstance
|
523
525
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
524
526
|
|
data/sig/resource.rbs
CHANGED
@@ -158,6 +158,7 @@ module Aws
|
|
158
158
|
?enable_local_write_forwarding: bool,
|
159
159
|
?ca_certificate_identifier: ::String,
|
160
160
|
?engine_lifecycle_support: ::String,
|
161
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
161
162
|
?source_region: ::String
|
162
163
|
) -> DBCluster
|
163
164
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
@@ -251,7 +252,8 @@ module Aws
|
|
251
252
|
?db_system_id: ::String,
|
252
253
|
?dedicated_log_volume: bool,
|
253
254
|
?multi_tenant: bool,
|
254
|
-
?engine_lifecycle_support: ::String
|
255
|
+
?engine_lifecycle_support: ::String,
|
256
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
255
257
|
) -> DBInstance
|
256
258
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
257
259
|
|
data/sig/types.rbs
CHANGED
@@ -402,6 +402,7 @@ module Aws::RDS
|
|
402
402
|
attr_accessor enable_local_write_forwarding: bool
|
403
403
|
attr_accessor ca_certificate_identifier: ::String
|
404
404
|
attr_accessor engine_lifecycle_support: ::String
|
405
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
405
406
|
attr_accessor source_region: ::String
|
406
407
|
SENSITIVE: []
|
407
408
|
end
|
@@ -501,6 +502,7 @@ module Aws::RDS
|
|
501
502
|
attr_accessor dedicated_log_volume: bool
|
502
503
|
attr_accessor multi_tenant: bool
|
503
504
|
attr_accessor engine_lifecycle_support: ::String
|
505
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
504
506
|
SENSITIVE: []
|
505
507
|
end
|
506
508
|
|
@@ -2903,6 +2905,7 @@ module Aws::RDS
|
|
2903
2905
|
attr_accessor aws_backup_recovery_point_arn: ::String
|
2904
2906
|
attr_accessor enable_limitless_database: bool
|
2905
2907
|
attr_accessor ca_certificate_identifier: ::String
|
2908
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
2906
2909
|
SENSITIVE: []
|
2907
2910
|
end
|
2908
2911
|
|
@@ -2992,6 +2995,7 @@ module Aws::RDS
|
|
2992
2995
|
attr_accessor engine: ::String
|
2993
2996
|
attr_accessor dedicated_log_volume: bool
|
2994
2997
|
attr_accessor multi_tenant: bool
|
2998
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
2995
2999
|
SENSITIVE: []
|
2996
3000
|
end
|
2997
3001
|
|
@@ -3323,6 +3327,7 @@ module Aws::RDS
|
|
3323
3327
|
attr_accessor min_storage_throughput_per_iops: ::Float
|
3324
3328
|
attr_accessor max_storage_throughput_per_iops: ::Float
|
3325
3329
|
attr_accessor supports_dedicated_log_volume: bool
|
3330
|
+
attr_accessor supports_http_endpoint: bool
|
3326
3331
|
SENSITIVE: []
|
3327
3332
|
end
|
3328
3333
|
|