aws-sdk-rds 1.63.0 → 1.64.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +226 -40
- data/lib/aws-sdk-rds/client_api.rb +1 -0
- data/lib/aws-sdk-rds/db_cluster.rb +88 -4
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +34 -0
- data/lib/aws-sdk-rds/db_instance.rb +52 -26
- data/lib/aws-sdk-rds/db_snapshot.rb +7 -5
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +2 -4
- data/lib/aws-sdk-rds/resource.rb +82 -5
- data/lib/aws-sdk-rds/types.rb +230 -42
- metadata +2 -2
@@ -662,6 +662,7 @@ module Aws::RDS
|
|
662
662
|
CreateDBClusterMessage.add_member(:scaling_configuration, Shapes::ShapeRef.new(shape: ScalingConfiguration, location_name: "ScalingConfiguration"))
|
663
663
|
CreateDBClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
664
664
|
CreateDBClusterMessage.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "GlobalClusterIdentifier"))
|
665
|
+
CreateDBClusterMessage.add_member(:enable_http_endpoint, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableHttpEndpoint"))
|
665
666
|
CreateDBClusterMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
666
667
|
CreateDBClusterMessage.add_member(:destination_region, Shapes::ShapeRef.new(shape: String, location_name: "DestinationRegion", metadata: {"documented"=>false}))
|
667
668
|
CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
@@ -593,6 +593,7 @@ module Aws::RDS
|
|
593
593
|
# },
|
594
594
|
# deletion_protection: false,
|
595
595
|
# global_cluster_identifier: "String",
|
596
|
+
# enable_http_endpoint: false,
|
596
597
|
# copy_tags_to_snapshot: false,
|
597
598
|
# source_region: "String",
|
598
599
|
# })
|
@@ -651,13 +652,32 @@ module Aws::RDS
|
|
651
652
|
# @option options [String] :engine_version
|
652
653
|
# The version number of the database engine to use.
|
653
654
|
#
|
655
|
+
# To list all of the available engine versions for `aurora` (for MySQL
|
656
|
+
# 5.6-compatible Aurora), use the following command:
|
657
|
+
#
|
658
|
+
# `aws rds describe-db-engine-versions --engine aurora --query
|
659
|
+
# "DBEngineVersions[].EngineVersion"`
|
660
|
+
#
|
661
|
+
# To list all of the available engine versions for `aurora-mysql` (for
|
662
|
+
# MySQL 5.7-compatible Aurora), use the following command:
|
663
|
+
#
|
664
|
+
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
665
|
+
# "DBEngineVersions[].EngineVersion"`
|
666
|
+
#
|
667
|
+
# To list all of the available engine versions for `aurora-postgresql`,
|
668
|
+
# use the following command:
|
669
|
+
#
|
670
|
+
# `aws rds describe-db-engine-versions --engine aurora-postgresql
|
671
|
+
# --query "DBEngineVersions[].EngineVersion"`
|
672
|
+
#
|
654
673
|
# **Aurora MySQL**
|
655
674
|
#
|
656
|
-
# Example: `5.6.10a`, `5.7.12
|
675
|
+
# Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`, `5.7.12`,
|
676
|
+
# `5.7.mysql_aurora.2.04.5`
|
657
677
|
#
|
658
678
|
# **Aurora PostgreSQL**
|
659
679
|
#
|
660
|
-
# Example: `9.6.3`
|
680
|
+
# Example: `9.6.3`, `10.7`
|
661
681
|
# @option options [Integer] :port
|
662
682
|
# The port number on which the instances in the DB cluster accept
|
663
683
|
# connections.
|
@@ -804,6 +824,13 @@ module Aws::RDS
|
|
804
824
|
# A value that indicates whether to enable mapping of AWS Identity and
|
805
825
|
# Access Management (IAM) accounts to database accounts. By default,
|
806
826
|
# mapping is disabled.
|
827
|
+
#
|
828
|
+
# For more information, see [ IAM Database Authentication][1] in the
|
829
|
+
# *Amazon Aurora User Guide.*
|
830
|
+
#
|
831
|
+
#
|
832
|
+
#
|
833
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
807
834
|
# @option options [Integer] :backtrack_window
|
808
835
|
# The target backtrack window, in seconds. To disable backtracking, set
|
809
836
|
# this value to 0.
|
@@ -838,6 +865,22 @@ module Aws::RDS
|
|
838
865
|
# @option options [String] :global_cluster_identifier
|
839
866
|
# The global cluster ID of an Aurora cluster that becomes the primary
|
840
867
|
# cluster in the new global database cluster.
|
868
|
+
# @option options [Boolean] :enable_http_endpoint
|
869
|
+
# A value that indicates whether to enable the HTTP endpoint for an
|
870
|
+
# Aurora Serverless DB cluster. By default, the HTTP endpoint is
|
871
|
+
# disabled.
|
872
|
+
#
|
873
|
+
# When enabled, the HTTP endpoint provides a connectionless web service
|
874
|
+
# API for running SQL queries on the Aurora Serverless DB cluster. You
|
875
|
+
# can also query your database from inside the RDS console with the
|
876
|
+
# query editor.
|
877
|
+
#
|
878
|
+
# For more information, see [Using the Data API for Aurora
|
879
|
+
# Serverless][1] in the *Amazon Aurora User Guide*.
|
880
|
+
#
|
881
|
+
#
|
882
|
+
#
|
883
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
|
841
884
|
# @option options [Boolean] :copy_tags_to_snapshot
|
842
885
|
# A value that indicates whether to copy all tags from the DB cluster to
|
843
886
|
# snapshots of the DB cluster. The default is not to copy them.
|
@@ -1112,6 +1155,13 @@ module Aws::RDS
|
|
1112
1155
|
# A value that indicates whether to enable mapping of AWS Identity and
|
1113
1156
|
# Access Management (IAM) accounts to database accounts. By default,
|
1114
1157
|
# mapping is disabled.
|
1158
|
+
#
|
1159
|
+
# For more information, see [ IAM Database Authentication][1] in the
|
1160
|
+
# *Amazon Aurora User Guide.*
|
1161
|
+
#
|
1162
|
+
#
|
1163
|
+
#
|
1164
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
1115
1165
|
# @option options [Integer] :backtrack_window
|
1116
1166
|
# The target backtrack window, in seconds. To disable backtracking, set
|
1117
1167
|
# this value to 0.
|
@@ -1133,7 +1183,23 @@ module Aws::RDS
|
|
1133
1183
|
# applied during the next maintenance window unless `ApplyImmediately`
|
1134
1184
|
# is enabled.
|
1135
1185
|
#
|
1136
|
-
#
|
1186
|
+
# To list all of the available engine versions for `aurora` (for MySQL
|
1187
|
+
# 5.6-compatible Aurora), use the following command:
|
1188
|
+
#
|
1189
|
+
# `aws rds describe-db-engine-versions --engine aurora --query
|
1190
|
+
# "DBEngineVersions[].EngineVersion"`
|
1191
|
+
#
|
1192
|
+
# To list all of the available engine versions for `aurora-mysql` (for
|
1193
|
+
# MySQL 5.7-compatible Aurora), use the following command:
|
1194
|
+
#
|
1195
|
+
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
1196
|
+
# "DBEngineVersions[].EngineVersion"`
|
1197
|
+
#
|
1198
|
+
# To list all of the available engine versions for `aurora-postgresql`,
|
1199
|
+
# use the following command:
|
1200
|
+
#
|
1201
|
+
# `aws rds describe-db-engine-versions --engine aurora-postgresql
|
1202
|
+
# --query "DBEngineVersions[].EngineVersion"`
|
1137
1203
|
# @option options [Boolean] :allow_major_version_upgrade
|
1138
1204
|
# A value that indicates whether major version upgrades are allowed.
|
1139
1205
|
#
|
@@ -1330,6 +1396,13 @@ module Aws::RDS
|
|
1330
1396
|
# A value that indicates whether to enable mapping of AWS Identity and
|
1331
1397
|
# Access Management (IAM) accounts to database accounts. By default,
|
1332
1398
|
# mapping is disabled.
|
1399
|
+
#
|
1400
|
+
# For more information, see [ IAM Database Authentication][1] in the
|
1401
|
+
# *Amazon Aurora User Guide.*
|
1402
|
+
#
|
1403
|
+
#
|
1404
|
+
#
|
1405
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
1333
1406
|
# @option options [Integer] :backtrack_window
|
1334
1407
|
# The target backtrack window, in seconds. To disable backtracking, set
|
1335
1408
|
# this value to 0.
|
@@ -1550,7 +1623,18 @@ module Aws::RDS
|
|
1550
1623
|
# `IncludeShared` parameter doesn't apply when `SnapshotType` is set to
|
1551
1624
|
# `public`.
|
1552
1625
|
# @option options [Array<Types::Filter>] :filters
|
1553
|
-
#
|
1626
|
+
# A filter that specifies one or more DB cluster snapshots to describe.
|
1627
|
+
#
|
1628
|
+
# Supported filters:
|
1629
|
+
#
|
1630
|
+
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
1631
|
+
# Amazon Resource Names (ARNs).
|
1632
|
+
#
|
1633
|
+
# * `db-cluster-snapshot-id` - Accepts DB cluster snapshot identifiers.
|
1634
|
+
#
|
1635
|
+
# * `snapshot-type` - Accepts types of DB cluster snapshots.
|
1636
|
+
#
|
1637
|
+
# * `engine` - Accepts names of database engines.
|
1554
1638
|
# @option options [Integer] :max_records
|
1555
1639
|
# The maximum number of records to include in the response. If more
|
1556
1640
|
# records exist than the specified `MaxRecords` value, a pagination
|
@@ -511,6 +511,33 @@ module Aws::RDS
|
|
511
511
|
# Constraint: Must be compatible with the engine of the source
|
512
512
|
# @option options [String] :engine_version
|
513
513
|
# The version of the database engine to use for the new DB cluster.
|
514
|
+
#
|
515
|
+
# To list all of the available engine versions for `aurora` (for MySQL
|
516
|
+
# 5.6-compatible Aurora), use the following command:
|
517
|
+
#
|
518
|
+
# `aws rds describe-db-engine-versions --engine aurora --query
|
519
|
+
# "DBEngineVersions[].EngineVersion"`
|
520
|
+
#
|
521
|
+
# To list all of the available engine versions for `aurora-mysql` (for
|
522
|
+
# MySQL 5.7-compatible Aurora), use the following command:
|
523
|
+
#
|
524
|
+
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
525
|
+
# "DBEngineVersions[].EngineVersion"`
|
526
|
+
#
|
527
|
+
# To list all of the available engine versions for `aurora-postgresql`,
|
528
|
+
# use the following command:
|
529
|
+
#
|
530
|
+
# `aws rds describe-db-engine-versions --engine aurora-postgresql
|
531
|
+
# --query "DBEngineVersions[].EngineVersion"`
|
532
|
+
#
|
533
|
+
# **Aurora MySQL**
|
534
|
+
#
|
535
|
+
# Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`, `5.7.12`,
|
536
|
+
# `5.7.mysql_aurora.2.04.5`
|
537
|
+
#
|
538
|
+
# **Aurora PostgreSQL**
|
539
|
+
#
|
540
|
+
# Example: `9.6.3`, `10.7`
|
514
541
|
# @option options [Integer] :port
|
515
542
|
# The port number on which the new DB cluster accepts connections.
|
516
543
|
#
|
@@ -555,6 +582,13 @@ module Aws::RDS
|
|
555
582
|
# A value that indicates whether to enable mapping of AWS Identity and
|
556
583
|
# Access Management (IAM) accounts to database accounts. By default,
|
557
584
|
# mapping is disabled.
|
585
|
+
#
|
586
|
+
# For more information, see [ IAM Database Authentication][1] in the
|
587
|
+
# *Amazon Aurora User Guide.*
|
588
|
+
#
|
589
|
+
#
|
590
|
+
#
|
591
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
558
592
|
# @option options [Integer] :backtrack_window
|
559
593
|
# The target backtrack window, in seconds. To disable backtracking, set
|
560
594
|
# this value to 0.
|
@@ -1191,8 +1191,8 @@ module Aws::RDS
|
|
1191
1191
|
# @option options [Integer] :iops
|
1192
1192
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
1193
1193
|
# be initially allocated for the DB instance. For information about
|
1194
|
-
# valid Iops values, see
|
1195
|
-
#
|
1194
|
+
# valid Iops values, see [Amazon RDS Provisioned IOPS Storage to Improve
|
1195
|
+
# Performance][1] in the *Amazon RDS User Guide*.
|
1196
1196
|
#
|
1197
1197
|
# Constraints: Must be a multiple between 1 and 50 of the storage amount
|
1198
1198
|
# for the DB instance.
|
@@ -1374,6 +1374,23 @@ module Aws::RDS
|
|
1374
1374
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
1375
1375
|
#
|
1376
1376
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
1377
|
+
#
|
1378
|
+
# * For MySQL 8.0, minor version 8.0.16 or higher
|
1379
|
+
#
|
1380
|
+
# **PostgreSQL**
|
1381
|
+
#
|
1382
|
+
# * For PostgreSQL 9.5, minor version 9.5.15 or higher
|
1383
|
+
#
|
1384
|
+
# * For PostgreSQL 9.6, minor version 9.6.11 or higher
|
1385
|
+
#
|
1386
|
+
# * PostgreSQL 10.6, 10.7, and 10.9
|
1387
|
+
#
|
1388
|
+
# For more information, see [ IAM Database Authentication for MySQL and
|
1389
|
+
# PostgreSQL][1] in the *Amazon RDS User Guide.*
|
1390
|
+
#
|
1391
|
+
#
|
1392
|
+
#
|
1393
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
1377
1394
|
# @option options [Boolean] :enable_performance_insights
|
1378
1395
|
# A value that indicates whether to enable Performance Insights for the
|
1379
1396
|
# DB instance.
|
@@ -1674,16 +1691,16 @@ module Aws::RDS
|
|
1674
1691
|
# @option options [Boolean] :enable_iam_database_authentication
|
1675
1692
|
# A value that indicates whether to enable mapping of AWS Identity and
|
1676
1693
|
# Access Management (IAM) accounts to database accounts. By default,
|
1677
|
-
# mapping is disabled.
|
1694
|
+
# mapping is disabled. For information about the supported DB engines,
|
1695
|
+
# see CreateDBInstance.
|
1678
1696
|
#
|
1679
|
-
#
|
1680
|
-
#
|
1697
|
+
# For more information about IAM database authentication, see [ IAM
|
1698
|
+
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
1699
|
+
# RDS User Guide.*
|
1681
1700
|
#
|
1682
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
1683
1701
|
#
|
1684
|
-
# * For MySQL 5.7, minor version 5.7.16 or higher
|
1685
1702
|
#
|
1686
|
-
#
|
1703
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
1687
1704
|
# @option options [Boolean] :enable_performance_insights
|
1688
1705
|
# A value that indicates whether to enable Performance Insights for the
|
1689
1706
|
# Read Replica.
|
@@ -2367,22 +2384,16 @@ module Aws::RDS
|
|
2367
2384
|
# @option options [Boolean] :enable_iam_database_authentication
|
2368
2385
|
# A value that indicates whether to enable mapping of AWS Identity and
|
2369
2386
|
# Access Management (IAM) accounts to database accounts. By default,
|
2370
|
-
# mapping is disabled.
|
2387
|
+
# mapping is disabled. For information about the supported DB engines,
|
2388
|
+
# see CreateDBInstance.
|
2371
2389
|
#
|
2372
|
-
#
|
2373
|
-
#
|
2374
|
-
#
|
2375
|
-
# **Amazon Aurora**
|
2376
|
-
#
|
2377
|
-
# Not applicable. Mapping AWS IAM accounts to database accounts is
|
2378
|
-
# managed by the DB cluster. For more information, see
|
2379
|
-
# `ModifyDBCluster`.
|
2390
|
+
# For more information about IAM database authentication, see [ IAM
|
2391
|
+
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
2392
|
+
# RDS User Guide.*
|
2380
2393
|
#
|
2381
|
-
# **MySQL**
|
2382
2394
|
#
|
2383
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
2384
2395
|
#
|
2385
|
-
#
|
2396
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
2386
2397
|
# @option options [Boolean] :enable_performance_insights
|
2387
2398
|
# A value that indicates whether to enable Performance Insights for the
|
2388
2399
|
# DB instance.
|
@@ -2742,14 +2753,16 @@ module Aws::RDS
|
|
2742
2753
|
# @option options [Boolean] :enable_iam_database_authentication
|
2743
2754
|
# A value that indicates whether to enable mapping of AWS Identity and
|
2744
2755
|
# Access Management (IAM) accounts to database accounts. By default,
|
2745
|
-
# mapping is disabled.
|
2756
|
+
# mapping is disabled. For information about the supported DB engines,
|
2757
|
+
# see CreateDBInstance.
|
2746
2758
|
#
|
2747
|
-
#
|
2748
|
-
#
|
2759
|
+
# For more information about IAM database authentication, see [ IAM
|
2760
|
+
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
2761
|
+
# RDS User Guide.*
|
2749
2762
|
#
|
2750
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
2751
2763
|
#
|
2752
|
-
#
|
2764
|
+
#
|
2765
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
2753
2766
|
# @option options [Array<String>] :enable_cloudwatch_logs_exports
|
2754
2767
|
# The list of logs that the restored DB instance is to export to
|
2755
2768
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
@@ -3162,7 +3175,20 @@ module Aws::RDS
|
|
3162
3175
|
#
|
3163
3176
|
# [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/whatisbackup.html
|
3164
3177
|
# @option options [Array<Types::Filter>] :filters
|
3165
|
-
#
|
3178
|
+
# A filter that specifies one or more DB snapshots to describe.
|
3179
|
+
#
|
3180
|
+
# Supported filters:
|
3181
|
+
#
|
3182
|
+
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
3183
|
+
# Amazon Resource Names (ARNs).
|
3184
|
+
#
|
3185
|
+
# * `db-snapshot-id` - Accepts DB snapshot identifiers.
|
3186
|
+
#
|
3187
|
+
# * `dbi-resource-id` - Accepts identifiers of source DB instances.
|
3188
|
+
#
|
3189
|
+
# * `snapshot-type` - Accepts types of DB snapshots.
|
3190
|
+
#
|
3191
|
+
# * `engine` - Accepts names of database engines.
|
3166
3192
|
# @option options [Boolean] :include_shared
|
3167
3193
|
# A value that indicates whether to include shared manual DB cluster
|
3168
3194
|
# snapshots from other AWS accounts that this AWS account has been given
|
@@ -747,14 +747,16 @@ module Aws::RDS
|
|
747
747
|
# @option options [Boolean] :enable_iam_database_authentication
|
748
748
|
# A value that indicates whether to enable mapping of AWS Identity and
|
749
749
|
# Access Management (IAM) accounts to database accounts. By default,
|
750
|
-
# mapping is disabled.
|
750
|
+
# mapping is disabled. For information about the supported DB engines,
|
751
|
+
# see CreateDBInstance.
|
751
752
|
#
|
752
|
-
#
|
753
|
-
#
|
753
|
+
# For more information about IAM database authentication, see [ IAM
|
754
|
+
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
755
|
+
# RDS User Guide.*
|
754
756
|
#
|
755
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
756
757
|
#
|
757
|
-
#
|
758
|
+
#
|
759
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
758
760
|
# @option options [Array<String>] :enable_cloudwatch_logs_exports
|
759
761
|
# The list of logs that the restored DB instance is to export to
|
760
762
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
@@ -41,8 +41,7 @@ module Aws::RDS
|
|
41
41
|
|
42
42
|
# The date of the maintenance window when the action is applied. The
|
43
43
|
# maintenance action is applied to the resource during its first
|
44
|
-
# maintenance window after this date.
|
45
|
-
# `next-maintenance` opt-in requests are ignored.
|
44
|
+
# maintenance window after this date.
|
46
45
|
# @return [Time]
|
47
46
|
def auto_applied_after_date
|
48
47
|
data[:auto_applied_after_date]
|
@@ -50,8 +49,7 @@ module Aws::RDS
|
|
50
49
|
|
51
50
|
# The date when the maintenance action is automatically applied. The
|
52
51
|
# maintenance action is applied to the resource on this date regardless
|
53
|
-
# of the maintenance window for the resource.
|
54
|
-
# any `immediate` opt-in requests are ignored.
|
52
|
+
# of the maintenance window for the resource.
|
55
53
|
# @return [Time]
|
56
54
|
def forced_apply_date
|
57
55
|
data[:forced_apply_date]
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -63,6 +63,7 @@ module Aws::RDS
|
|
63
63
|
# },
|
64
64
|
# deletion_protection: false,
|
65
65
|
# global_cluster_identifier: "String",
|
66
|
+
# enable_http_endpoint: false,
|
66
67
|
# copy_tags_to_snapshot: false,
|
67
68
|
# source_region: "String",
|
68
69
|
# })
|
@@ -134,13 +135,32 @@ module Aws::RDS
|
|
134
135
|
# @option options [String] :engine_version
|
135
136
|
# The version number of the database engine to use.
|
136
137
|
#
|
138
|
+
# To list all of the available engine versions for `aurora` (for MySQL
|
139
|
+
# 5.6-compatible Aurora), use the following command:
|
140
|
+
#
|
141
|
+
# `aws rds describe-db-engine-versions --engine aurora --query
|
142
|
+
# "DBEngineVersions[].EngineVersion"`
|
143
|
+
#
|
144
|
+
# To list all of the available engine versions for `aurora-mysql` (for
|
145
|
+
# MySQL 5.7-compatible Aurora), use the following command:
|
146
|
+
#
|
147
|
+
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
148
|
+
# "DBEngineVersions[].EngineVersion"`
|
149
|
+
#
|
150
|
+
# To list all of the available engine versions for `aurora-postgresql`,
|
151
|
+
# use the following command:
|
152
|
+
#
|
153
|
+
# `aws rds describe-db-engine-versions --engine aurora-postgresql
|
154
|
+
# --query "DBEngineVersions[].EngineVersion"`
|
155
|
+
#
|
137
156
|
# **Aurora MySQL**
|
138
157
|
#
|
139
|
-
# Example: `5.6.10a`, `5.7.12
|
158
|
+
# Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`, `5.7.12`,
|
159
|
+
# `5.7.mysql_aurora.2.04.5`
|
140
160
|
#
|
141
161
|
# **Aurora PostgreSQL**
|
142
162
|
#
|
143
|
-
# Example: `9.6.3`
|
163
|
+
# Example: `9.6.3`, `10.7`
|
144
164
|
# @option options [Integer] :port
|
145
165
|
# The port number on which the instances in the DB cluster accept
|
146
166
|
# connections.
|
@@ -287,6 +307,13 @@ module Aws::RDS
|
|
287
307
|
# A value that indicates whether to enable mapping of AWS Identity and
|
288
308
|
# Access Management (IAM) accounts to database accounts. By default,
|
289
309
|
# mapping is disabled.
|
310
|
+
#
|
311
|
+
# For more information, see [ IAM Database Authentication][1] in the
|
312
|
+
# *Amazon Aurora User Guide.*
|
313
|
+
#
|
314
|
+
#
|
315
|
+
#
|
316
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
|
290
317
|
# @option options [Integer] :backtrack_window
|
291
318
|
# The target backtrack window, in seconds. To disable backtracking, set
|
292
319
|
# this value to 0.
|
@@ -321,6 +348,22 @@ module Aws::RDS
|
|
321
348
|
# @option options [String] :global_cluster_identifier
|
322
349
|
# The global cluster ID of an Aurora cluster that becomes the primary
|
323
350
|
# cluster in the new global database cluster.
|
351
|
+
# @option options [Boolean] :enable_http_endpoint
|
352
|
+
# A value that indicates whether to enable the HTTP endpoint for an
|
353
|
+
# Aurora Serverless DB cluster. By default, the HTTP endpoint is
|
354
|
+
# disabled.
|
355
|
+
#
|
356
|
+
# When enabled, the HTTP endpoint provides a connectionless web service
|
357
|
+
# API for running SQL queries on the Aurora Serverless DB cluster. You
|
358
|
+
# can also query your database from inside the RDS console with the
|
359
|
+
# query editor.
|
360
|
+
#
|
361
|
+
# For more information, see [Using the Data API for Aurora
|
362
|
+
# Serverless][1] in the *Amazon Aurora User Guide*.
|
363
|
+
#
|
364
|
+
#
|
365
|
+
#
|
366
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
|
324
367
|
# @option options [Boolean] :copy_tags_to_snapshot
|
325
368
|
# A value that indicates whether to copy all tags from the DB cluster to
|
326
369
|
# snapshots of the DB cluster. The default is not to copy them.
|
@@ -985,8 +1028,8 @@ module Aws::RDS
|
|
985
1028
|
# @option options [Integer] :iops
|
986
1029
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
987
1030
|
# be initially allocated for the DB instance. For information about
|
988
|
-
# valid Iops values, see
|
989
|
-
#
|
1031
|
+
# valid Iops values, see [Amazon RDS Provisioned IOPS Storage to Improve
|
1032
|
+
# Performance][1] in the *Amazon RDS User Guide*.
|
990
1033
|
#
|
991
1034
|
# Constraints: Must be a multiple between 1 and 50 of the storage amount
|
992
1035
|
# for the DB instance.
|
@@ -1168,6 +1211,23 @@ module Aws::RDS
|
|
1168
1211
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
1169
1212
|
#
|
1170
1213
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
1214
|
+
#
|
1215
|
+
# * For MySQL 8.0, minor version 8.0.16 or higher
|
1216
|
+
#
|
1217
|
+
# **PostgreSQL**
|
1218
|
+
#
|
1219
|
+
# * For PostgreSQL 9.5, minor version 9.5.15 or higher
|
1220
|
+
#
|
1221
|
+
# * For PostgreSQL 9.6, minor version 9.6.11 or higher
|
1222
|
+
#
|
1223
|
+
# * PostgreSQL 10.6, 10.7, and 10.9
|
1224
|
+
#
|
1225
|
+
# For more information, see [ IAM Database Authentication for MySQL and
|
1226
|
+
# PostgreSQL][1] in the *Amazon RDS User Guide.*
|
1227
|
+
#
|
1228
|
+
#
|
1229
|
+
#
|
1230
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
1171
1231
|
# @option options [Boolean] :enable_performance_insights
|
1172
1232
|
# A value that indicates whether to enable Performance Insights for the
|
1173
1233
|
# DB instance.
|
@@ -1853,6 +1913,10 @@ module Aws::RDS
|
|
1853
1913
|
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
1854
1914
|
# Amazon Resource Names (ARNs). The results list will only include
|
1855
1915
|
# information about the DB instances identified by these ARNs.
|
1916
|
+
#
|
1917
|
+
# * `dbi-resource-id` - Accepts DB instance resource identifiers. The
|
1918
|
+
# results list will only include information about the DB instances
|
1919
|
+
# identified by these resource identifiers.
|
1856
1920
|
# @return [DBInstance::Collection]
|
1857
1921
|
def db_instances(options = {})
|
1858
1922
|
batches = Enumerator.new do |y|
|
@@ -2054,7 +2118,20 @@ module Aws::RDS
|
|
2054
2118
|
#
|
2055
2119
|
# [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/whatisbackup.html
|
2056
2120
|
# @option options [Array<Types::Filter>] :filters
|
2057
|
-
#
|
2121
|
+
# A filter that specifies one or more DB snapshots to describe.
|
2122
|
+
#
|
2123
|
+
# Supported filters:
|
2124
|
+
#
|
2125
|
+
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
2126
|
+
# Amazon Resource Names (ARNs).
|
2127
|
+
#
|
2128
|
+
# * `db-snapshot-id` - Accepts DB snapshot identifiers.
|
2129
|
+
#
|
2130
|
+
# * `dbi-resource-id` - Accepts identifiers of source DB instances.
|
2131
|
+
#
|
2132
|
+
# * `snapshot-type` - Accepts types of DB snapshots.
|
2133
|
+
#
|
2134
|
+
# * `engine` - Accepts names of database engines.
|
2058
2135
|
# @option options [Boolean] :include_shared
|
2059
2136
|
# A value that indicates whether to include shared manual DB cluster
|
2060
2137
|
# snapshots from other AWS accounts that this AWS account has been given
|