aws-sdk-rds 1.231.0 → 1.233.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +92 -22
- data/lib/aws-sdk-rds/db_cluster.rb +3 -3
- data/lib/aws-sdk-rds/db_instance.rb +48 -10
- data/lib/aws-sdk-rds/db_snapshot.rb +28 -4
- data/lib/aws-sdk-rds/resource.rb +23 -9
- data/lib/aws-sdk-rds/types.rb +95 -20
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 343a6185b940d022d192f42cc020cf45d7da67d3b8417e1c63aca4e6d89b573a
|
4
|
+
data.tar.gz: 2061f111de92e389e706acecabc94dfbbebba5b9be3ab368c1926b016c1c66e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2b1d64fb40d0c01bf8fd5105256481ff917c8397d8e4310cfc6264f41d2dbd5b519038bf7644a52b7c4b3cfdaef9862f81cebd38467907a6be583c7abee8ccc
|
7
|
+
data.tar.gz: 6ab32636fd5f8b9da32944e81f9d8e1767994b5dbc26c353c4740d6a057fcf0569adccac227fe5f44708a6deabbf6f68b7f9404911cb2f91ac4b14f64a398536
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.233.0 (2024-05-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updates Amazon RDS documentation for Aurora Postgres DBname.
|
8
|
+
|
9
|
+
1.232.0 (2024-05-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updates Amazon RDS documentation for Db2 license through AWS Marketplace.
|
13
|
+
|
4
14
|
1.231.0 (2024-05-20)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.233.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -617,12 +617,14 @@ module Aws::RDS
|
|
617
617
|
# Amazon RDS resources, or used in a Condition statement in an IAM
|
618
618
|
# policy for Amazon RDS.
|
619
619
|
#
|
620
|
-
# For an overview on tagging
|
621
|
-
# RDS Resources][1]
|
620
|
+
# For an overview on tagging your relational database resources, see
|
621
|
+
# [Tagging Amazon RDS Resources][1] or [Tagging Amazon Aurora and Amazon
|
622
|
+
# RDS Resources][2].
|
622
623
|
#
|
623
624
|
#
|
624
625
|
#
|
625
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
626
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
627
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
626
628
|
#
|
627
629
|
# @option params [required, String] :resource_name
|
628
630
|
# The Amazon RDS resource that the tags are added to. This value is an
|
@@ -2577,9 +2579,9 @@ module Aws::RDS
|
|
2577
2579
|
# Valid for Cluster Type: Aurora DB clusters only
|
2578
2580
|
#
|
2579
2581
|
# @option params [String] :database_name
|
2580
|
-
# The name for your database of up to 64 alphanumeric characters.
|
2581
|
-
#
|
2582
|
-
#
|
2582
|
+
# The name for your database of up to 64 alphanumeric characters. A
|
2583
|
+
# database named `postgres` is always created. If this parameter is
|
2584
|
+
# specified, an additional database with this name is created.
|
2583
2585
|
#
|
2584
2586
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2585
2587
|
#
|
@@ -4255,9 +4257,9 @@ module Aws::RDS
|
|
4255
4257
|
# Amazon Aurora PostgreSQL
|
4256
4258
|
#
|
4257
4259
|
# : The name of the database to create when the primary DB instance of
|
4258
|
-
# the Aurora PostgreSQL DB cluster is created.
|
4259
|
-
#
|
4260
|
-
#
|
4260
|
+
# the Aurora PostgreSQL DB cluster is created. A database named
|
4261
|
+
# `postgres` is always created. If this parameter is specified, an
|
4262
|
+
# additional database with this name is created.
|
4261
4263
|
#
|
4262
4264
|
# Constraints:
|
4263
4265
|
#
|
@@ -4352,8 +4354,8 @@ module Aws::RDS
|
|
4352
4354
|
# RDS for PostgreSQL
|
4353
4355
|
#
|
4354
4356
|
# : The name of the database to create when the DB instance is created.
|
4355
|
-
#
|
4356
|
-
#
|
4357
|
+
# A database named `postgres` is always created. If this parameter is
|
4358
|
+
# specified, an additional database with this name is created.
|
4357
4359
|
#
|
4358
4360
|
# Constraints:
|
4359
4361
|
#
|
@@ -4867,12 +4869,22 @@ module Aws::RDS
|
|
4867
4869
|
# @option params [String] :license_model
|
4868
4870
|
# The license model information for this DB instance.
|
4869
4871
|
#
|
4872
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
4873
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
4874
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
4875
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
4876
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
4877
|
+
#
|
4878
|
+
# The default for RDS for Db2 is `bring-your-own-license`.
|
4879
|
+
#
|
4880
|
+
# </note>
|
4881
|
+
#
|
4870
4882
|
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
4871
4883
|
# instances.
|
4872
4884
|
#
|
4873
4885
|
# Valid Values:
|
4874
4886
|
#
|
4875
|
-
# * RDS for Db2 - `bring-your-own-license`
|
4887
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
4876
4888
|
#
|
4877
4889
|
# * RDS for MariaDB - `general-public-license`
|
4878
4890
|
#
|
@@ -4884,6 +4896,10 @@ module Aws::RDS
|
|
4884
4896
|
#
|
4885
4897
|
# * RDS for PostgreSQL - `postgresql-license`
|
4886
4898
|
#
|
4899
|
+
#
|
4900
|
+
#
|
4901
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
4902
|
+
#
|
4887
4903
|
# @option params [Integer] :iops
|
4888
4904
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
4889
4905
|
# initially allocate for the DB instance. For information about valid
|
@@ -26662,12 +26678,36 @@ module Aws::RDS
|
|
26662
26678
|
# @option params [String] :license_model
|
26663
26679
|
# License model information for the restored DB instance.
|
26664
26680
|
#
|
26665
|
-
#
|
26681
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
26682
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
26683
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
26684
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
26685
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
26686
|
+
#
|
26687
|
+
# </note>
|
26688
|
+
#
|
26689
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
26690
|
+
# instances.
|
26691
|
+
#
|
26692
|
+
# Valid Values:
|
26693
|
+
#
|
26694
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
26695
|
+
#
|
26696
|
+
# * RDS for MariaDB - `general-public-license`
|
26697
|
+
#
|
26698
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
26699
|
+
#
|
26700
|
+
# * RDS for MySQL - `general-public-license`
|
26701
|
+
#
|
26702
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
26703
|
+
#
|
26704
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
26705
|
+
#
|
26706
|
+
# Default: Same as the source.
|
26707
|
+
#
|
26666
26708
|
#
|
26667
|
-
# Default: Same as source.
|
26668
26709
|
#
|
26669
|
-
#
|
26670
|
-
# `general-public-license`
|
26710
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
26671
26711
|
#
|
26672
26712
|
# @option params [String] :db_name
|
26673
26713
|
# The name of the database for the restored DB instance.
|
@@ -27721,8 +27761,14 @@ module Aws::RDS
|
|
27721
27761
|
# The prefix of your Amazon S3 bucket.
|
27722
27762
|
#
|
27723
27763
|
# @option params [required, String] :s3_ingestion_role_arn
|
27724
|
-
# An Amazon Web Services Identity and Access Management (IAM) role
|
27725
|
-
#
|
27764
|
+
# An Amazon Web Services Identity and Access Management (IAM) role with
|
27765
|
+
# a trust policy and a permissions policy that allows Amazon RDS to
|
27766
|
+
# access your Amazon S3 bucket. For information about this role, see [
|
27767
|
+
# Creating an IAM role manually][1] in the *Amazon RDS User Guide.*
|
27768
|
+
#
|
27769
|
+
#
|
27770
|
+
#
|
27771
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.html#MySQL.Procedural.Importing.Enabling.IAM
|
27726
27772
|
#
|
27727
27773
|
# @option params [Boolean] :enable_performance_insights
|
27728
27774
|
# Specifies whether to enable Performance Insights for the DB instance.
|
@@ -28321,13 +28367,37 @@ module Aws::RDS
|
|
28321
28367
|
# @option params [String] :license_model
|
28322
28368
|
# The license model information for the restored DB instance.
|
28323
28369
|
#
|
28324
|
-
#
|
28370
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
28371
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
28372
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
28373
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
28374
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
28375
|
+
#
|
28376
|
+
# </note>
|
28377
|
+
#
|
28378
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
28379
|
+
# instances.
|
28380
|
+
#
|
28381
|
+
# Valid Values:
|
28382
|
+
#
|
28383
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
28384
|
+
#
|
28385
|
+
# * RDS for MariaDB - `general-public-license`
|
28386
|
+
#
|
28387
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
28388
|
+
#
|
28389
|
+
# * RDS for MySQL - `general-public-license`
|
28390
|
+
#
|
28391
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
28325
28392
|
#
|
28326
|
-
#
|
28327
|
-
# `general-public-license`
|
28393
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
28328
28394
|
#
|
28329
28395
|
# Default: Same as the source.
|
28330
28396
|
#
|
28397
|
+
#
|
28398
|
+
#
|
28399
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
28400
|
+
#
|
28331
28401
|
# @option params [String] :db_name
|
28332
28402
|
# The database name for the restored DB instance.
|
28333
28403
|
#
|
@@ -31182,7 +31252,7 @@ module Aws::RDS
|
|
31182
31252
|
params: params,
|
31183
31253
|
config: config)
|
31184
31254
|
context[:gem_name] = 'aws-sdk-rds'
|
31185
|
-
context[:gem_version] = '1.
|
31255
|
+
context[:gem_version] = '1.233.0'
|
31186
31256
|
Seahorse::Client::Request.new(handlers, context)
|
31187
31257
|
end
|
31188
31258
|
|
@@ -972,9 +972,9 @@ module Aws::RDS
|
|
972
972
|
#
|
973
973
|
# Valid for Cluster Type: Aurora DB clusters only
|
974
974
|
# @option options [String] :database_name
|
975
|
-
# The name for your database of up to 64 alphanumeric characters.
|
976
|
-
#
|
977
|
-
#
|
975
|
+
# The name for your database of up to 64 alphanumeric characters. A
|
976
|
+
# database named `postgres` is always created. If this parameter is
|
977
|
+
# specified, an additional database with this name is created.
|
978
978
|
#
|
979
979
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
980
980
|
# @option options [String] :db_cluster_parameter_group_name
|
@@ -237,7 +237,7 @@ module Aws::RDS
|
|
237
237
|
end
|
238
238
|
|
239
239
|
# The license model information for this DB instance. This setting
|
240
|
-
# doesn't apply to RDS Custom DB instances.
|
240
|
+
# doesn't apply to Amazon Aurora or RDS Custom DB instances.
|
241
241
|
# @return [String]
|
242
242
|
def license_model
|
243
243
|
data[:license_model]
|
@@ -1029,9 +1029,9 @@ module Aws::RDS
|
|
1029
1029
|
# Amazon Aurora PostgreSQL
|
1030
1030
|
#
|
1031
1031
|
# : The name of the database to create when the primary DB instance of
|
1032
|
-
# the Aurora PostgreSQL DB cluster is created.
|
1033
|
-
#
|
1034
|
-
#
|
1032
|
+
# the Aurora PostgreSQL DB cluster is created. A database named
|
1033
|
+
# `postgres` is always created. If this parameter is specified, an
|
1034
|
+
# additional database with this name is created.
|
1035
1035
|
#
|
1036
1036
|
# Constraints:
|
1037
1037
|
#
|
@@ -1126,8 +1126,8 @@ module Aws::RDS
|
|
1126
1126
|
# RDS for PostgreSQL
|
1127
1127
|
#
|
1128
1128
|
# : The name of the database to create when the DB instance is created.
|
1129
|
-
#
|
1130
|
-
#
|
1129
|
+
# A database named `postgres` is always created. If this parameter is
|
1130
|
+
# specified, an additional database with this name is created.
|
1131
1131
|
#
|
1132
1132
|
# Constraints:
|
1133
1133
|
#
|
@@ -1609,12 +1609,22 @@ module Aws::RDS
|
|
1609
1609
|
# @option options [String] :license_model
|
1610
1610
|
# The license model information for this DB instance.
|
1611
1611
|
#
|
1612
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
1613
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
1614
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
1615
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
1616
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
1617
|
+
#
|
1618
|
+
# The default for RDS for Db2 is `bring-your-own-license`.
|
1619
|
+
#
|
1620
|
+
# </note>
|
1621
|
+
#
|
1612
1622
|
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
1613
1623
|
# instances.
|
1614
1624
|
#
|
1615
1625
|
# Valid Values:
|
1616
1626
|
#
|
1617
|
-
# * RDS for Db2 - `bring-your-own-license`
|
1627
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
1618
1628
|
#
|
1619
1629
|
# * RDS for MariaDB - `general-public-license`
|
1620
1630
|
#
|
@@ -1625,6 +1635,10 @@ module Aws::RDS
|
|
1625
1635
|
# * RDS for Oracle - `bring-your-own-license | license-included`
|
1626
1636
|
#
|
1627
1637
|
# * RDS for PostgreSQL - `postgresql-license`
|
1638
|
+
#
|
1639
|
+
#
|
1640
|
+
#
|
1641
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
1628
1642
|
# @option options [Integer] :iops
|
1629
1643
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
1630
1644
|
# initially allocate for the DB instance. For information about valid
|
@@ -4329,12 +4343,36 @@ module Aws::RDS
|
|
4329
4343
|
# @option options [String] :license_model
|
4330
4344
|
# The license model information for the restored DB instance.
|
4331
4345
|
#
|
4332
|
-
#
|
4346
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
4347
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
4348
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
4349
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
4350
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
4351
|
+
#
|
4352
|
+
# </note>
|
4333
4353
|
#
|
4334
|
-
#
|
4335
|
-
#
|
4354
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
4355
|
+
# instances.
|
4356
|
+
#
|
4357
|
+
# Valid Values:
|
4358
|
+
#
|
4359
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
4360
|
+
#
|
4361
|
+
# * RDS for MariaDB - `general-public-license`
|
4362
|
+
#
|
4363
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
4364
|
+
#
|
4365
|
+
# * RDS for MySQL - `general-public-license`
|
4366
|
+
#
|
4367
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
4368
|
+
#
|
4369
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
4336
4370
|
#
|
4337
4371
|
# Default: Same as the source.
|
4372
|
+
#
|
4373
|
+
#
|
4374
|
+
#
|
4375
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
4338
4376
|
# @option options [String] :db_name
|
4339
4377
|
# The database name for the restored DB instance.
|
4340
4378
|
#
|
@@ -791,12 +791,36 @@ module Aws::RDS
|
|
791
791
|
# @option options [String] :license_model
|
792
792
|
# License model information for the restored DB instance.
|
793
793
|
#
|
794
|
-
#
|
794
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
795
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
796
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
797
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
798
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
799
|
+
#
|
800
|
+
# </note>
|
801
|
+
#
|
802
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
803
|
+
# instances.
|
804
|
+
#
|
805
|
+
# Valid Values:
|
806
|
+
#
|
807
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
808
|
+
#
|
809
|
+
# * RDS for MariaDB - `general-public-license`
|
810
|
+
#
|
811
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
812
|
+
#
|
813
|
+
# * RDS for MySQL - `general-public-license`
|
814
|
+
#
|
815
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
816
|
+
#
|
817
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
818
|
+
#
|
819
|
+
# Default: Same as the source.
|
820
|
+
#
|
795
821
|
#
|
796
|
-
# Default: Same as source.
|
797
822
|
#
|
798
|
-
#
|
799
|
-
# `general-public-license`
|
823
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
800
824
|
# @option options [String] :db_name
|
801
825
|
# The name of the database for the restored DB instance.
|
802
826
|
#
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -150,9 +150,9 @@ module Aws::RDS
|
|
150
150
|
#
|
151
151
|
# Valid for Cluster Type: Aurora DB clusters only
|
152
152
|
# @option options [String] :database_name
|
153
|
-
# The name for your database of up to 64 alphanumeric characters.
|
154
|
-
#
|
155
|
-
#
|
153
|
+
# The name for your database of up to 64 alphanumeric characters. A
|
154
|
+
# database named `postgres` is always created. If this parameter is
|
155
|
+
# specified, an additional database with this name is created.
|
156
156
|
#
|
157
157
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
158
158
|
# @option options [required, String] :db_cluster_identifier
|
@@ -1151,9 +1151,9 @@ module Aws::RDS
|
|
1151
1151
|
# Amazon Aurora PostgreSQL
|
1152
1152
|
#
|
1153
1153
|
# : The name of the database to create when the primary DB instance of
|
1154
|
-
# the Aurora PostgreSQL DB cluster is created.
|
1155
|
-
#
|
1156
|
-
#
|
1154
|
+
# the Aurora PostgreSQL DB cluster is created. A database named
|
1155
|
+
# `postgres` is always created. If this parameter is specified, an
|
1156
|
+
# additional database with this name is created.
|
1157
1157
|
#
|
1158
1158
|
# Constraints:
|
1159
1159
|
#
|
@@ -1248,8 +1248,8 @@ module Aws::RDS
|
|
1248
1248
|
# RDS for PostgreSQL
|
1249
1249
|
#
|
1250
1250
|
# : The name of the database to create when the DB instance is created.
|
1251
|
-
#
|
1252
|
-
#
|
1251
|
+
# A database named `postgres` is always created. If this parameter is
|
1252
|
+
# specified, an additional database with this name is created.
|
1253
1253
|
#
|
1254
1254
|
# Constraints:
|
1255
1255
|
#
|
@@ -1744,12 +1744,22 @@ module Aws::RDS
|
|
1744
1744
|
# @option options [String] :license_model
|
1745
1745
|
# The license model information for this DB instance.
|
1746
1746
|
#
|
1747
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
1748
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
1749
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
1750
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
1751
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
1752
|
+
#
|
1753
|
+
# The default for RDS for Db2 is `bring-your-own-license`.
|
1754
|
+
#
|
1755
|
+
# </note>
|
1756
|
+
#
|
1747
1757
|
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
1748
1758
|
# instances.
|
1749
1759
|
#
|
1750
1760
|
# Valid Values:
|
1751
1761
|
#
|
1752
|
-
# * RDS for Db2 - `bring-your-own-license`
|
1762
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
1753
1763
|
#
|
1754
1764
|
# * RDS for MariaDB - `general-public-license`
|
1755
1765
|
#
|
@@ -1760,6 +1770,10 @@ module Aws::RDS
|
|
1760
1770
|
# * RDS for Oracle - `bring-your-own-license | license-included`
|
1761
1771
|
#
|
1762
1772
|
# * RDS for PostgreSQL - `postgresql-license`
|
1773
|
+
#
|
1774
|
+
#
|
1775
|
+
#
|
1776
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
1763
1777
|
# @option options [Integer] :iops
|
1764
1778
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
1765
1779
|
# initially allocate for the DB instance. For information about valid
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2098,9 +2098,9 @@ module Aws::RDS
|
|
2098
2098
|
# @return [String]
|
2099
2099
|
#
|
2100
2100
|
# @!attribute [rw] database_name
|
2101
|
-
# The name for your database of up to 64 alphanumeric characters.
|
2102
|
-
#
|
2103
|
-
#
|
2101
|
+
# The name for your database of up to 64 alphanumeric characters. A
|
2102
|
+
# database named `postgres` is always created. If this parameter is
|
2103
|
+
# specified, an additional database with this name is created.
|
2104
2104
|
#
|
2105
2105
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2106
2106
|
# @return [String]
|
@@ -3283,9 +3283,9 @@ module Aws::RDS
|
|
3283
3283
|
# Amazon Aurora PostgreSQL
|
3284
3284
|
#
|
3285
3285
|
# : The name of the database to create when the primary DB instance of
|
3286
|
-
# the Aurora PostgreSQL DB cluster is created.
|
3287
|
-
#
|
3288
|
-
#
|
3286
|
+
# the Aurora PostgreSQL DB cluster is created. A database named
|
3287
|
+
# `postgres` is always created. If this parameter is specified, an
|
3288
|
+
# additional database with this name is created.
|
3289
3289
|
#
|
3290
3290
|
# Constraints:
|
3291
3291
|
#
|
@@ -3381,8 +3381,9 @@ module Aws::RDS
|
|
3381
3381
|
# RDS for PostgreSQL
|
3382
3382
|
#
|
3383
3383
|
# : The name of the database to create when the DB instance is
|
3384
|
-
# created.
|
3385
|
-
#
|
3384
|
+
# created. A database named `postgres` is always created. If this
|
3385
|
+
# parameter is specified, an additional database with this name is
|
3386
|
+
# created.
|
3386
3387
|
#
|
3387
3388
|
# Constraints:
|
3388
3389
|
#
|
@@ -3919,12 +3920,23 @@ module Aws::RDS
|
|
3919
3920
|
# @!attribute [rw] license_model
|
3920
3921
|
# The license model information for this DB instance.
|
3921
3922
|
#
|
3923
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
3924
|
+
# Bring Your Own License (BYOL) model requires a custom parameter
|
3925
|
+
# group. The Db2 license through Amazon Web Services Marketplace model
|
3926
|
+
# requires an Amazon Web Services Marketplace subscription. For more
|
3927
|
+
# information, see [RDS for Db2 licensing options][1] in the *Amazon
|
3928
|
+
# RDS User Guide*.
|
3929
|
+
#
|
3930
|
+
# The default for RDS for Db2 is `bring-your-own-license`.
|
3931
|
+
#
|
3932
|
+
# </note>
|
3933
|
+
#
|
3922
3934
|
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
3923
3935
|
# instances.
|
3924
3936
|
#
|
3925
3937
|
# Valid Values:
|
3926
3938
|
#
|
3927
|
-
# * RDS for Db2 - `bring-your-own-license`
|
3939
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
3928
3940
|
#
|
3929
3941
|
# * RDS for MariaDB - `general-public-license`
|
3930
3942
|
#
|
@@ -3935,6 +3947,10 @@ module Aws::RDS
|
|
3935
3947
|
# * RDS for Oracle - `bring-your-own-license | license-included`
|
3936
3948
|
#
|
3937
3949
|
# * RDS for PostgreSQL - `postgresql-license`
|
3950
|
+
#
|
3951
|
+
#
|
3952
|
+
#
|
3953
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
3938
3954
|
# @return [String]
|
3939
3955
|
#
|
3940
3956
|
# @!attribute [rw] iops
|
@@ -8651,7 +8667,7 @@ module Aws::RDS
|
|
8651
8667
|
#
|
8652
8668
|
# @!attribute [rw] license_model
|
8653
8669
|
# The license model information for this DB instance. This setting
|
8654
|
-
# doesn't apply to RDS Custom DB instances.
|
8670
|
+
# doesn't apply to Amazon Aurora or RDS Custom DB instances.
|
8655
8671
|
# @return [String]
|
8656
8672
|
#
|
8657
8673
|
# @!attribute [rw] iops
|
@@ -24007,12 +24023,37 @@ module Aws::RDS
|
|
24007
24023
|
# @!attribute [rw] license_model
|
24008
24024
|
# License model information for the restored DB instance.
|
24009
24025
|
#
|
24010
|
-
#
|
24026
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
24027
|
+
# Bring Your Own License (BYOL) model requires a custom parameter
|
24028
|
+
# group. The Db2 license through Amazon Web Services Marketplace model
|
24029
|
+
# requires an Amazon Web Services Marketplace subscription. For more
|
24030
|
+
# information, see [RDS for Db2 licensing options][1] in the *Amazon
|
24031
|
+
# RDS User Guide*.
|
24011
24032
|
#
|
24012
|
-
#
|
24033
|
+
# </note>
|
24013
24034
|
#
|
24014
|
-
#
|
24015
|
-
#
|
24035
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
24036
|
+
# instances.
|
24037
|
+
#
|
24038
|
+
# Valid Values:
|
24039
|
+
#
|
24040
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
24041
|
+
#
|
24042
|
+
# * RDS for MariaDB - `general-public-license`
|
24043
|
+
#
|
24044
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
24045
|
+
#
|
24046
|
+
# * RDS for MySQL - `general-public-license`
|
24047
|
+
#
|
24048
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
24049
|
+
#
|
24050
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
24051
|
+
#
|
24052
|
+
# Default: Same as the source.
|
24053
|
+
#
|
24054
|
+
#
|
24055
|
+
#
|
24056
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
24016
24057
|
# @return [String]
|
24017
24058
|
#
|
24018
24059
|
# @!attribute [rw] db_name
|
@@ -24931,8 +24972,15 @@ module Aws::RDS
|
|
24931
24972
|
# @return [String]
|
24932
24973
|
#
|
24933
24974
|
# @!attribute [rw] s3_ingestion_role_arn
|
24934
|
-
# An Amazon Web Services Identity and Access Management (IAM) role
|
24935
|
-
#
|
24975
|
+
# An Amazon Web Services Identity and Access Management (IAM) role
|
24976
|
+
# with a trust policy and a permissions policy that allows Amazon RDS
|
24977
|
+
# to access your Amazon S3 bucket. For information about this role,
|
24978
|
+
# see [ Creating an IAM role manually][1] in the *Amazon RDS User
|
24979
|
+
# Guide.*
|
24980
|
+
#
|
24981
|
+
#
|
24982
|
+
#
|
24983
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.html#MySQL.Procedural.Importing.Enabling.IAM
|
24936
24984
|
# @return [String]
|
24937
24985
|
#
|
24938
24986
|
# @!attribute [rw] enable_performance_insights
|
@@ -25377,12 +25425,37 @@ module Aws::RDS
|
|
25377
25425
|
# @!attribute [rw] license_model
|
25378
25426
|
# The license model information for the restored DB instance.
|
25379
25427
|
#
|
25380
|
-
#
|
25428
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
25429
|
+
# Bring Your Own License (BYOL) model requires a custom parameter
|
25430
|
+
# group. The Db2 license through Amazon Web Services Marketplace model
|
25431
|
+
# requires an Amazon Web Services Marketplace subscription. For more
|
25432
|
+
# information, see [RDS for Db2 licensing options][1] in the *Amazon
|
25433
|
+
# RDS User Guide*.
|
25381
25434
|
#
|
25382
|
-
#
|
25383
|
-
#
|
25435
|
+
# </note>
|
25436
|
+
#
|
25437
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
25438
|
+
# instances.
|
25439
|
+
#
|
25440
|
+
# Valid Values:
|
25441
|
+
#
|
25442
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
25443
|
+
#
|
25444
|
+
# * RDS for MariaDB - `general-public-license`
|
25445
|
+
#
|
25446
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
25447
|
+
#
|
25448
|
+
# * RDS for MySQL - `general-public-license`
|
25449
|
+
#
|
25450
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
25451
|
+
#
|
25452
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
25384
25453
|
#
|
25385
25454
|
# Default: Same as the source.
|
25455
|
+
#
|
25456
|
+
#
|
25457
|
+
#
|
25458
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
25386
25459
|
# @return [String]
|
25387
25460
|
#
|
25388
25461
|
# @!attribute [rw] db_name
|
@@ -27164,11 +27237,13 @@ module Aws::RDS
|
|
27164
27237
|
# pair.
|
27165
27238
|
#
|
27166
27239
|
# For more information, see [Tagging Amazon RDS Resources][1] in the
|
27167
|
-
# *Amazon RDS User Guide
|
27240
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
27241
|
+
# Resources][2] in the *Amazon Aurora User Guide*.
|
27168
27242
|
#
|
27169
27243
|
#
|
27170
27244
|
#
|
27171
27245
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
27246
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
27172
27247
|
#
|
27173
27248
|
# @!attribute [rw] key
|
27174
27249
|
# A key is the required name of the tag. The string value can be from
|
data/lib/aws-sdk-rds.rb
CHANGED
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.
|
4
|
+
version: 1.233.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: 2024-05-
|
11
|
+
date: 2024-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|