aws-sdk-rds 1.141.0 → 1.144.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +309 -532
- data/lib/aws-sdk-rds/client_api.rb +16 -175
- data/lib/aws-sdk-rds/db_cluster.rb +100 -43
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +18 -4
- data/lib/aws-sdk-rds/db_instance.rb +25 -26
- data/lib/aws-sdk-rds/db_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/errors.rb +0 -44
- data/lib/aws-sdk-rds/resource.rb +46 -30
- data/lib/aws-sdk-rds/types.rb +374 -660
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1063,7 +1063,7 @@ module Aws::RDS
|
|
1063
1063
|
# * If the source snapshot is in a different Amazon Web Services
|
1064
1064
|
# Region than the copy, specify a valid DB cluster snapshot ARN. For
|
1065
1065
|
# more information, go to [ Copying Snapshots Across Amazon Web
|
1066
|
-
# Services Regions][1] in the *Amazon Aurora User Guide
|
1066
|
+
# Services Regions][1] in the *Amazon Aurora User Guide*.
|
1067
1067
|
#
|
1068
1068
|
# Example: `my-cluster-snapshot1`
|
1069
1069
|
#
|
@@ -1486,7 +1486,7 @@ module Aws::RDS
|
|
1486
1486
|
# Data Encryption for Oracle or Microsoft SQL Server, you must specify
|
1487
1487
|
# this option when copying across Amazon Web Services Regions. For
|
1488
1488
|
# more information, see [Option group considerations][1] in the
|
1489
|
-
# *Amazon RDS User Guide
|
1489
|
+
# *Amazon RDS User Guide*.
|
1490
1490
|
#
|
1491
1491
|
#
|
1492
1492
|
#
|
@@ -1612,70 +1612,6 @@ module Aws::RDS
|
|
1612
1612
|
include Aws::Structure
|
1613
1613
|
end
|
1614
1614
|
|
1615
|
-
# @note When making an API call, you may pass CreateCustomAvailabilityZoneMessage
|
1616
|
-
# data as a hash:
|
1617
|
-
#
|
1618
|
-
# {
|
1619
|
-
# custom_availability_zone_name: "String", # required
|
1620
|
-
# existing_vpn_id: "String",
|
1621
|
-
# new_vpn_tunnel_name: "String",
|
1622
|
-
# vpn_tunnel_originator_ip: "String",
|
1623
|
-
# }
|
1624
|
-
#
|
1625
|
-
# @!attribute [rw] custom_availability_zone_name
|
1626
|
-
# The name of the custom Availability Zone (AZ).
|
1627
|
-
# @return [String]
|
1628
|
-
#
|
1629
|
-
# @!attribute [rw] existing_vpn_id
|
1630
|
-
# The ID of an existing virtual private network (VPN) between the
|
1631
|
-
# Amazon RDS website and the VMware vSphere cluster.
|
1632
|
-
# @return [String]
|
1633
|
-
#
|
1634
|
-
# @!attribute [rw] new_vpn_tunnel_name
|
1635
|
-
# The name of a new VPN tunnel between the Amazon RDS website and the
|
1636
|
-
# VMware vSphere cluster.
|
1637
|
-
#
|
1638
|
-
# Specify this parameter only if `ExistingVpnId` isn't specified.
|
1639
|
-
# @return [String]
|
1640
|
-
#
|
1641
|
-
# @!attribute [rw] vpn_tunnel_originator_ip
|
1642
|
-
# The IP address of network traffic from your on-premises data center.
|
1643
|
-
# A custom AZ receives the network traffic.
|
1644
|
-
#
|
1645
|
-
# Specify this parameter only if `ExistingVpnId` isn't specified.
|
1646
|
-
# @return [String]
|
1647
|
-
#
|
1648
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomAvailabilityZoneMessage AWS API Documentation
|
1649
|
-
#
|
1650
|
-
class CreateCustomAvailabilityZoneMessage < Struct.new(
|
1651
|
-
:custom_availability_zone_name,
|
1652
|
-
:existing_vpn_id,
|
1653
|
-
:new_vpn_tunnel_name,
|
1654
|
-
:vpn_tunnel_originator_ip)
|
1655
|
-
SENSITIVE = []
|
1656
|
-
include Aws::Structure
|
1657
|
-
end
|
1658
|
-
|
1659
|
-
# @!attribute [rw] custom_availability_zone
|
1660
|
-
# A custom Availability Zone (AZ) is an on-premises AZ that is
|
1661
|
-
# integrated with a VMware vSphere cluster.
|
1662
|
-
#
|
1663
|
-
# For more information about RDS on VMware, see the [ RDS on VMware
|
1664
|
-
# User Guide.][1]
|
1665
|
-
#
|
1666
|
-
#
|
1667
|
-
#
|
1668
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
|
1669
|
-
# @return [Types::CustomAvailabilityZone]
|
1670
|
-
#
|
1671
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomAvailabilityZoneResult AWS API Documentation
|
1672
|
-
#
|
1673
|
-
class CreateCustomAvailabilityZoneResult < Struct.new(
|
1674
|
-
:custom_availability_zone)
|
1675
|
-
SENSITIVE = []
|
1676
|
-
include Aws::Structure
|
1677
|
-
end
|
1678
|
-
|
1679
1615
|
# @note When making an API call, you may pass CreateCustomDBEngineVersionMessage
|
1680
1616
|
# data as a hash:
|
1681
1617
|
#
|
@@ -1926,6 +1862,10 @@ module Aws::RDS
|
|
1926
1862
|
# enable_performance_insights: false,
|
1927
1863
|
# performance_insights_kms_key_id: "String",
|
1928
1864
|
# performance_insights_retention_period: 1,
|
1865
|
+
# serverless_v2_scaling_configuration: {
|
1866
|
+
# min_capacity: 1.0,
|
1867
|
+
# max_capacity: 1.0,
|
1868
|
+
# },
|
1929
1869
|
# source_region: "String",
|
1930
1870
|
# }
|
1931
1871
|
#
|
@@ -2080,22 +2020,22 @@ module Aws::RDS
|
|
2080
2020
|
# **Aurora MySQL**
|
2081
2021
|
#
|
2082
2022
|
# For information, see [MySQL on Amazon RDS Versions][1] in the
|
2083
|
-
# *Amazon Aurora User Guide
|
2023
|
+
# *Amazon Aurora User Guide*.
|
2084
2024
|
#
|
2085
2025
|
# **Aurora PostgreSQL**
|
2086
2026
|
#
|
2087
2027
|
# For information, see [Amazon Aurora PostgreSQL releases and engine
|
2088
|
-
# versions][2] in the *Amazon Aurora User Guide
|
2028
|
+
# versions][2] in the *Amazon Aurora User Guide*.
|
2089
2029
|
#
|
2090
2030
|
# **MySQL**
|
2091
2031
|
#
|
2092
2032
|
# For information, see [MySQL on Amazon RDS Versions][3] in the
|
2093
|
-
# *Amazon RDS User Guide
|
2033
|
+
# *Amazon RDS User Guide*.
|
2094
2034
|
#
|
2095
2035
|
# **PostgreSQL**
|
2096
2036
|
#
|
2097
2037
|
# For information, see [Amazon RDS for PostgreSQL versions and
|
2098
|
-
# extensions][4] in the *Amazon RDS User Guide
|
2038
|
+
# extensions][4] in the *Amazon RDS User Guide*.
|
2099
2039
|
#
|
2100
2040
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2101
2041
|
#
|
@@ -2165,7 +2105,7 @@ module Aws::RDS
|
|
2165
2105
|
# The default is a 30-minute window selected at random from an 8-hour
|
2166
2106
|
# block of time for each Amazon Web Services Region. To view the time
|
2167
2107
|
# blocks available, see [ Backup window][1] in the *Amazon Aurora User
|
2168
|
-
# Guide
|
2108
|
+
# Guide*.
|
2169
2109
|
#
|
2170
2110
|
# Constraints:
|
2171
2111
|
#
|
@@ -2194,7 +2134,7 @@ module Aws::RDS
|
|
2194
2134
|
# block of time for each Amazon Web Services Region, occurring on a
|
2195
2135
|
# random day of the week. To see the time blocks available, see [
|
2196
2136
|
# Adjusting the Preferred DB Cluster Maintenance Window][1] in the
|
2197
|
-
# *Amazon Aurora User Guide
|
2137
|
+
# *Amazon Aurora User Guide*.
|
2198
2138
|
#
|
2199
2139
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
2200
2140
|
#
|
@@ -2318,7 +2258,7 @@ module Aws::RDS
|
|
2318
2258
|
# accounts. By default, mapping isn't enabled.
|
2319
2259
|
#
|
2320
2260
|
# For more information, see [ IAM Database Authentication][1] in the
|
2321
|
-
# *Amazon Aurora User Guide
|
2261
|
+
# *Amazon Aurora User Guide.*.
|
2322
2262
|
#
|
2323
2263
|
# Valid for: Aurora DB clusters only
|
2324
2264
|
#
|
@@ -2366,7 +2306,7 @@ module Aws::RDS
|
|
2366
2306
|
#
|
2367
2307
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
2368
2308
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
2369
|
-
# *Amazon
|
2309
|
+
# *Amazon RDS User Guide*.
|
2370
2310
|
#
|
2371
2311
|
# For more information about exporting CloudWatch Logs for Amazon
|
2372
2312
|
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
@@ -2403,7 +2343,7 @@ module Aws::RDS
|
|
2403
2343
|
# information, see the following sections in the *Amazon Aurora User
|
2404
2344
|
# Guide*\:
|
2405
2345
|
#
|
2406
|
-
# * [ Limitations of Aurora Serverless][1]
|
2346
|
+
# * [ Limitations of Aurora Serverless v1][1]
|
2407
2347
|
#
|
2408
2348
|
# * [ Limitations of Parallel Query][2]
|
2409
2349
|
#
|
@@ -2446,16 +2386,16 @@ module Aws::RDS
|
|
2446
2386
|
#
|
2447
2387
|
# @!attribute [rw] enable_http_endpoint
|
2448
2388
|
# A value that indicates whether to enable the HTTP endpoint for an
|
2449
|
-
# Aurora Serverless DB cluster. By default, the HTTP endpoint is
|
2389
|
+
# Aurora Serverless v1 DB cluster. By default, the HTTP endpoint is
|
2450
2390
|
# disabled.
|
2451
2391
|
#
|
2452
2392
|
# When enabled, the HTTP endpoint provides a connectionless web
|
2453
|
-
# service API for running SQL queries on the Aurora Serverless DB
|
2393
|
+
# service API for running SQL queries on the Aurora Serverless v1 DB
|
2454
2394
|
# cluster. You can also query your database from inside the RDS
|
2455
2395
|
# console with the query editor.
|
2456
2396
|
#
|
2457
|
-
# For more information, see [Using the Data API for Aurora
|
2458
|
-
#
|
2397
|
+
# For more information, see [Using the Data API for Aurora Serverless
|
2398
|
+
# v1][1] in the *Amazon Aurora User Guide*.
|
2459
2399
|
#
|
2460
2400
|
# Valid for: Aurora DB clusters only
|
2461
2401
|
#
|
@@ -2519,7 +2459,7 @@ module Aws::RDS
|
|
2519
2459
|
# database engines.
|
2520
2460
|
#
|
2521
2461
|
# For the full list of DB instance classes and availability for your
|
2522
|
-
# engine, see [DB instance class][1] in the *Amazon RDS User Guide
|
2462
|
+
# engine, see [DB instance class][1] in the *Amazon RDS User Guide*.
|
2523
2463
|
#
|
2524
2464
|
# This setting is required to create a Multi-AZ DB cluster.
|
2525
2465
|
#
|
@@ -2688,6 +2628,18 @@ module Aws::RDS
|
|
2688
2628
|
# Valid for: Multi-AZ DB clusters only
|
2689
2629
|
# @return [Integer]
|
2690
2630
|
#
|
2631
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
2632
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
2633
|
+
# cluster.
|
2634
|
+
#
|
2635
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
2636
|
+
# the *Amazon Aurora User Guide*.
|
2637
|
+
#
|
2638
|
+
#
|
2639
|
+
#
|
2640
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
2641
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
2642
|
+
#
|
2691
2643
|
# @!attribute [rw] source_region
|
2692
2644
|
# The source region of the snapshot. This is only needed when the
|
2693
2645
|
# shapshot is encrypted and in a different region.
|
@@ -2740,6 +2692,7 @@ module Aws::RDS
|
|
2740
2692
|
:enable_performance_insights,
|
2741
2693
|
:performance_insights_kms_key_id,
|
2742
2694
|
:performance_insights_retention_period,
|
2695
|
+
:serverless_v2_scaling_configuration,
|
2743
2696
|
:source_region)
|
2744
2697
|
SENSITIVE = []
|
2745
2698
|
include Aws::Structure
|
@@ -3278,7 +3231,7 @@ module Aws::RDS
|
|
3278
3231
|
# db.m4.large. Not all DB instance classes are available in all Amazon
|
3279
3232
|
# Web Services Regions, or for all database engines. For the full list
|
3280
3233
|
# of DB instance classes, and availability for your engine, see [DB
|
3281
|
-
# Instance Class][1] in the *Amazon RDS User Guide
|
3234
|
+
# Instance Class][1] in the *Amazon RDS User Guide*.
|
3282
3235
|
#
|
3283
3236
|
#
|
3284
3237
|
#
|
@@ -3408,7 +3361,10 @@ module Aws::RDS
|
|
3408
3361
|
#
|
3409
3362
|
# **Amazon Aurora**
|
3410
3363
|
#
|
3411
|
-
#
|
3364
|
+
# Each Aurora DB cluster hosts copies of its storage in three separate
|
3365
|
+
# Availability Zones. Specify one of these Availability Zones. Aurora
|
3366
|
+
# automatically chooses an appropriate Availability Zone if you don't
|
3367
|
+
# specify one.
|
3412
3368
|
#
|
3413
3369
|
# Default: A random, system-chosen Availability Zone in the
|
3414
3370
|
# endpoint's Amazon Web Services Region.
|
@@ -3608,37 +3564,37 @@ module Aws::RDS
|
|
3608
3564
|
# setting is required for RDS Custom for Oracle. The CEV name has the
|
3609
3565
|
# following format: `19.customized_string `. An example identifier is
|
3610
3566
|
# `19.my_cev1`. For more information, see [ Creating an RDS Custom for
|
3611
|
-
# Oracle DB instance][1] in the *Amazon RDS User Guide
|
3567
|
+
# Oracle DB instance][1] in the *Amazon RDS User Guide*.
|
3612
3568
|
#
|
3613
3569
|
# **Amazon RDS Custom for SQL Server**
|
3614
3570
|
#
|
3615
3571
|
# See [RDS Custom for SQL Server general requirements][2] in the
|
3616
|
-
# *Amazon RDS User Guide
|
3572
|
+
# *Amazon RDS User Guide*.
|
3617
3573
|
#
|
3618
3574
|
# **MariaDB**
|
3619
3575
|
#
|
3620
3576
|
# For information, see [MariaDB on Amazon RDS Versions][3] in the
|
3621
|
-
# *Amazon RDS User Guide
|
3577
|
+
# *Amazon RDS User Guide*.
|
3622
3578
|
#
|
3623
3579
|
# **Microsoft SQL Server**
|
3624
3580
|
#
|
3625
3581
|
# For information, see [Microsoft SQL Server Versions on Amazon
|
3626
|
-
# RDS][4] in the *Amazon RDS User Guide
|
3582
|
+
# RDS][4] in the *Amazon RDS User Guide*.
|
3627
3583
|
#
|
3628
3584
|
# **MySQL**
|
3629
3585
|
#
|
3630
3586
|
# For information, see [MySQL on Amazon RDS Versions][5] in the
|
3631
|
-
# *Amazon RDS User Guide
|
3587
|
+
# *Amazon RDS User Guide*.
|
3632
3588
|
#
|
3633
3589
|
# **Oracle**
|
3634
3590
|
#
|
3635
3591
|
# For information, see [Oracle Database Engine Release Notes][6] in
|
3636
|
-
# the *Amazon RDS User Guide
|
3592
|
+
# the *Amazon RDS User Guide*.
|
3637
3593
|
#
|
3638
3594
|
# **PostgreSQL**
|
3639
3595
|
#
|
3640
3596
|
# For information, see [Amazon RDS for PostgreSQL versions and
|
3641
|
-
# extensions][7] in the *Amazon RDS User Guide
|
3597
|
+
# extensions][7] in the *Amazon RDS User Guide*.
|
3642
3598
|
#
|
3643
3599
|
#
|
3644
3600
|
#
|
@@ -3931,7 +3887,7 @@ module Aws::RDS
|
|
3931
3887
|
# accounts is managed by the DB cluster.
|
3932
3888
|
#
|
3933
3889
|
# For more information, see [ IAM Database Authentication for MySQL
|
3934
|
-
# and PostgreSQL][1] in the *Amazon RDS User Guide
|
3890
|
+
# and PostgreSQL][1] in the *Amazon RDS User Guide*.
|
3935
3891
|
#
|
3936
3892
|
#
|
3937
3893
|
#
|
@@ -3941,7 +3897,7 @@ module Aws::RDS
|
|
3941
3897
|
# @!attribute [rw] enable_performance_insights
|
3942
3898
|
# A value that indicates whether to enable Performance Insights for
|
3943
3899
|
# the DB instance. For more information, see [Using Amazon Performance
|
3944
|
-
# Insights][1] in the *Amazon
|
3900
|
+
# Insights][1] in the *Amazon RDS User Guide*.
|
3945
3901
|
#
|
3946
3902
|
# This setting doesn't apply to RDS Custom.
|
3947
3903
|
#
|
@@ -3976,8 +3932,8 @@ module Aws::RDS
|
|
3976
3932
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
3977
3933
|
# The list of log types that need to be enabled for exporting to
|
3978
3934
|
# CloudWatch Logs. The values in the list depend on the DB engine. For
|
3979
|
-
# more information, see [Publishing Database Logs to Amazon
|
3980
|
-
# Logs][1] in the *Amazon
|
3935
|
+
# more information, see [ Publishing Database Logs to Amazon
|
3936
|
+
# CloudWatch Logs][1] in the *Amazon RDS User Guide*.
|
3981
3937
|
#
|
3982
3938
|
# **Amazon Aurora**
|
3983
3939
|
#
|
@@ -4091,8 +4047,7 @@ module Aws::RDS
|
|
4091
4047
|
# start with the prefix `AWSRDSCustom`.
|
4092
4048
|
#
|
4093
4049
|
# For the list of permissions required for the IAM role, see [
|
4094
|
-
# Configure IAM and your VPC][1] in the *Amazon
|
4095
|
-
# Service User Guide*.
|
4050
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
4096
4051
|
#
|
4097
4052
|
# This setting is required for RDS Custom.
|
4098
4053
|
#
|
@@ -4277,7 +4232,7 @@ module Aws::RDS
|
|
4277
4232
|
# db.m4.large. Not all DB instance classes are available in all Amazon
|
4278
4233
|
# Web Services Regions, or for all database engines. For the full list
|
4279
4234
|
# of DB instance classes, and availability for your engine, see [DB
|
4280
|
-
# Instance Class][1] in the *Amazon RDS User Guide
|
4235
|
+
# Instance Class][1] in the *Amazon RDS User Guide*.
|
4281
4236
|
#
|
4282
4237
|
# Default: Inherits from the source DB instance.
|
4283
4238
|
#
|
@@ -4581,7 +4536,7 @@ module Aws::RDS
|
|
4581
4536
|
#
|
4582
4537
|
# For more information about IAM database authentication, see [ IAM
|
4583
4538
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
4584
|
-
# RDS User Guide
|
4539
|
+
# RDS User Guide*.
|
4585
4540
|
#
|
4586
4541
|
# This setting doesn't apply to RDS Custom.
|
4587
4542
|
#
|
@@ -4742,8 +4697,7 @@ module Aws::RDS
|
|
4742
4697
|
# start with the prefix `AWSRDSCustom`.
|
4743
4698
|
#
|
4744
4699
|
# For the list of permissions required for the IAM role, see [
|
4745
|
-
# Configure IAM and your VPC][1] in the *Amazon
|
4746
|
-
# Service User Guide*.
|
4700
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
4747
4701
|
#
|
4748
4702
|
# This setting is required for RDS Custom.
|
4749
4703
|
#
|
@@ -5662,75 +5616,6 @@ module Aws::RDS
|
|
5662
5616
|
include Aws::Structure
|
5663
5617
|
end
|
5664
5618
|
|
5665
|
-
# A custom Availability Zone (AZ) is an on-premises AZ that is
|
5666
|
-
# integrated with a VMware vSphere cluster.
|
5667
|
-
#
|
5668
|
-
# For more information about RDS on VMware, see the [ RDS on VMware User
|
5669
|
-
# Guide.][1]
|
5670
|
-
#
|
5671
|
-
#
|
5672
|
-
#
|
5673
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
|
5674
|
-
#
|
5675
|
-
# @!attribute [rw] custom_availability_zone_id
|
5676
|
-
# The identifier of the custom AZ.
|
5677
|
-
#
|
5678
|
-
# Amazon RDS generates a unique identifier when a custom AZ is
|
5679
|
-
# created.
|
5680
|
-
# @return [String]
|
5681
|
-
#
|
5682
|
-
# @!attribute [rw] custom_availability_zone_name
|
5683
|
-
# The name of the custom AZ.
|
5684
|
-
# @return [String]
|
5685
|
-
#
|
5686
|
-
# @!attribute [rw] custom_availability_zone_status
|
5687
|
-
# The status of the custom AZ.
|
5688
|
-
# @return [String]
|
5689
|
-
#
|
5690
|
-
# @!attribute [rw] vpn_details
|
5691
|
-
# Information about the virtual private network (VPN) between the
|
5692
|
-
# VMware vSphere cluster and the Amazon Web Services website.
|
5693
|
-
# @return [Types::VpnDetails]
|
5694
|
-
#
|
5695
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomAvailabilityZone AWS API Documentation
|
5696
|
-
#
|
5697
|
-
class CustomAvailabilityZone < Struct.new(
|
5698
|
-
:custom_availability_zone_id,
|
5699
|
-
:custom_availability_zone_name,
|
5700
|
-
:custom_availability_zone_status,
|
5701
|
-
:vpn_details)
|
5702
|
-
SENSITIVE = []
|
5703
|
-
include Aws::Structure
|
5704
|
-
end
|
5705
|
-
|
5706
|
-
# `CustomAvailabilityZoneName` is already used by an existing custom
|
5707
|
-
# Availability Zone.
|
5708
|
-
#
|
5709
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomAvailabilityZoneAlreadyExistsFault AWS API Documentation
|
5710
|
-
#
|
5711
|
-
class CustomAvailabilityZoneAlreadyExistsFault < Aws::EmptyStructure; end
|
5712
|
-
|
5713
|
-
# @!attribute [rw] marker
|
5714
|
-
# An optional pagination token provided by a previous
|
5715
|
-
# `DescribeCustomAvailabilityZones` request. If this parameter is
|
5716
|
-
# specified, the response includes only records beyond the marker, up
|
5717
|
-
# to the value specified by `MaxRecords`.
|
5718
|
-
# @return [String]
|
5719
|
-
#
|
5720
|
-
# @!attribute [rw] custom_availability_zones
|
5721
|
-
# The list of CustomAvailabilityZone objects for the Amazon Web
|
5722
|
-
# Services account.
|
5723
|
-
# @return [Array<Types::CustomAvailabilityZone>]
|
5724
|
-
#
|
5725
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomAvailabilityZoneMessage AWS API Documentation
|
5726
|
-
#
|
5727
|
-
class CustomAvailabilityZoneMessage < Struct.new(
|
5728
|
-
:marker,
|
5729
|
-
:custom_availability_zones)
|
5730
|
-
SENSITIVE = []
|
5731
|
-
include Aws::Structure
|
5732
|
-
end
|
5733
|
-
|
5734
5619
|
# `CustomAvailabilityZoneId` doesn't refer to an existing custom
|
5735
5620
|
# Availability Zone identifier.
|
5736
5621
|
#
|
@@ -5738,12 +5623,6 @@ module Aws::RDS
|
|
5738
5623
|
#
|
5739
5624
|
class CustomAvailabilityZoneNotFoundFault < Aws::EmptyStructure; end
|
5740
5625
|
|
5741
|
-
# You have exceeded the maximum number of custom Availability Zones.
|
5742
|
-
#
|
5743
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomAvailabilityZoneQuotaExceededFault AWS API Documentation
|
5744
|
-
#
|
5745
|
-
class CustomAvailabilityZoneQuotaExceededFault < Aws::EmptyStructure; end
|
5746
|
-
|
5747
5626
|
# A CEV with the specified name already exists.
|
5748
5627
|
#
|
5749
5628
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomDBEngineVersionAlreadyExistsFault AWS API Documentation
|
@@ -6016,11 +5895,11 @@ module Aws::RDS
|
|
6016
5895
|
# @return [Array<String>]
|
6017
5896
|
#
|
6018
5897
|
# @!attribute [rw] capacity
|
6019
|
-
# The current capacity of an Aurora Serverless DB cluster. The
|
5898
|
+
# The current capacity of an Aurora Serverless v1 DB cluster. The
|
6020
5899
|
# capacity is 0 (zero) when the cluster is paused.
|
6021
5900
|
#
|
6022
|
-
# For more information about Aurora Serverless, see [Using Amazon
|
6023
|
-
# Aurora Serverless][1] in the *Amazon Aurora User Guide*.
|
5901
|
+
# For more information about Aurora Serverless v1, see [Using Amazon
|
5902
|
+
# Aurora Serverless v1][1] in the *Amazon Aurora User Guide*.
|
6024
5903
|
#
|
6025
5904
|
#
|
6026
5905
|
#
|
@@ -6042,8 +5921,8 @@ module Aws::RDS
|
|
6042
5921
|
# Shows the scaling configuration for an Aurora DB cluster in
|
6043
5922
|
# `serverless` DB engine mode.
|
6044
5923
|
#
|
6045
|
-
# For more information, see [Using Amazon Aurora Serverless][1] in
|
6046
|
-
# *Amazon Aurora User Guide*.
|
5924
|
+
# For more information, see [Using Amazon Aurora Serverless v1][1] in
|
5925
|
+
# the *Amazon Aurora User Guide*.
|
6047
5926
|
#
|
6048
5927
|
#
|
6049
5928
|
#
|
@@ -6057,15 +5936,15 @@ module Aws::RDS
|
|
6057
5936
|
#
|
6058
5937
|
# @!attribute [rw] http_endpoint_enabled
|
6059
5938
|
# A value that indicates whether the HTTP endpoint for an Aurora
|
6060
|
-
# Serverless DB cluster is enabled.
|
5939
|
+
# Serverless v1 DB cluster is enabled.
|
6061
5940
|
#
|
6062
5941
|
# When enabled, the HTTP endpoint provides a connectionless web
|
6063
|
-
# service API for running SQL queries on the Aurora Serverless DB
|
5942
|
+
# service API for running SQL queries on the Aurora Serverless v1 DB
|
6064
5943
|
# cluster. You can also query your database from inside the RDS
|
6065
5944
|
# console with the query editor.
|
6066
5945
|
#
|
6067
|
-
# For more information, see [Using the Data API for Aurora
|
6068
|
-
#
|
5946
|
+
# For more information, see [Using the Data API for Aurora Serverless
|
5947
|
+
# v1][1] in the *Amazon Aurora User Guide*.
|
6069
5948
|
#
|
6070
5949
|
#
|
6071
5950
|
#
|
@@ -6224,6 +6103,18 @@ module Aws::RDS
|
|
6224
6103
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
6225
6104
|
# @return [Integer]
|
6226
6105
|
#
|
6106
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
6107
|
+
# Shows the scaling configuration for an Aurora Serverless v2 DB
|
6108
|
+
# cluster.
|
6109
|
+
#
|
6110
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
6111
|
+
# the *Amazon Aurora User Guide*.
|
6112
|
+
#
|
6113
|
+
#
|
6114
|
+
#
|
6115
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
6116
|
+
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
6117
|
+
#
|
6227
6118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
|
6228
6119
|
#
|
6229
6120
|
class DBCluster < Struct.new(
|
@@ -6293,7 +6184,8 @@ module Aws::RDS
|
|
6293
6184
|
:monitoring_role_arn,
|
6294
6185
|
:performance_insights_enabled,
|
6295
6186
|
:performance_insights_kms_key_id,
|
6296
|
-
:performance_insights_retention_period
|
6187
|
+
:performance_insights_retention_period,
|
6188
|
+
:serverless_v2_scaling_configuration)
|
6297
6189
|
SENSITIVE = []
|
6298
6190
|
include Aws::Structure
|
6299
6191
|
end
|
@@ -6672,9 +6564,9 @@ module Aws::RDS
|
|
6672
6564
|
#
|
6673
6565
|
# @!attribute [rw] marker
|
6674
6566
|
# An optional pagination token provided by a previous
|
6675
|
-
# DescribeDBClusterParameters request. If this parameter is
|
6676
|
-
# the response includes only records beyond the marker, up
|
6677
|
-
# value specified by `MaxRecords
|
6567
|
+
# `DescribeDBClusterParameters` request. If this parameter is
|
6568
|
+
# specified, the response includes only records beyond the marker, up
|
6569
|
+
# to the value specified by `MaxRecords`.
|
6678
6570
|
# @return [String]
|
6679
6571
|
#
|
6680
6572
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterParameterGroupDetails AWS API Documentation
|
@@ -7760,8 +7652,7 @@ module Aws::RDS
|
|
7760
7652
|
# start with the prefix `AWSRDSCustom`.
|
7761
7653
|
#
|
7762
7654
|
# For the list of permissions required for the IAM role, see [
|
7763
|
-
# Configure IAM and your VPC][1] in the *Amazon
|
7764
|
-
# Service User Guide*.
|
7655
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
7765
7656
|
#
|
7766
7657
|
#
|
7767
7658
|
#
|
@@ -8042,7 +7933,7 @@ module Aws::RDS
|
|
8042
7933
|
# @!attribute [rw] marker
|
8043
7934
|
# An optional pagination token provided by a previous request. If this
|
8044
7935
|
# parameter is specified, the response includes only records beyond
|
8045
|
-
# the marker, up to the value specified by `MaxRecords
|
7936
|
+
# the marker, up to the value specified by `MaxRecords`.
|
8046
7937
|
# @return [String]
|
8047
7938
|
#
|
8048
7939
|
# @!attribute [rw] db_instance_automated_backups
|
@@ -9273,45 +9164,6 @@ module Aws::RDS
|
|
9273
9164
|
#
|
9274
9165
|
class DBUpgradeDependencyFailureFault < Aws::EmptyStructure; end
|
9275
9166
|
|
9276
|
-
# @note When making an API call, you may pass DeleteCustomAvailabilityZoneMessage
|
9277
|
-
# data as a hash:
|
9278
|
-
#
|
9279
|
-
# {
|
9280
|
-
# custom_availability_zone_id: "String", # required
|
9281
|
-
# }
|
9282
|
-
#
|
9283
|
-
# @!attribute [rw] custom_availability_zone_id
|
9284
|
-
# The custom AZ identifier.
|
9285
|
-
# @return [String]
|
9286
|
-
#
|
9287
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomAvailabilityZoneMessage AWS API Documentation
|
9288
|
-
#
|
9289
|
-
class DeleteCustomAvailabilityZoneMessage < Struct.new(
|
9290
|
-
:custom_availability_zone_id)
|
9291
|
-
SENSITIVE = []
|
9292
|
-
include Aws::Structure
|
9293
|
-
end
|
9294
|
-
|
9295
|
-
# @!attribute [rw] custom_availability_zone
|
9296
|
-
# A custom Availability Zone (AZ) is an on-premises AZ that is
|
9297
|
-
# integrated with a VMware vSphere cluster.
|
9298
|
-
#
|
9299
|
-
# For more information about RDS on VMware, see the [ RDS on VMware
|
9300
|
-
# User Guide.][1]
|
9301
|
-
#
|
9302
|
-
#
|
9303
|
-
#
|
9304
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
|
9305
|
-
# @return [Types::CustomAvailabilityZone]
|
9306
|
-
#
|
9307
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomAvailabilityZoneResult AWS API Documentation
|
9308
|
-
#
|
9309
|
-
class DeleteCustomAvailabilityZoneResult < Struct.new(
|
9310
|
-
:custom_availability_zone)
|
9311
|
-
SENSITIVE = []
|
9312
|
-
include Aws::Structure
|
9313
|
-
end
|
9314
|
-
|
9315
9167
|
# @note When making an API call, you may pass DeleteCustomDBEngineVersionMessage
|
9316
9168
|
# data as a hash:
|
9317
9169
|
#
|
@@ -9930,25 +9782,6 @@ module Aws::RDS
|
|
9930
9782
|
include Aws::Structure
|
9931
9783
|
end
|
9932
9784
|
|
9933
|
-
# @note When making an API call, you may pass DeleteInstallationMediaMessage
|
9934
|
-
# data as a hash:
|
9935
|
-
#
|
9936
|
-
# {
|
9937
|
-
# installation_media_id: "String", # required
|
9938
|
-
# }
|
9939
|
-
#
|
9940
|
-
# @!attribute [rw] installation_media_id
|
9941
|
-
# The installation medium ID.
|
9942
|
-
# @return [String]
|
9943
|
-
#
|
9944
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteInstallationMediaMessage AWS API Documentation
|
9945
|
-
#
|
9946
|
-
class DeleteInstallationMediaMessage < Struct.new(
|
9947
|
-
:installation_media_id)
|
9948
|
-
SENSITIVE = []
|
9949
|
-
include Aws::Structure
|
9950
|
-
end
|
9951
|
-
|
9952
9785
|
# @note When making an API call, you may pass DeleteOptionGroupMessage
|
9953
9786
|
# data as a hash:
|
9954
9787
|
#
|
@@ -10080,59 +9913,6 @@ module Aws::RDS
|
|
10080
9913
|
include Aws::Structure
|
10081
9914
|
end
|
10082
9915
|
|
10083
|
-
# @note When making an API call, you may pass DescribeCustomAvailabilityZonesMessage
|
10084
|
-
# data as a hash:
|
10085
|
-
#
|
10086
|
-
# {
|
10087
|
-
# custom_availability_zone_id: "String",
|
10088
|
-
# filters: [
|
10089
|
-
# {
|
10090
|
-
# name: "String", # required
|
10091
|
-
# values: ["String"], # required
|
10092
|
-
# },
|
10093
|
-
# ],
|
10094
|
-
# max_records: 1,
|
10095
|
-
# marker: "String",
|
10096
|
-
# }
|
10097
|
-
#
|
10098
|
-
# @!attribute [rw] custom_availability_zone_id
|
10099
|
-
# The custom AZ identifier. If this parameter is specified,
|
10100
|
-
# information from only the specific custom AZ is returned.
|
10101
|
-
# @return [String]
|
10102
|
-
#
|
10103
|
-
# @!attribute [rw] filters
|
10104
|
-
# A filter that specifies one or more custom AZs to describe.
|
10105
|
-
# @return [Array<Types::Filter>]
|
10106
|
-
#
|
10107
|
-
# @!attribute [rw] max_records
|
10108
|
-
# The maximum number of records to include in the response. If more
|
10109
|
-
# records exist than the specified `MaxRecords` value, a pagination
|
10110
|
-
# token called a marker is included in the response so you can
|
10111
|
-
# retrieve the remaining results.
|
10112
|
-
#
|
10113
|
-
# Default: 100
|
10114
|
-
#
|
10115
|
-
# Constraints: Minimum 20, maximum 100.
|
10116
|
-
# @return [Integer]
|
10117
|
-
#
|
10118
|
-
# @!attribute [rw] marker
|
10119
|
-
# An optional pagination token provided by a previous
|
10120
|
-
# `DescribeCustomAvailabilityZones` request. If this parameter is
|
10121
|
-
# specified, the response includes only records beyond the marker, up
|
10122
|
-
# to the value specified by `MaxRecords`.
|
10123
|
-
# @return [String]
|
10124
|
-
#
|
10125
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeCustomAvailabilityZonesMessage AWS API Documentation
|
10126
|
-
#
|
10127
|
-
class DescribeCustomAvailabilityZonesMessage < Struct.new(
|
10128
|
-
:custom_availability_zone_id,
|
10129
|
-
:filters,
|
10130
|
-
:max_records,
|
10131
|
-
:marker)
|
10132
|
-
SENSITIVE = []
|
10133
|
-
include Aws::Structure
|
10134
|
-
end
|
10135
|
-
|
10136
9916
|
# @note When making an API call, you may pass DescribeDBClusterBacktracksMessage
|
10137
9917
|
# data as a hash:
|
10138
9918
|
#
|
@@ -11171,7 +10951,7 @@ module Aws::RDS
|
|
11171
10951
|
# @return [Array<Types::DescribeDBLogFilesDetails>]
|
11172
10952
|
#
|
11173
10953
|
# @!attribute [rw] marker
|
11174
|
-
# A pagination token that can be used in a later DescribeDBLogFiles
|
10954
|
+
# A pagination token that can be used in a later `DescribeDBLogFiles`
|
11175
10955
|
# request.
|
11176
10956
|
# @return [String]
|
11177
10957
|
#
|
@@ -12008,6 +11788,86 @@ module Aws::RDS
|
|
12008
11788
|
#
|
12009
11789
|
# @!attribute [rw] db_parameter_group_family
|
12010
11790
|
# The name of the DB parameter group family.
|
11791
|
+
#
|
11792
|
+
# Valid Values:
|
11793
|
+
#
|
11794
|
+
# * `aurora5.6`
|
11795
|
+
#
|
11796
|
+
# * `aurora-mysql5.7`
|
11797
|
+
#
|
11798
|
+
# * `aurora-mysql8.0`
|
11799
|
+
#
|
11800
|
+
# * `aurora-postgresql10`
|
11801
|
+
#
|
11802
|
+
# * `aurora-postgresql11`
|
11803
|
+
#
|
11804
|
+
# * `aurora-postgresql12`
|
11805
|
+
#
|
11806
|
+
# * `aurora-postgresql13`
|
11807
|
+
#
|
11808
|
+
# * `mariadb10.2`
|
11809
|
+
#
|
11810
|
+
# * `mariadb10.3`
|
11811
|
+
#
|
11812
|
+
# * `mariadb10.4`
|
11813
|
+
#
|
11814
|
+
# * `mariadb10.5`
|
11815
|
+
#
|
11816
|
+
# * `mariadb10.6`
|
11817
|
+
#
|
11818
|
+
# * `mysql5.7`
|
11819
|
+
#
|
11820
|
+
# * `mysql8.0`
|
11821
|
+
#
|
11822
|
+
# * `postgres10`
|
11823
|
+
#
|
11824
|
+
# * `postgres11`
|
11825
|
+
#
|
11826
|
+
# * `postgres12`
|
11827
|
+
#
|
11828
|
+
# * `postgres13`
|
11829
|
+
#
|
11830
|
+
# * `postgres14`
|
11831
|
+
#
|
11832
|
+
# * `sqlserver-ee-11.0`
|
11833
|
+
#
|
11834
|
+
# * `sqlserver-ee-12.0`
|
11835
|
+
#
|
11836
|
+
# * `sqlserver-ee-13.0`
|
11837
|
+
#
|
11838
|
+
# * `sqlserver-ee-14.0`
|
11839
|
+
#
|
11840
|
+
# * `sqlserver-ee-15.0`
|
11841
|
+
#
|
11842
|
+
# * `sqlserver-ex-11.0`
|
11843
|
+
#
|
11844
|
+
# * `sqlserver-ex-12.0`
|
11845
|
+
#
|
11846
|
+
# * `sqlserver-ex-13.0`
|
11847
|
+
#
|
11848
|
+
# * `sqlserver-ex-14.0`
|
11849
|
+
#
|
11850
|
+
# * `sqlserver-ex-15.0`
|
11851
|
+
#
|
11852
|
+
# * `sqlserver-se-11.0`
|
11853
|
+
#
|
11854
|
+
# * `sqlserver-se-12.0`
|
11855
|
+
#
|
11856
|
+
# * `sqlserver-se-13.0`
|
11857
|
+
#
|
11858
|
+
# * `sqlserver-se-14.0`
|
11859
|
+
#
|
11860
|
+
# * `sqlserver-se-15.0`
|
11861
|
+
#
|
11862
|
+
# * `sqlserver-web-11.0`
|
11863
|
+
#
|
11864
|
+
# * `sqlserver-web-12.0`
|
11865
|
+
#
|
11866
|
+
# * `sqlserver-web-13.0`
|
11867
|
+
#
|
11868
|
+
# * `sqlserver-web-14.0`
|
11869
|
+
#
|
11870
|
+
# * `sqlserver-web-15.0`
|
12011
11871
|
# @return [String]
|
12012
11872
|
#
|
12013
11873
|
# @!attribute [rw] filters
|
@@ -12395,85 +12255,26 @@ module Aws::RDS
|
|
12395
12255
|
#
|
12396
12256
|
# @!attribute [rw] max_records
|
12397
12257
|
# The maximum number of records to include in the response. If more
|
12398
|
-
# records exist than the specified `MaxRecords` value, a pagination
|
12399
|
-
# token called a marker is included in the response so that you can
|
12400
|
-
# retrieve the remaining results.
|
12401
|
-
#
|
12402
|
-
# Default: 100
|
12403
|
-
#
|
12404
|
-
# Constraints: Minimum 20, maximum 100.
|
12405
|
-
# @return [Integer]
|
12406
|
-
#
|
12407
|
-
# @!attribute [rw] marker
|
12408
|
-
# An optional pagination token provided by a previous
|
12409
|
-
# `DescribeGlobalClusters` request. If this parameter is specified,
|
12410
|
-
# the response includes only records beyond the marker, up to the
|
12411
|
-
# value specified by `MaxRecords`.
|
12412
|
-
# @return [String]
|
12413
|
-
#
|
12414
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeGlobalClustersMessage AWS API Documentation
|
12415
|
-
#
|
12416
|
-
class DescribeGlobalClustersMessage < Struct.new(
|
12417
|
-
:global_cluster_identifier,
|
12418
|
-
:filters,
|
12419
|
-
:max_records,
|
12420
|
-
:marker)
|
12421
|
-
SENSITIVE = []
|
12422
|
-
include Aws::Structure
|
12423
|
-
end
|
12424
|
-
|
12425
|
-
# @note When making an API call, you may pass DescribeInstallationMediaMessage
|
12426
|
-
# data as a hash:
|
12427
|
-
#
|
12428
|
-
# {
|
12429
|
-
# installation_media_id: "String",
|
12430
|
-
# filters: [
|
12431
|
-
# {
|
12432
|
-
# name: "String", # required
|
12433
|
-
# values: ["String"], # required
|
12434
|
-
# },
|
12435
|
-
# ],
|
12436
|
-
# max_records: 1,
|
12437
|
-
# marker: "String",
|
12438
|
-
# }
|
12439
|
-
#
|
12440
|
-
# @!attribute [rw] installation_media_id
|
12441
|
-
# The installation medium ID.
|
12442
|
-
# @return [String]
|
12443
|
-
#
|
12444
|
-
# @!attribute [rw] filters
|
12445
|
-
# A filter that specifies one or more installation media to describe.
|
12446
|
-
# Supported filters include the following:
|
12447
|
-
#
|
12448
|
-
# * `custom-availability-zone-id` - Accepts custom Availability Zone
|
12449
|
-
# (AZ) identifiers. The results list includes information about only
|
12450
|
-
# the custom AZs identified by these identifiers.
|
12258
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
12259
|
+
# token called a marker is included in the response so that you can
|
12260
|
+
# retrieve the remaining results.
|
12451
12261
|
#
|
12452
|
-
#
|
12453
|
-
# information about only the database engines identified by these
|
12454
|
-
# identifiers.
|
12262
|
+
# Default: 100
|
12455
12263
|
#
|
12456
|
-
#
|
12457
|
-
#
|
12458
|
-
# @return [Array<Types::Filter>]
|
12264
|
+
# Constraints: Minimum 20, maximum 100.
|
12265
|
+
# @return [Integer]
|
12459
12266
|
#
|
12460
|
-
# @!attribute [rw]
|
12267
|
+
# @!attribute [rw] marker
|
12461
12268
|
# An optional pagination token provided by a previous
|
12462
|
-
#
|
12269
|
+
# `DescribeGlobalClusters` request. If this parameter is specified,
|
12463
12270
|
# the response includes only records beyond the marker, up to the
|
12464
12271
|
# value specified by `MaxRecords`.
|
12465
|
-
# @return [Integer]
|
12466
|
-
#
|
12467
|
-
# @!attribute [rw] marker
|
12468
|
-
# An optional pagination token provided by a previous request. If this
|
12469
|
-
# parameter is specified, the response includes only records beyond
|
12470
|
-
# the marker, up to the value specified by `MaxRecords`.
|
12471
12272
|
# @return [String]
|
12472
12273
|
#
|
12473
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/
|
12274
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeGlobalClustersMessage AWS API Documentation
|
12474
12275
|
#
|
12475
|
-
class
|
12476
|
-
:
|
12276
|
+
class DescribeGlobalClustersMessage < Struct.new(
|
12277
|
+
:global_cluster_identifier,
|
12477
12278
|
:filters,
|
12478
12279
|
:max_records,
|
12479
12280
|
:marker)
|
@@ -12767,7 +12568,7 @@ module Aws::RDS
|
|
12767
12568
|
# An optional pagination token provided by a previous
|
12768
12569
|
# DescribeOrderableDBInstanceOptions request. If this parameter is
|
12769
12570
|
# specified, the response includes only records beyond the marker, up
|
12770
|
-
# to the value specified by `MaxRecords
|
12571
|
+
# to the value specified by `MaxRecords`.
|
12771
12572
|
# @return [String]
|
12772
12573
|
#
|
12773
12574
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptionsMessage AWS API Documentation
|
@@ -13222,7 +13023,7 @@ module Aws::RDS
|
|
13222
13023
|
#
|
13223
13024
|
# @!attribute [rw] marker
|
13224
13025
|
# A pagination token that can be used in a later
|
13225
|
-
# DownloadDBLogFilePortion request.
|
13026
|
+
# `DownloadDBLogFilePortion` request.
|
13226
13027
|
# @return [String]
|
13227
13028
|
#
|
13228
13029
|
# @!attribute [rw] additional_data_pending
|
@@ -13474,7 +13275,7 @@ module Aws::RDS
|
|
13474
13275
|
# Data returned from the `DescribeEventCategories` operation.
|
13475
13276
|
#
|
13476
13277
|
# @!attribute [rw] event_categories_map_list
|
13477
|
-
# A list of EventCategoriesMap data types.
|
13278
|
+
# A list of `EventCategoriesMap` data types.
|
13478
13279
|
# @return [Array<Types::EventCategoriesMap>]
|
13479
13280
|
#
|
13480
13281
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/EventCategoriesMessage AWS API Documentation
|
@@ -13592,7 +13393,7 @@ module Aws::RDS
|
|
13592
13393
|
# @!attribute [rw] marker
|
13593
13394
|
# An optional pagination token provided by a previous Events request.
|
13594
13395
|
# If this parameter is specified, the response includes only records
|
13595
|
-
# beyond the marker, up to the value specified by `MaxRecords
|
13396
|
+
# beyond the marker, up to the value specified by `MaxRecords`.
|
13596
13397
|
# @return [String]
|
13597
13398
|
#
|
13598
13399
|
# @!attribute [rw] events
|
@@ -14156,186 +13957,6 @@ module Aws::RDS
|
|
14156
13957
|
#
|
14157
13958
|
class IamRoleNotFoundFault < Aws::EmptyStructure; end
|
14158
13959
|
|
14159
|
-
# @note When making an API call, you may pass ImportInstallationMediaMessage
|
14160
|
-
# data as a hash:
|
14161
|
-
#
|
14162
|
-
# {
|
14163
|
-
# custom_availability_zone_id: "String", # required
|
14164
|
-
# engine: "String", # required
|
14165
|
-
# engine_version: "String", # required
|
14166
|
-
# engine_installation_media_path: "String", # required
|
14167
|
-
# os_installation_media_path: "String", # required
|
14168
|
-
# }
|
14169
|
-
#
|
14170
|
-
# @!attribute [rw] custom_availability_zone_id
|
14171
|
-
# The identifier of the custom Availability Zone (AZ) to import the
|
14172
|
-
# installation media to.
|
14173
|
-
# @return [String]
|
14174
|
-
#
|
14175
|
-
# @!attribute [rw] engine
|
14176
|
-
# The name of the database engine to be used for this instance.
|
14177
|
-
#
|
14178
|
-
# The list only includes supported DB engines that require an
|
14179
|
-
# on-premises customer provided license.
|
14180
|
-
#
|
14181
|
-
# Valid Values:
|
14182
|
-
#
|
14183
|
-
# * `sqlserver-ee`
|
14184
|
-
#
|
14185
|
-
# * `sqlserver-se`
|
14186
|
-
#
|
14187
|
-
# * `sqlserver-ex`
|
14188
|
-
#
|
14189
|
-
# * `sqlserver-web`
|
14190
|
-
# @return [String]
|
14191
|
-
#
|
14192
|
-
# @!attribute [rw] engine_version
|
14193
|
-
# The version number of the database engine to use.
|
14194
|
-
#
|
14195
|
-
# For a list of valid engine versions, call DescribeDBEngineVersions.
|
14196
|
-
#
|
14197
|
-
# The following are the database engines and links to information
|
14198
|
-
# about the major and minor versions. The list only includes DB
|
14199
|
-
# engines that require an on-premises customer provided license.
|
14200
|
-
#
|
14201
|
-
# **Microsoft SQL Server**
|
14202
|
-
#
|
14203
|
-
# See [ Microsoft SQL Server Versions on Amazon RDS][1] in the *Amazon
|
14204
|
-
# RDS User Guide.*
|
14205
|
-
#
|
14206
|
-
#
|
14207
|
-
#
|
14208
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
14209
|
-
# @return [String]
|
14210
|
-
#
|
14211
|
-
# @!attribute [rw] engine_installation_media_path
|
14212
|
-
# The path to the installation medium for the specified DB engine.
|
14213
|
-
#
|
14214
|
-
# Example:
|
14215
|
-
# `SQLServerISO/en_sql_server_2016_enterprise_x64_dvd_8701793.iso`
|
14216
|
-
# @return [String]
|
14217
|
-
#
|
14218
|
-
# @!attribute [rw] os_installation_media_path
|
14219
|
-
# The path to the installation medium for the operating system
|
14220
|
-
# associated with the specified DB engine.
|
14221
|
-
#
|
14222
|
-
# Example: `WindowsISO/en_windows_server_2016_x64_dvd_9327751.iso`
|
14223
|
-
# @return [String]
|
14224
|
-
#
|
14225
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ImportInstallationMediaMessage AWS API Documentation
|
14226
|
-
#
|
14227
|
-
class ImportInstallationMediaMessage < Struct.new(
|
14228
|
-
:custom_availability_zone_id,
|
14229
|
-
:engine,
|
14230
|
-
:engine_version,
|
14231
|
-
:engine_installation_media_path,
|
14232
|
-
:os_installation_media_path)
|
14233
|
-
SENSITIVE = []
|
14234
|
-
include Aws::Structure
|
14235
|
-
end
|
14236
|
-
|
14237
|
-
# Contains the installation media for a DB engine that requires an
|
14238
|
-
# on-premises customer provided license, such as Microsoft SQL Server.
|
14239
|
-
#
|
14240
|
-
# @!attribute [rw] installation_media_id
|
14241
|
-
# The installation medium ID.
|
14242
|
-
# @return [String]
|
14243
|
-
#
|
14244
|
-
# @!attribute [rw] custom_availability_zone_id
|
14245
|
-
# The custom Availability Zone (AZ) that contains the installation
|
14246
|
-
# media.
|
14247
|
-
# @return [String]
|
14248
|
-
#
|
14249
|
-
# @!attribute [rw] engine
|
14250
|
-
# The DB engine.
|
14251
|
-
# @return [String]
|
14252
|
-
#
|
14253
|
-
# @!attribute [rw] engine_version
|
14254
|
-
# The engine version of the DB engine.
|
14255
|
-
# @return [String]
|
14256
|
-
#
|
14257
|
-
# @!attribute [rw] engine_installation_media_path
|
14258
|
-
# The path to the installation medium for the DB engine.
|
14259
|
-
# @return [String]
|
14260
|
-
#
|
14261
|
-
# @!attribute [rw] os_installation_media_path
|
14262
|
-
# The path to the installation medium for the operating system
|
14263
|
-
# associated with the DB engine.
|
14264
|
-
# @return [String]
|
14265
|
-
#
|
14266
|
-
# @!attribute [rw] status
|
14267
|
-
# The status of the installation medium.
|
14268
|
-
# @return [String]
|
14269
|
-
#
|
14270
|
-
# @!attribute [rw] failure_cause
|
14271
|
-
# If an installation media failure occurred, the cause of the failure.
|
14272
|
-
# @return [Types::InstallationMediaFailureCause]
|
14273
|
-
#
|
14274
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InstallationMedia AWS API Documentation
|
14275
|
-
#
|
14276
|
-
class InstallationMedia < Struct.new(
|
14277
|
-
:installation_media_id,
|
14278
|
-
:custom_availability_zone_id,
|
14279
|
-
:engine,
|
14280
|
-
:engine_version,
|
14281
|
-
:engine_installation_media_path,
|
14282
|
-
:os_installation_media_path,
|
14283
|
-
:status,
|
14284
|
-
:failure_cause)
|
14285
|
-
SENSITIVE = []
|
14286
|
-
include Aws::Structure
|
14287
|
-
end
|
14288
|
-
|
14289
|
-
# The specified installation medium has already been imported.
|
14290
|
-
#
|
14291
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InstallationMediaAlreadyExistsFault AWS API Documentation
|
14292
|
-
#
|
14293
|
-
class InstallationMediaAlreadyExistsFault < Aws::EmptyStructure; end
|
14294
|
-
|
14295
|
-
# Contains the cause of an installation media failure. Installation
|
14296
|
-
# media is used for a DB engine that requires an on-premises customer
|
14297
|
-
# provided license, such as Microsoft SQL Server.
|
14298
|
-
#
|
14299
|
-
# @!attribute [rw] message
|
14300
|
-
# The reason that an installation media import failed.
|
14301
|
-
# @return [String]
|
14302
|
-
#
|
14303
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InstallationMediaFailureCause AWS API Documentation
|
14304
|
-
#
|
14305
|
-
class InstallationMediaFailureCause < Struct.new(
|
14306
|
-
:message)
|
14307
|
-
SENSITIVE = []
|
14308
|
-
include Aws::Structure
|
14309
|
-
end
|
14310
|
-
|
14311
|
-
# @!attribute [rw] marker
|
14312
|
-
# An optional pagination token provided by a previous
|
14313
|
-
# DescribeInstallationMedia request. If this parameter is specified,
|
14314
|
-
# the response includes only records beyond the marker, up to the
|
14315
|
-
# value specified by `MaxRecords`.
|
14316
|
-
# @return [String]
|
14317
|
-
#
|
14318
|
-
# @!attribute [rw] installation_media
|
14319
|
-
# The list of InstallationMedia objects for the Amazon Web Services
|
14320
|
-
# account.
|
14321
|
-
# @return [Array<Types::InstallationMedia>]
|
14322
|
-
#
|
14323
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InstallationMediaMessage AWS API Documentation
|
14324
|
-
#
|
14325
|
-
class InstallationMediaMessage < Struct.new(
|
14326
|
-
:marker,
|
14327
|
-
:installation_media)
|
14328
|
-
SENSITIVE = []
|
14329
|
-
include Aws::Structure
|
14330
|
-
end
|
14331
|
-
|
14332
|
-
# `InstallationMediaID` doesn't refer to an existing installation
|
14333
|
-
# medium.
|
14334
|
-
#
|
14335
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InstallationMediaNotFoundFault AWS API Documentation
|
14336
|
-
#
|
14337
|
-
class InstallationMediaNotFoundFault < Aws::EmptyStructure; end
|
14338
|
-
|
14339
13960
|
# The request would result in the user exceeding the allowed number of
|
14340
13961
|
# DB instances.
|
14341
13962
|
#
|
@@ -14671,7 +14292,7 @@ module Aws::RDS
|
|
14671
14292
|
# @!attribute [rw] capacity
|
14672
14293
|
# The DB cluster capacity.
|
14673
14294
|
#
|
14674
|
-
# When you change the capacity of a paused Aurora Serverless DB
|
14295
|
+
# When you change the capacity of a paused Aurora Serverless v1 DB
|
14675
14296
|
# cluster, it automatically resumes.
|
14676
14297
|
#
|
14677
14298
|
# Constraints:
|
@@ -14684,9 +14305,9 @@ module Aws::RDS
|
|
14684
14305
|
# @return [Integer]
|
14685
14306
|
#
|
14686
14307
|
# @!attribute [rw] seconds_before_timeout
|
14687
|
-
# The amount of time, in seconds, that Aurora Serverless tries to
|
14688
|
-
# a scaling point to perform seamless scaling before enforcing
|
14689
|
-
# timeout action. The default is 300.
|
14308
|
+
# The amount of time, in seconds, that Aurora Serverless v1 tries to
|
14309
|
+
# find a scaling point to perform seamless scaling before enforcing
|
14310
|
+
# the timeout action. The default is 300.
|
14690
14311
|
#
|
14691
14312
|
# Specify a value between 10 and 600 seconds.
|
14692
14313
|
# @return [Integer]
|
@@ -14862,6 +14483,10 @@ module Aws::RDS
|
|
14862
14483
|
# enable_performance_insights: false,
|
14863
14484
|
# performance_insights_kms_key_id: "String",
|
14864
14485
|
# performance_insights_retention_period: 1,
|
14486
|
+
# serverless_v2_scaling_configuration: {
|
14487
|
+
# min_capacity: 1.0,
|
14488
|
+
# max_capacity: 1.0,
|
14489
|
+
# },
|
14865
14490
|
# }
|
14866
14491
|
#
|
14867
14492
|
# @!attribute [rw] db_cluster_identifier
|
@@ -14976,7 +14601,7 @@ module Aws::RDS
|
|
14976
14601
|
# The default is a 30-minute window selected at random from an 8-hour
|
14977
14602
|
# block of time for each Amazon Web Services Region. To view the time
|
14978
14603
|
# blocks available, see [ Backup window][1] in the *Amazon Aurora User
|
14979
|
-
# Guide
|
14604
|
+
# Guide*.
|
14980
14605
|
#
|
14981
14606
|
# Constraints:
|
14982
14607
|
#
|
@@ -15005,7 +14630,7 @@ module Aws::RDS
|
|
15005
14630
|
# block of time for each Amazon Web Services Region, occurring on a
|
15006
14631
|
# random day of the week. To see the time blocks available, see [
|
15007
14632
|
# Adjusting the Preferred DB Cluster Maintenance Window][1] in the
|
15008
|
-
# *Amazon Aurora User Guide
|
14633
|
+
# *Amazon Aurora User Guide*.
|
15009
14634
|
#
|
15010
14635
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
15011
14636
|
#
|
@@ -15024,7 +14649,7 @@ module Aws::RDS
|
|
15024
14649
|
# accounts. By default, mapping isn't enabled.
|
15025
14650
|
#
|
15026
14651
|
# For more information, see [ IAM Database Authentication][1] in the
|
15027
|
-
# *Amazon Aurora User Guide
|
14652
|
+
# *Amazon Aurora User Guide*.
|
15028
14653
|
#
|
15029
14654
|
# Valid for: Aurora DB clusters only
|
15030
14655
|
#
|
@@ -15071,8 +14696,8 @@ module Aws::RDS
|
|
15071
14696
|
# Possible value is `postgresql`.
|
15072
14697
|
#
|
15073
14698
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
15074
|
-
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
15075
|
-
# *Amazon
|
14699
|
+
# see [ Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
14700
|
+
# *Amazon RDS User Guide*.
|
15076
14701
|
#
|
15077
14702
|
# For more information about exporting CloudWatch Logs for Amazon
|
15078
14703
|
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
@@ -15201,16 +14826,16 @@ module Aws::RDS
|
|
15201
14826
|
#
|
15202
14827
|
# @!attribute [rw] enable_http_endpoint
|
15203
14828
|
# A value that indicates whether to enable the HTTP endpoint for an
|
15204
|
-
# Aurora Serverless DB cluster. By default, the HTTP endpoint is
|
14829
|
+
# Aurora Serverless v1 DB cluster. By default, the HTTP endpoint is
|
15205
14830
|
# disabled.
|
15206
14831
|
#
|
15207
14832
|
# When enabled, the HTTP endpoint provides a connectionless web
|
15208
|
-
# service API for running SQL queries on the Aurora Serverless DB
|
14833
|
+
# service API for running SQL queries on the Aurora Serverless v1 DB
|
15209
14834
|
# cluster. You can also query your database from inside the RDS
|
15210
14835
|
# console with the query editor.
|
15211
14836
|
#
|
15212
|
-
# For more information, see [Using the Data API for Aurora
|
15213
|
-
#
|
14837
|
+
# For more information, see [Using the Data API for Aurora Serverless
|
14838
|
+
# v1][1] in the *Amazon Aurora User Guide*.
|
15214
14839
|
#
|
15215
14840
|
# Valid for: Aurora DB clusters only
|
15216
14841
|
#
|
@@ -15251,7 +14876,7 @@ module Aws::RDS
|
|
15251
14876
|
# database engines.
|
15252
14877
|
#
|
15253
14878
|
# For the full list of DB instance classes and availability for your
|
15254
|
-
# engine, see [DB Instance Class][1] in the *Amazon RDS User Guide
|
14879
|
+
# engine, see [ DB Instance Class][1] in the *Amazon RDS User Guide*.
|
15255
14880
|
#
|
15256
14881
|
# Valid for: Multi-AZ DB clusters only
|
15257
14882
|
#
|
@@ -15375,6 +15000,18 @@ module Aws::RDS
|
|
15375
15000
|
# Valid for: Multi-AZ DB clusters only
|
15376
15001
|
# @return [Integer]
|
15377
15002
|
#
|
15003
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
15004
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
15005
|
+
# cluster.
|
15006
|
+
#
|
15007
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
15008
|
+
# the *Amazon Aurora User Guide*.
|
15009
|
+
#
|
15010
|
+
#
|
15011
|
+
#
|
15012
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
15013
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
15014
|
+
#
|
15378
15015
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
15379
15016
|
#
|
15380
15017
|
class ModifyDBClusterMessage < Struct.new(
|
@@ -15411,7 +15048,8 @@ module Aws::RDS
|
|
15411
15048
|
:monitoring_role_arn,
|
15412
15049
|
:enable_performance_insights,
|
15413
15050
|
:performance_insights_kms_key_id,
|
15414
|
-
:performance_insights_retention_period
|
15051
|
+
:performance_insights_retention_period,
|
15052
|
+
:serverless_v2_scaling_configuration)
|
15415
15053
|
SENSITIVE = []
|
15416
15054
|
include Aws::Structure
|
15417
15055
|
end
|
@@ -16313,7 +15951,7 @@ module Aws::RDS
|
|
16313
15951
|
# the DB instance.
|
16314
15952
|
#
|
16315
15953
|
# For more information, see [Using Amazon Performance Insights][1] in
|
16316
|
-
# the *Amazon
|
15954
|
+
# the *Amazon RDS User Guide.*.
|
16317
15955
|
#
|
16318
15956
|
# This setting doesn't apply to RDS Custom.
|
16319
15957
|
#
|
@@ -16417,7 +16055,7 @@ module Aws::RDS
|
|
16417
16055
|
#
|
16418
16056
|
# * For more information about rotating your SSL/TLS certificate for
|
16419
16057
|
# Aurora DB engines, see [ Rotating Your SSL/TLS Certificate][2] in
|
16420
|
-
# the *Amazon Aurora User Guide
|
16058
|
+
# the *Amazon Aurora User Guide*.
|
16421
16059
|
#
|
16422
16060
|
# This setting doesn't apply to RDS Custom.
|
16423
16061
|
#
|
@@ -18024,7 +17662,7 @@ module Aws::RDS
|
|
18024
17662
|
# An optional pagination token provided by a previous
|
18025
17663
|
# OrderableDBInstanceOptions request. If this parameter is specified,
|
18026
17664
|
# the response includes only records beyond the marker, up to the
|
18027
|
-
# value specified by `MaxRecords
|
17665
|
+
# value specified by `MaxRecords`.
|
18028
17666
|
# @return [String]
|
18029
17667
|
#
|
18030
17668
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOptionsMessage AWS API Documentation
|
@@ -19497,6 +19135,10 @@ module Aws::RDS
|
|
19497
19135
|
# copy_tags_to_snapshot: false,
|
19498
19136
|
# domain: "String",
|
19499
19137
|
# domain_iam_role_name: "String",
|
19138
|
+
# serverless_v2_scaling_configuration: {
|
19139
|
+
# min_capacity: 1.0,
|
19140
|
+
# max_capacity: 1.0,
|
19141
|
+
# },
|
19500
19142
|
# }
|
19501
19143
|
#
|
19502
19144
|
# @!attribute [rw] availability_zones
|
@@ -19651,7 +19293,7 @@ module Aws::RDS
|
|
19651
19293
|
# The default is a 30-minute window selected at random from an 8-hour
|
19652
19294
|
# block of time for each Amazon Web Services Region. To view the time
|
19653
19295
|
# blocks available, see [ Backup window][1] in the *Amazon Aurora User
|
19654
|
-
# Guide
|
19296
|
+
# Guide*.
|
19655
19297
|
#
|
19656
19298
|
# Constraints:
|
19657
19299
|
#
|
@@ -19678,7 +19320,7 @@ module Aws::RDS
|
|
19678
19320
|
# block of time for each Amazon Web Services Region, occurring on a
|
19679
19321
|
# random day of the week. To see the time blocks available, see [
|
19680
19322
|
# Adjusting the Preferred Maintenance Window][1] in the *Amazon Aurora
|
19681
|
-
# User Guide
|
19323
|
+
# User Guide*.
|
19682
19324
|
#
|
19683
19325
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
19684
19326
|
#
|
@@ -19724,7 +19366,7 @@ module Aws::RDS
|
|
19724
19366
|
# accounts. By default, mapping isn't enabled.
|
19725
19367
|
#
|
19726
19368
|
# For more information, see [ IAM Database Authentication][1] in the
|
19727
|
-
# *Amazon Aurora User Guide
|
19369
|
+
# *Amazon Aurora User Guide*.
|
19728
19370
|
#
|
19729
19371
|
#
|
19730
19372
|
#
|
@@ -19836,6 +19478,18 @@ module Aws::RDS
|
|
19836
19478
|
# the Directory Service.
|
19837
19479
|
# @return [String]
|
19838
19480
|
#
|
19481
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
19482
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
19483
|
+
# cluster.
|
19484
|
+
#
|
19485
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
19486
|
+
# the *Amazon Aurora User Guide*.
|
19487
|
+
#
|
19488
|
+
#
|
19489
|
+
#
|
19490
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
19491
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
19492
|
+
#
|
19839
19493
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3Message AWS API Documentation
|
19840
19494
|
#
|
19841
19495
|
class RestoreDBClusterFromS3Message < Struct.new(
|
@@ -19869,7 +19523,8 @@ module Aws::RDS
|
|
19869
19523
|
:deletion_protection,
|
19870
19524
|
:copy_tags_to_snapshot,
|
19871
19525
|
:domain,
|
19872
|
-
:domain_iam_role_name
|
19526
|
+
:domain_iam_role_name,
|
19527
|
+
:serverless_v2_scaling_configuration)
|
19873
19528
|
SENSITIVE = []
|
19874
19529
|
include Aws::Structure
|
19875
19530
|
end
|
@@ -19955,6 +19610,10 @@ module Aws::RDS
|
|
19955
19610
|
# storage_type: "String",
|
19956
19611
|
# iops: 1,
|
19957
19612
|
# publicly_accessible: false,
|
19613
|
+
# serverless_v2_scaling_configuration: {
|
19614
|
+
# min_capacity: 1.0,
|
19615
|
+
# max_capacity: 1.0,
|
19616
|
+
# },
|
19958
19617
|
# }
|
19959
19618
|
#
|
19960
19619
|
# @!attribute [rw] availability_zones
|
@@ -20045,12 +19704,12 @@ module Aws::RDS
|
|
20045
19704
|
# **Aurora MySQL**
|
20046
19705
|
#
|
20047
19706
|
# See [MySQL on Amazon RDS Versions][1] in the *Amazon Aurora User
|
20048
|
-
# Guide
|
19707
|
+
# Guide*.
|
20049
19708
|
#
|
20050
19709
|
# **Aurora PostgreSQL**
|
20051
19710
|
#
|
20052
19711
|
# See [Amazon Aurora PostgreSQL releases and engine versions][2] in
|
20053
|
-
# the *Amazon Aurora User Guide
|
19712
|
+
# the *Amazon Aurora User Guide*.
|
20054
19713
|
#
|
20055
19714
|
# **MySQL**
|
20056
19715
|
#
|
@@ -20148,7 +19807,7 @@ module Aws::RDS
|
|
20148
19807
|
# accounts. By default, mapping isn't enabled.
|
20149
19808
|
#
|
20150
19809
|
# For more information, see [ IAM Database Authentication][1] in the
|
20151
|
-
# *Amazon Aurora User Guide
|
19810
|
+
# *Amazon Aurora User Guide*.
|
20152
19811
|
#
|
20153
19812
|
# Valid for: Aurora DB clusters only
|
20154
19813
|
#
|
@@ -20200,7 +19859,7 @@ module Aws::RDS
|
|
20200
19859
|
#
|
20201
19860
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
20202
19861
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
20203
|
-
# *Amazon
|
19862
|
+
# *Amazon RDS User Guide.*.
|
20204
19863
|
#
|
20205
19864
|
# For more information about exporting CloudWatch Logs for Amazon
|
20206
19865
|
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
@@ -20380,6 +20039,18 @@ module Aws::RDS
|
|
20380
20039
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
20381
20040
|
# @return [Boolean]
|
20382
20041
|
#
|
20042
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
20043
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
20044
|
+
# cluster.
|
20045
|
+
#
|
20046
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
20047
|
+
# the *Amazon Aurora User Guide*.
|
20048
|
+
#
|
20049
|
+
#
|
20050
|
+
#
|
20051
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
20052
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
20053
|
+
#
|
20383
20054
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
20384
20055
|
#
|
20385
20056
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
@@ -20408,7 +20079,8 @@ module Aws::RDS
|
|
20408
20079
|
:db_cluster_instance_class,
|
20409
20080
|
:storage_type,
|
20410
20081
|
:iops,
|
20411
|
-
:publicly_accessible
|
20082
|
+
:publicly_accessible,
|
20083
|
+
:serverless_v2_scaling_configuration)
|
20412
20084
|
SENSITIVE = []
|
20413
20085
|
include Aws::Structure
|
20414
20086
|
end
|
@@ -20493,6 +20165,10 @@ module Aws::RDS
|
|
20493
20165
|
# storage_type: "String",
|
20494
20166
|
# publicly_accessible: false,
|
20495
20167
|
# iops: 1,
|
20168
|
+
# serverless_v2_scaling_configuration: {
|
20169
|
+
# min_capacity: 1.0,
|
20170
|
+
# max_capacity: 1.0,
|
20171
|
+
# },
|
20496
20172
|
# }
|
20497
20173
|
#
|
20498
20174
|
# @!attribute [rw] db_cluster_identifier
|
@@ -20654,7 +20330,7 @@ module Aws::RDS
|
|
20654
20330
|
# accounts. By default, mapping isn't enabled.
|
20655
20331
|
#
|
20656
20332
|
# For more information, see [ IAM Database Authentication][1] in the
|
20657
|
-
# *Amazon Aurora User Guide
|
20333
|
+
# *Amazon Aurora User Guide*.
|
20658
20334
|
#
|
20659
20335
|
# Valid for: Aurora DB clusters only
|
20660
20336
|
#
|
@@ -20702,7 +20378,7 @@ module Aws::RDS
|
|
20702
20378
|
#
|
20703
20379
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
20704
20380
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
20705
|
-
# *Amazon
|
20381
|
+
# *Amazon RDS User Guide.*.
|
20706
20382
|
#
|
20707
20383
|
# For more information about exporting CloudWatch Logs for Amazon
|
20708
20384
|
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
@@ -20785,11 +20461,11 @@ module Aws::RDS
|
|
20785
20461
|
# @!attribute [rw] engine_mode
|
20786
20462
|
# The engine mode of the new cluster. Specify `provisioned` or
|
20787
20463
|
# `serverless`, depending on the type of the cluster you are creating.
|
20788
|
-
# You can create an Aurora Serverless clone from a provisioned
|
20789
|
-
# cluster, or a provisioned clone from an Aurora Serverless
|
20790
|
-
# To create a clone that is an Aurora Serverless cluster,
|
20791
|
-
# cluster must be an Aurora Serverless cluster or an
|
20792
|
-
# provisioned cluster.
|
20464
|
+
# You can create an Aurora Serverless v1 clone from a provisioned
|
20465
|
+
# cluster, or a provisioned clone from an Aurora Serverless v1
|
20466
|
+
# cluster. To create a clone that is an Aurora Serverless v1 cluster,
|
20467
|
+
# the original cluster must be an Aurora Serverless v1 cluster or an
|
20468
|
+
# encrypted provisioned cluster.
|
20793
20469
|
#
|
20794
20470
|
# Valid for: Aurora DB clusters only
|
20795
20471
|
# @return [String]
|
@@ -20881,6 +20557,18 @@ module Aws::RDS
|
|
20881
20557
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
20882
20558
|
# @return [Integer]
|
20883
20559
|
#
|
20560
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
20561
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
20562
|
+
# cluster.
|
20563
|
+
#
|
20564
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
20565
|
+
# the *Amazon Aurora User Guide*.
|
20566
|
+
#
|
20567
|
+
#
|
20568
|
+
#
|
20569
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
20570
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
20571
|
+
#
|
20884
20572
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
20885
20573
|
#
|
20886
20574
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
@@ -20908,7 +20596,8 @@ module Aws::RDS
|
|
20908
20596
|
:db_cluster_instance_class,
|
20909
20597
|
:storage_type,
|
20910
20598
|
:publicly_accessible,
|
20911
|
-
:iops
|
20599
|
+
:iops,
|
20600
|
+
:serverless_v2_scaling_configuration)
|
20912
20601
|
SENSITIVE = []
|
20913
20602
|
include Aws::Structure
|
20914
20603
|
end
|
@@ -21887,7 +21576,7 @@ module Aws::RDS
|
|
21887
21576
|
# the DB instance.
|
21888
21577
|
#
|
21889
21578
|
# For more information, see [Using Amazon Performance Insights][1] in
|
21890
|
-
# the *Amazon
|
21579
|
+
# the *Amazon RDS User Guide.*.
|
21891
21580
|
#
|
21892
21581
|
#
|
21893
21582
|
#
|
@@ -22133,7 +21822,7 @@ module Aws::RDS
|
|
22133
21822
|
# example db.m4.large. Not all DB instance classes are available in
|
22134
21823
|
# all Amazon Web Services Regions, or for all database engines. For
|
22135
21824
|
# the full list of DB instance classes, and availability for your
|
22136
|
-
# engine, see [DB Instance Class][1] in the *Amazon RDS User Guide
|
21825
|
+
# engine, see [DB Instance Class][1] in the *Amazon RDS User Guide*.
|
22137
21826
|
#
|
22138
21827
|
# Default: The same DBInstanceClass as the original DB instance.
|
22139
21828
|
#
|
@@ -22494,8 +22183,7 @@ module Aws::RDS
|
|
22494
22183
|
# start with the prefix `AWSRDSCustom`.
|
22495
22184
|
#
|
22496
22185
|
# For the list of permissions required for the IAM role, see [
|
22497
|
-
# Configure IAM and your VPC][1] in the *Amazon
|
22498
|
-
# Service User Guide*.
|
22186
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
22499
22187
|
#
|
22500
22188
|
# This setting is required for RDS Custom.
|
22501
22189
|
#
|
@@ -22691,10 +22379,11 @@ module Aws::RDS
|
|
22691
22379
|
#
|
22692
22380
|
class SNSTopicArnNotFoundFault < Aws::EmptyStructure; end
|
22693
22381
|
|
22694
|
-
# Contains the scaling configuration of an Aurora Serverless DB
|
22382
|
+
# Contains the scaling configuration of an Aurora Serverless v1 DB
|
22383
|
+
# cluster.
|
22695
22384
|
#
|
22696
|
-
# For more information, see [Using Amazon Aurora Serverless][1] in
|
22697
|
-
# *Amazon Aurora User Guide*.
|
22385
|
+
# For more information, see [Using Amazon Aurora Serverless v1][1] in
|
22386
|
+
# the *Amazon Aurora User Guide*.
|
22698
22387
|
#
|
22699
22388
|
#
|
22700
22389
|
#
|
@@ -22770,10 +22459,10 @@ module Aws::RDS
|
|
22770
22459
|
# if a scaling point isn't found in the timeout period.
|
22771
22460
|
#
|
22772
22461
|
# If you specify `ForceApplyCapacityChange`, connections that prevent
|
22773
|
-
# Aurora Serverless from finding a scaling point might be dropped.
|
22462
|
+
# Aurora Serverless v1 from finding a scaling point might be dropped.
|
22774
22463
|
#
|
22775
|
-
# For more information, see [ Autoscaling for Aurora Serverless][1]
|
22776
|
-
# the *Amazon Aurora User Guide*.
|
22464
|
+
# For more information, see [ Autoscaling for Aurora Serverless v1][1]
|
22465
|
+
# in the *Amazon Aurora User Guide*.
|
22777
22466
|
#
|
22778
22467
|
#
|
22779
22468
|
#
|
@@ -22781,9 +22470,9 @@ module Aws::RDS
|
|
22781
22470
|
# @return [String]
|
22782
22471
|
#
|
22783
22472
|
# @!attribute [rw] seconds_before_timeout
|
22784
|
-
# The amount of time, in seconds, that Aurora Serverless tries to
|
22785
|
-
# a scaling point to perform seamless scaling before enforcing
|
22786
|
-
# timeout action. The default is 300.
|
22473
|
+
# The amount of time, in seconds, that Aurora Serverless v1 tries to
|
22474
|
+
# find a scaling point to perform seamless scaling before enforcing
|
22475
|
+
# the timeout action. The default is 300.
|
22787
22476
|
#
|
22788
22477
|
# Specify a value between 60 and 600 seconds.
|
22789
22478
|
# @return [Integer]
|
@@ -22804,8 +22493,8 @@ module Aws::RDS
|
|
22804
22493
|
# Shows the scaling configuration for an Aurora DB cluster in
|
22805
22494
|
# `serverless` DB engine mode.
|
22806
22495
|
#
|
22807
|
-
# For more information, see [Using Amazon Aurora Serverless][1] in
|
22808
|
-
# *Amazon Aurora User Guide*.
|
22496
|
+
# For more information, see [Using Amazon Aurora Serverless v1][1] in
|
22497
|
+
# the *Amazon Aurora User Guide*.
|
22809
22498
|
#
|
22810
22499
|
#
|
22811
22500
|
#
|
@@ -22825,8 +22514,8 @@ module Aws::RDS
|
|
22825
22514
|
# A value that indicates whether automatic pause is allowed for the
|
22826
22515
|
# Aurora DB cluster in `serverless` DB engine mode.
|
22827
22516
|
#
|
22828
|
-
# When the value is set to false for an Aurora Serverless DB
|
22829
|
-
# the DB cluster automatically resumes.
|
22517
|
+
# When the value is set to false for an Aurora Serverless v1 DB
|
22518
|
+
# cluster, the DB cluster automatically resumes.
|
22830
22519
|
# @return [Boolean]
|
22831
22520
|
#
|
22832
22521
|
# @!attribute [rw] seconds_until_auto_pause
|
@@ -22837,7 +22526,7 @@ module Aws::RDS
|
|
22837
22526
|
#
|
22838
22527
|
# @!attribute [rw] timeout_action
|
22839
22528
|
# The action that occurs when Aurora times out while attempting to
|
22840
|
-
# change the capacity of an Aurora Serverless cluster. The value is
|
22529
|
+
# change the capacity of an Aurora Serverless v1 cluster. The value is
|
22841
22530
|
# either `ForceApplyCapacityChange` or `RollbackCapacityChange`.
|
22842
22531
|
#
|
22843
22532
|
# `ForceApplyCapacityChange`, the default, sets the capacity to the
|
@@ -22866,6 +22555,80 @@ module Aws::RDS
|
|
22866
22555
|
include Aws::Structure
|
22867
22556
|
end
|
22868
22557
|
|
22558
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
22559
|
+
# cluster.
|
22560
|
+
#
|
22561
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
22562
|
+
# the *Amazon Aurora User Guide*.
|
22563
|
+
#
|
22564
|
+
#
|
22565
|
+
#
|
22566
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
22567
|
+
#
|
22568
|
+
# @note When making an API call, you may pass ServerlessV2ScalingConfiguration
|
22569
|
+
# data as a hash:
|
22570
|
+
#
|
22571
|
+
# {
|
22572
|
+
# min_capacity: 1.0,
|
22573
|
+
# max_capacity: 1.0,
|
22574
|
+
# }
|
22575
|
+
#
|
22576
|
+
# @!attribute [rw] min_capacity
|
22577
|
+
# The minimum number of Aurora capacity units (ACUs) for a DB instance
|
22578
|
+
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
22579
|
+
# half-step increments, such as 8, 8.5, 9, and so on. The smallest
|
22580
|
+
# value that you can use is 0.5.
|
22581
|
+
# @return [Float]
|
22582
|
+
#
|
22583
|
+
# @!attribute [rw] max_capacity
|
22584
|
+
# The maximum number of Aurora capacity units (ACUs) for a DB instance
|
22585
|
+
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
22586
|
+
# half-step increments, such as 40, 40.5, 41, and so on. The largest
|
22587
|
+
# value that you can use is 128.
|
22588
|
+
# @return [Float]
|
22589
|
+
#
|
22590
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2ScalingConfiguration AWS API Documentation
|
22591
|
+
#
|
22592
|
+
class ServerlessV2ScalingConfiguration < Struct.new(
|
22593
|
+
:min_capacity,
|
22594
|
+
:max_capacity)
|
22595
|
+
SENSITIVE = []
|
22596
|
+
include Aws::Structure
|
22597
|
+
end
|
22598
|
+
|
22599
|
+
# Shows the scaling configuration for an Aurora Serverless v2 DB
|
22600
|
+
# cluster.
|
22601
|
+
#
|
22602
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
22603
|
+
# the *Amazon Aurora User Guide*.
|
22604
|
+
#
|
22605
|
+
#
|
22606
|
+
#
|
22607
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
22608
|
+
#
|
22609
|
+
# @!attribute [rw] min_capacity
|
22610
|
+
# The minimum number of Aurora capacity units (ACUs) for a DB instance
|
22611
|
+
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
22612
|
+
# half-step increments, such as 8, 8.5, 9, and so on. The smallest
|
22613
|
+
# value that you can use is 0.5.
|
22614
|
+
# @return [Float]
|
22615
|
+
#
|
22616
|
+
# @!attribute [rw] max_capacity
|
22617
|
+
# The maximum number of Aurora capacity units (ACUs) for a DB instance
|
22618
|
+
# in an Aurora Serverless v2 cluster. You can specify ACU values in
|
22619
|
+
# half-step increments, such as 40, 40.5, 41, and so on. The largest
|
22620
|
+
# value that you can use is 128.
|
22621
|
+
# @return [Float]
|
22622
|
+
#
|
22623
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2ScalingConfigurationInfo AWS API Documentation
|
22624
|
+
#
|
22625
|
+
class ServerlessV2ScalingConfigurationInfo < Struct.new(
|
22626
|
+
:min_capacity,
|
22627
|
+
:max_capacity)
|
22628
|
+
SENSITIVE = []
|
22629
|
+
include Aws::Structure
|
22630
|
+
end
|
22631
|
+
|
22869
22632
|
# You have exceeded the maximum number of accounts that you can share a
|
22870
22633
|
# manual DB snapshot with.
|
22871
22634
|
#
|
@@ -22927,7 +22690,7 @@ module Aws::RDS
|
|
22927
22690
|
# @return [String]
|
22928
22691
|
#
|
22929
22692
|
# @!attribute [rw] source_regions
|
22930
|
-
# A list of SourceRegion instances that contains each source Amazon
|
22693
|
+
# A list of `SourceRegion` instances that contains each source Amazon
|
22931
22694
|
# Web Services Region that the current Amazon Web Services Region can
|
22932
22695
|
# get a read replica or a DB snapshot from.
|
22933
22696
|
# @return [Array<Types::SourceRegion>]
|
@@ -23618,7 +23381,7 @@ module Aws::RDS
|
|
23618
23381
|
end
|
23619
23382
|
|
23620
23383
|
# @!attribute [rw] tag_list
|
23621
|
-
# List of tags returned by the ListTagsForResource operation.
|
23384
|
+
# List of tags returned by the `ListTagsForResource` operation.
|
23622
23385
|
# @return [Array<Types::Tag>]
|
23623
23386
|
#
|
23624
23387
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/TagListMessage AWS API Documentation
|
@@ -23910,54 +23673,5 @@ module Aws::RDS
|
|
23910
23673
|
include Aws::Structure
|
23911
23674
|
end
|
23912
23675
|
|
23913
|
-
# Information about the virtual private network (VPN) between the VMware
|
23914
|
-
# vSphere cluster and the Amazon Web Services website.
|
23915
|
-
#
|
23916
|
-
# For more information about RDS on VMware, see the [ RDS on VMware User
|
23917
|
-
# Guide.][1]
|
23918
|
-
#
|
23919
|
-
#
|
23920
|
-
#
|
23921
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
|
23922
|
-
#
|
23923
|
-
# @!attribute [rw] vpn_id
|
23924
|
-
# The ID of the VPN.
|
23925
|
-
# @return [String]
|
23926
|
-
#
|
23927
|
-
# @!attribute [rw] vpn_tunnel_originator_ip
|
23928
|
-
# The IP address of network traffic from your on-premises data center.
|
23929
|
-
# A custom AZ receives the network traffic.
|
23930
|
-
# @return [String]
|
23931
|
-
#
|
23932
|
-
# @!attribute [rw] vpn_gateway_ip
|
23933
|
-
# The IP address of network traffic from Amazon Web Services to your
|
23934
|
-
# on-premises data center.
|
23935
|
-
# @return [String]
|
23936
|
-
#
|
23937
|
-
# @!attribute [rw] vpn_psk
|
23938
|
-
# The preshared key (PSK) for the VPN.
|
23939
|
-
# @return [String]
|
23940
|
-
#
|
23941
|
-
# @!attribute [rw] vpn_name
|
23942
|
-
# The name of the VPN.
|
23943
|
-
# @return [String]
|
23944
|
-
#
|
23945
|
-
# @!attribute [rw] vpn_state
|
23946
|
-
# The state of the VPN.
|
23947
|
-
# @return [String]
|
23948
|
-
#
|
23949
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/VpnDetails AWS API Documentation
|
23950
|
-
#
|
23951
|
-
class VpnDetails < Struct.new(
|
23952
|
-
:vpn_id,
|
23953
|
-
:vpn_tunnel_originator_ip,
|
23954
|
-
:vpn_gateway_ip,
|
23955
|
-
:vpn_psk,
|
23956
|
-
:vpn_name,
|
23957
|
-
:vpn_state)
|
23958
|
-
SENSITIVE = [:vpn_psk]
|
23959
|
-
include Aws::Structure
|
23960
|
-
end
|
23961
|
-
|
23962
23676
|
end
|
23963
23677
|
end
|