aws-sdk-rds 1.195.0 → 1.196.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/certificate.rb +2 -1
- data/lib/aws-sdk-rds/client.rb +320 -319
- data/lib/aws-sdk-rds/db_cluster.rb +37 -38
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +3 -4
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +45 -50
- data/lib/aws-sdk-rds/db_engine.rb +12 -15
- data/lib/aws-sdk-rds/db_engine_version.rb +14 -14
- data/lib/aws-sdk-rds/db_instance.rb +101 -104
- data/lib/aws-sdk-rds/db_parameter_group.rb +3 -3
- data/lib/aws-sdk-rds/db_snapshot.rb +33 -30
- data/lib/aws-sdk-rds/event_subscription.rb +5 -5
- data/lib/aws-sdk-rds/option_group.rb +2 -3
- data/lib/aws-sdk-rds/option_group_option.rb +2 -2
- data/lib/aws-sdk-rds/parameter.rb +2 -2
- data/lib/aws-sdk-rds/reserved_db_instance.rb +1 -1
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +30 -32
- data/lib/aws-sdk-rds/types.rb +494 -494
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -664,14 +664,14 @@ module Aws::RDS
|
|
664
664
|
# @option params [required, String] :apply_action
|
665
665
|
# The pending maintenance action to apply to this resource.
|
666
666
|
#
|
667
|
-
# Valid
|
667
|
+
# Valid Values: `system-update`, `db-upgrade`, `hardware-maintenance`,
|
668
668
|
# `ca-certificate-rotation`
|
669
669
|
#
|
670
670
|
# @option params [required, String] :opt_in_type
|
671
671
|
# A value that specifies the type of opt-in request, or undoes an opt-in
|
672
672
|
# request. An opt-in request of type `immediate` can't be undone.
|
673
673
|
#
|
674
|
-
# Valid
|
674
|
+
# Valid Values:
|
675
675
|
#
|
676
676
|
# * `immediate` - Apply the maintenance action immediately.
|
677
677
|
#
|
@@ -904,16 +904,16 @@ module Aws::RDS
|
|
904
904
|
# [1]: http://en.wikipedia.org/wiki/ISO_8601
|
905
905
|
#
|
906
906
|
# @option params [Boolean] :force
|
907
|
-
#
|
908
|
-
#
|
909
|
-
#
|
907
|
+
# Specifies whether to force the DB cluster to backtrack when binary
|
908
|
+
# logging is enabled. Otherwise, an error occurs when binary logging is
|
909
|
+
# enabled.
|
910
910
|
#
|
911
911
|
# @option params [Boolean] :use_earliest_time_on_point_in_time_unavailable
|
912
|
-
#
|
913
|
-
#
|
914
|
-
#
|
915
|
-
#
|
916
|
-
#
|
912
|
+
# Specifies whether to backtrack the DB cluster to the earliest possible
|
913
|
+
# backtrack time when *BacktrackTo* is set to a timestamp earlier than
|
914
|
+
# the earliest backtrack time. When this parameter is disabled and
|
915
|
+
# *BacktrackTo* is set to a timestamp earlier than the earliest
|
916
|
+
# backtrack time, an error occurs.
|
917
917
|
#
|
918
918
|
# @return [Types::DBClusterBacktrack] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
919
919
|
#
|
@@ -1304,9 +1304,8 @@ module Aws::RDS
|
|
1304
1304
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
1305
1305
|
#
|
1306
1306
|
# @option params [Boolean] :copy_tags
|
1307
|
-
#
|
1308
|
-
#
|
1309
|
-
# are not copied.
|
1307
|
+
# Specifies whether to copy all tags from the source DB cluster snapshot
|
1308
|
+
# to the target DB cluster snapshot. By default, tags are not copied.
|
1310
1309
|
#
|
1311
1310
|
# @option params [Array<Types::Tag>] :tags
|
1312
1311
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -1614,8 +1613,8 @@ module Aws::RDS
|
|
1614
1613
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1615
1614
|
#
|
1616
1615
|
# @option params [Boolean] :copy_tags
|
1617
|
-
#
|
1618
|
-
#
|
1616
|
+
# Specifies whether to copy all tags from the source DB snapshot to the
|
1617
|
+
# target DB snapshot. By default, tags aren't copied.
|
1619
1618
|
#
|
1620
1619
|
# @option params [String] :pre_signed_url
|
1621
1620
|
# When you are copying a snapshot from one Amazon Web Services GovCloud
|
@@ -1707,10 +1706,10 @@ module Aws::RDS
|
|
1707
1706
|
# Example: `rds-caz-aiqhTgQv`.
|
1708
1707
|
#
|
1709
1708
|
# @option params [Boolean] :copy_option_group
|
1710
|
-
#
|
1711
|
-
#
|
1712
|
-
#
|
1713
|
-
#
|
1709
|
+
# Specifies whether to copy the DB option group associated with the
|
1710
|
+
# source DB snapshot to the target Amazon Web Services account and
|
1711
|
+
# associate with the target DB snapshot. The associated option group can
|
1712
|
+
# be copied only with cross-account snapshot copy calls.
|
1714
1713
|
#
|
1715
1714
|
# @option params [String] :source_region
|
1716
1715
|
# The source region of the snapshot. This is only needed when the
|
@@ -4351,7 +4350,8 @@ module Aws::RDS
|
|
4351
4350
|
# * Can't be specified if `ManageMasterUserPassword` is turned on.
|
4352
4351
|
#
|
4353
4352
|
# * Can include any printable ASCII character except "/", """, or
|
4354
|
-
# "@".
|
4353
|
+
# "@". For RDS for Oracle, can't include the "&" (ampersand)
|
4354
|
+
# or the "'" (single quotes) character.
|
4355
4355
|
#
|
4356
4356
|
# Length Constraints:
|
4357
4357
|
#
|
@@ -5570,9 +5570,8 @@ module Aws::RDS
|
|
5570
5570
|
# read replicas][1] and [Migrating from a Multi-AZ DB cluster to a DB
|
5571
5571
|
# instance using a read replica][2] in the *Amazon RDS User Guide*.
|
5572
5572
|
#
|
5573
|
-
# Amazon Aurora doesn't support this operation.
|
5574
|
-
#
|
5575
|
-
# cluster.
|
5573
|
+
# Amazon Aurora doesn't support this operation. To create a DB instance
|
5574
|
+
# for an Aurora DB cluster, use the `CreateDBInstance` operation.
|
5576
5575
|
#
|
5577
5576
|
# All read replica DB instances are created with backups disabled. All
|
5578
5577
|
# other attributes (including DB security groups and DB parameter
|
@@ -5636,7 +5635,7 @@ module Aws::RDS
|
|
5636
5635
|
# of DB instance classes, and availability for your engine, see [DB
|
5637
5636
|
# Instance Class][1] in the *Amazon RDS User Guide*.
|
5638
5637
|
#
|
5639
|
-
# Default: Inherits from the source DB instance.
|
5638
|
+
# Default: Inherits the value from the source DB instance.
|
5640
5639
|
#
|
5641
5640
|
#
|
5642
5641
|
#
|
@@ -5653,13 +5652,12 @@ module Aws::RDS
|
|
5653
5652
|
# @option params [Integer] :port
|
5654
5653
|
# The port number that the DB instance uses for connections.
|
5655
5654
|
#
|
5656
|
-
# Default: Inherits from the source DB instance
|
5657
|
-
#
|
5658
5655
|
# Valid Values: `1150-65535`
|
5659
5656
|
#
|
5657
|
+
# Default: Inherits the value from the source DB instance.
|
5658
|
+
#
|
5660
5659
|
# @option params [Boolean] :multi_az
|
5661
|
-
#
|
5662
|
-
# deployment.
|
5660
|
+
# Specifies whether the read replica is in a Multi-AZ deployment.
|
5663
5661
|
#
|
5664
5662
|
# You can create a read replica as a Multi-AZ DB instance. RDS creates a
|
5665
5663
|
# standby of your replica in another Availability Zone for failover
|
@@ -5667,52 +5665,55 @@ module Aws::RDS
|
|
5667
5665
|
# instance is independent of whether the source is a Multi-AZ DB
|
5668
5666
|
# instance or a Multi-AZ DB cluster.
|
5669
5667
|
#
|
5670
|
-
# This setting doesn't apply to RDS Custom.
|
5668
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
5671
5669
|
#
|
5672
5670
|
# @option params [Boolean] :auto_minor_version_upgrade
|
5673
|
-
#
|
5674
|
-
#
|
5671
|
+
# Specifies whether to automatically apply minor engine upgrades to the
|
5672
|
+
# read replica during the maintenance window.
|
5675
5673
|
#
|
5676
|
-
# This setting doesn't apply to RDS Custom.
|
5674
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
5677
5675
|
#
|
5678
|
-
# Default: Inherits from the source DB instance
|
5676
|
+
# Default: Inherits the value from the source DB instance.
|
5679
5677
|
#
|
5680
5678
|
# @option params [Integer] :iops
|
5681
5679
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
5682
|
-
#
|
5680
|
+
# initially allocate for the DB instance.
|
5683
5681
|
#
|
5684
5682
|
# @option params [String] :option_group_name
|
5685
|
-
# The option group the DB instance
|
5686
|
-
# option group associated with the source instance or
|
5683
|
+
# The option group to associate the DB instance with. If not specified,
|
5684
|
+
# RDS uses the option group associated with the source DB instance or
|
5685
|
+
# cluster.
|
5687
5686
|
#
|
5688
5687
|
# <note markdown="1"> For SQL Server, you must use the option group associated with the
|
5689
5688
|
# source.
|
5690
5689
|
#
|
5691
5690
|
# </note>
|
5692
5691
|
#
|
5693
|
-
# This setting doesn't apply to RDS Custom.
|
5692
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
5694
5693
|
#
|
5695
5694
|
# @option params [String] :db_parameter_group_name
|
5696
5695
|
# The name of the DB parameter group to associate with this DB instance.
|
5697
5696
|
#
|
5698
|
-
# If you
|
5699
|
-
# RDS uses the `DBParameterGroup` of source DB instance for a same
|
5697
|
+
# If you don't specify a value for `DBParameterGroupName`, then Amazon
|
5698
|
+
# RDS uses the `DBParameterGroup` of the source DB instance for a same
|
5700
5699
|
# Region read replica, or the default `DBParameterGroup` for the
|
5701
5700
|
# specified DB engine for a cross-Region read replica.
|
5702
5701
|
#
|
5703
5702
|
# Specifying a parameter group for this operation is only supported for
|
5704
|
-
# MySQL
|
5703
|
+
# MySQL DB instances for cross-Region read replicas and for Oracle DB
|
5704
|
+
# instances. It isn't supported for MySQL DB instances for same Region
|
5705
|
+
# read replicas or for RDS Custom.
|
5705
5706
|
#
|
5706
5707
|
# Constraints:
|
5707
5708
|
#
|
5708
5709
|
# * Must be 1 to 255 letters, numbers, or hyphens.
|
5709
5710
|
#
|
5710
|
-
# * First character must be a letter
|
5711
|
+
# * First character must be a letter.
|
5711
5712
|
#
|
5712
|
-
# * Can't end with a hyphen or contain two consecutive hyphens
|
5713
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
5713
5714
|
#
|
5714
5715
|
# @option params [Boolean] :publicly_accessible
|
5715
|
-
#
|
5716
|
+
# Specifies whether the DB instance is publicly accessible.
|
5716
5717
|
#
|
5717
5718
|
# When the DB cluster is publicly accessible, its Domain Name System
|
5718
5719
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -5736,20 +5737,19 @@ module Aws::RDS
|
|
5736
5737
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
5737
5738
|
#
|
5738
5739
|
# @option params [String] :db_subnet_group_name
|
5739
|
-
#
|
5740
|
-
#
|
5741
|
-
#
|
5742
|
-
# a VPC.
|
5740
|
+
# A DB subnet group for the DB instance. The new DB instance is created
|
5741
|
+
# in the VPC associated with the DB subnet group. If no DB subnet group
|
5742
|
+
# is specified, then the new DB instance isn't created in a VPC.
|
5743
5743
|
#
|
5744
5744
|
# Constraints:
|
5745
5745
|
#
|
5746
|
-
# * If supplied, must match the name of an existing
|
5746
|
+
# * If supplied, must match the name of an existing DB subnet group.
|
5747
5747
|
#
|
5748
5748
|
# * The specified DB subnet group must be in the same Amazon Web
|
5749
5749
|
# Services Region in which the operation is running.
|
5750
5750
|
#
|
5751
5751
|
# * All read replicas in one Amazon Web Services Region that are created
|
5752
|
-
# from the same source DB instance must either
|
5752
|
+
# from the same source DB instance must either:
|
5753
5753
|
#
|
5754
5754
|
# * Specify DB subnet groups from the same VPC. All these read
|
5755
5755
|
# replicas are created in the same VPC.
|
@@ -5763,37 +5763,39 @@ module Aws::RDS
|
|
5763
5763
|
# A list of Amazon EC2 VPC security groups to associate with the read
|
5764
5764
|
# replica.
|
5765
5765
|
#
|
5766
|
-
# This setting doesn't apply to RDS Custom.
|
5766
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
5767
5767
|
#
|
5768
5768
|
# Default: The default EC2 VPC security group for the DB subnet group's
|
5769
5769
|
# VPC.
|
5770
5770
|
#
|
5771
5771
|
# @option params [String] :storage_type
|
5772
|
-
#
|
5773
|
-
#
|
5774
|
-
# Valid values: `gp2 | gp3 | io1 | standard`
|
5772
|
+
# The storage type to associate with the read replica.
|
5775
5773
|
#
|
5776
5774
|
# If you specify `io1` or `gp3`, you must also include a value for the
|
5777
5775
|
# `Iops` parameter.
|
5778
5776
|
#
|
5779
|
-
#
|
5777
|
+
# Valid Values: `gp2 | gp3 | io1 | standard`
|
5778
|
+
#
|
5779
|
+
# Default: `io1` if the `Iops` parameter is specified. Otherwise, `gp2`.
|
5780
5780
|
#
|
5781
5781
|
# @option params [Boolean] :copy_tags_to_snapshot
|
5782
|
-
#
|
5783
|
-
#
|
5782
|
+
# Specifies whether to copy all tags from the read replica to snapshots
|
5783
|
+
# of the read replica. By default, tags aren't copied.
|
5784
5784
|
#
|
5785
5785
|
# @option params [Integer] :monitoring_interval
|
5786
5786
|
# The interval, in seconds, between points when Enhanced Monitoring
|
5787
|
-
# metrics are collected for the read replica. To disable
|
5788
|
-
# Enhanced Monitoring metrics, specify 0
|
5787
|
+
# metrics are collected for the read replica. To disable collection of
|
5788
|
+
# Enhanced Monitoring metrics, specify `0`. The default is `0`.
|
5789
5789
|
#
|
5790
|
-
# If `MonitoringRoleArn` is specified, then you must
|
5791
|
-
# `MonitoringInterval` to a value other than 0
|
5790
|
+
# If `MonitoringRoleArn` is specified, then you must set
|
5791
|
+
# `MonitoringInterval` to a value other than `0`.
|
5792
5792
|
#
|
5793
|
-
# This setting doesn't apply to RDS Custom.
|
5793
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
5794
5794
|
#
|
5795
5795
|
# Valid Values: `0, 1, 5, 10, 15, 30, 60`
|
5796
5796
|
#
|
5797
|
+
# Default: `0`
|
5798
|
+
#
|
5797
5799
|
# @option params [String] :monitoring_role_arn
|
5798
5800
|
# The ARN for the IAM role that permits RDS to send enhanced monitoring
|
5799
5801
|
# metrics to Amazon CloudWatch Logs. For example,
|
@@ -5804,7 +5806,7 @@ module Aws::RDS
|
|
5804
5806
|
# If `MonitoringInterval` is set to a value other than 0, then you must
|
5805
5807
|
# supply a `MonitoringRoleArn` value.
|
5806
5808
|
#
|
5807
|
-
# This setting doesn't apply to RDS Custom.
|
5809
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
5808
5810
|
#
|
5809
5811
|
#
|
5810
5812
|
#
|
@@ -5908,7 +5910,7 @@ module Aws::RDS
|
|
5908
5910
|
#
|
5909
5911
|
# </note>
|
5910
5912
|
#
|
5911
|
-
# This setting doesn't apply to RDS Custom.
|
5913
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
5912
5914
|
#
|
5913
5915
|
#
|
5914
5916
|
#
|
@@ -5916,28 +5918,27 @@ module Aws::RDS
|
|
5916
5918
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
5917
5919
|
#
|
5918
5920
|
# @option params [Boolean] :enable_iam_database_authentication
|
5919
|
-
#
|
5920
|
-
#
|
5921
|
-
#
|
5921
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
5922
|
+
# and Access Management (IAM) accounts to database accounts. By default,
|
5923
|
+
# mapping isn't enabled.
|
5922
5924
|
#
|
5923
5925
|
# For more information about IAM database authentication, see [ IAM
|
5924
5926
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
5925
5927
|
# RDS User Guide*.
|
5926
5928
|
#
|
5927
|
-
# This setting doesn't apply to RDS Custom.
|
5929
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
5928
5930
|
#
|
5929
5931
|
#
|
5930
5932
|
#
|
5931
5933
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
5932
5934
|
#
|
5933
5935
|
# @option params [Boolean] :enable_performance_insights
|
5934
|
-
#
|
5935
|
-
# read replica.
|
5936
|
+
# Specifies whether to enable Performance Insights for the read replica.
|
5936
5937
|
#
|
5937
5938
|
# For more information, see [Using Amazon Performance Insights][1] in
|
5938
5939
|
# the *Amazon RDS User Guide*.
|
5939
5940
|
#
|
5940
|
-
# This setting doesn't apply to RDS Custom.
|
5941
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
5941
5942
|
#
|
5942
5943
|
#
|
5943
5944
|
#
|
@@ -5955,32 +5956,27 @@ module Aws::RDS
|
|
5955
5956
|
# your Amazon Web Services account. Your Amazon Web Services account has
|
5956
5957
|
# a different default KMS key for each Amazon Web Services Region.
|
5957
5958
|
#
|
5958
|
-
# This setting doesn't apply to RDS Custom.
|
5959
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
5959
5960
|
#
|
5960
5961
|
# @option params [Integer] :performance_insights_retention_period
|
5961
|
-
# The number of days to retain Performance Insights data.
|
5962
|
-
# 7 days. The following values are valid:
|
5963
|
-
#
|
5964
|
-
# * 7
|
5965
|
-
#
|
5966
|
-
# * *month* * 31, where *month* is a number of months from 1-23
|
5967
|
-
#
|
5968
|
-
# * 731
|
5962
|
+
# The number of days to retain Performance Insights data.
|
5969
5963
|
#
|
5970
|
-
#
|
5964
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
5971
5965
|
#
|
5972
|
-
#
|
5966
|
+
# Valid Values:
|
5973
5967
|
#
|
5974
|
-
# *
|
5968
|
+
# * `7`
|
5975
5969
|
#
|
5976
|
-
# *
|
5970
|
+
# * *month* * 31, where *month* is a number of months from 1-23.
|
5971
|
+
# Examples: `93` (3 months * 31), `341` (11 months * 31), `589` (19
|
5972
|
+
# months * 31)
|
5977
5973
|
#
|
5978
|
-
# * 731
|
5974
|
+
# * `731`
|
5979
5975
|
#
|
5980
|
-
#
|
5981
|
-
# value, RDS issues an error.
|
5976
|
+
# Default: `7` days
|
5982
5977
|
#
|
5983
|
-
#
|
5978
|
+
# If you specify a retention period that isn't valid, such as `94`,
|
5979
|
+
# Amazon RDS returns an error.
|
5984
5980
|
#
|
5985
5981
|
# @option params [Array<String>] :enable_cloudwatch_logs_exports
|
5986
5982
|
# The list of logs that the new DB instance is to export to CloudWatch
|
@@ -5988,7 +5984,7 @@ module Aws::RDS
|
|
5988
5984
|
# more information, see [Publishing Database Logs to Amazon CloudWatch
|
5989
5985
|
# Logs ][1] in the *Amazon RDS User Guide*.
|
5990
5986
|
#
|
5991
|
-
# This setting doesn't apply to RDS Custom.
|
5987
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
5992
5988
|
#
|
5993
5989
|
#
|
5994
5990
|
#
|
@@ -5998,19 +5994,19 @@ module Aws::RDS
|
|
5998
5994
|
# The number of CPU cores and the number of threads per core for the DB
|
5999
5995
|
# instance class of the DB instance.
|
6000
5996
|
#
|
6001
|
-
# This setting doesn't apply to RDS Custom.
|
5997
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
6002
5998
|
#
|
6003
5999
|
# @option params [Boolean] :use_default_processor_features
|
6004
|
-
#
|
6005
|
-
#
|
6000
|
+
# Specifies whether the DB instance class of the DB instance uses its
|
6001
|
+
# default processor features.
|
6006
6002
|
#
|
6007
|
-
# This setting doesn't apply to RDS Custom.
|
6003
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
6008
6004
|
#
|
6009
6005
|
# @option params [Boolean] :deletion_protection
|
6010
|
-
#
|
6011
|
-
#
|
6012
|
-
#
|
6013
|
-
#
|
6006
|
+
# Specifies whether to enable deletion protection for the DB instance.
|
6007
|
+
# The database can't be deleted when deletion protection is enabled. By
|
6008
|
+
# default, deletion protection isn't enabled. For more information, see
|
6009
|
+
# [ Deleting a DB Instance][1].
|
6014
6010
|
#
|
6015
6011
|
#
|
6016
6012
|
#
|
@@ -6024,17 +6020,17 @@ module Aws::RDS
|
|
6024
6020
|
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
6025
6021
|
# RDS User Guide*.
|
6026
6022
|
#
|
6027
|
-
# This setting doesn't apply to RDS Custom.
|
6023
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
6028
6024
|
#
|
6029
6025
|
#
|
6030
6026
|
#
|
6031
6027
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
6032
6028
|
#
|
6033
6029
|
# @option params [String] :domain_iam_role_name
|
6034
|
-
# The name of the IAM role to
|
6035
|
-
#
|
6030
|
+
# The name of the IAM role to use when making API calls to the Directory
|
6031
|
+
# Service.
|
6036
6032
|
#
|
6037
|
-
# This setting doesn't apply to RDS Custom.
|
6033
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
6038
6034
|
#
|
6039
6035
|
# @option params [String] :domain_fqdn
|
6040
6036
|
# The fully qualified domain name (FQDN) of an Active Directory domain.
|
@@ -6135,7 +6131,7 @@ module Aws::RDS
|
|
6135
6131
|
# For the list of permissions required for the IAM role, see [ Configure
|
6136
6132
|
# IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
6137
6133
|
#
|
6138
|
-
# This setting is required for RDS Custom.
|
6134
|
+
# This setting is required for RDS Custom DB instances.
|
6139
6135
|
#
|
6140
6136
|
#
|
6141
6137
|
#
|
@@ -6144,7 +6140,7 @@ module Aws::RDS
|
|
6144
6140
|
# @option params [String] :network_type
|
6145
6141
|
# The network type of the DB instance.
|
6146
6142
|
#
|
6147
|
-
# Valid
|
6143
|
+
# Valid Values:
|
6148
6144
|
#
|
6149
6145
|
# * `IPV4`
|
6150
6146
|
#
|
@@ -6164,11 +6160,12 @@ module Aws::RDS
|
|
6164
6160
|
# @option params [Integer] :storage_throughput
|
6165
6161
|
# Specifies the storage throughput value for the read replica.
|
6166
6162
|
#
|
6167
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora
|
6163
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora DB
|
6164
|
+
# instances.
|
6168
6165
|
#
|
6169
6166
|
# @option params [Boolean] :enable_customer_owned_ip
|
6170
|
-
#
|
6171
|
-
#
|
6167
|
+
# Specifies whether to enable a customer-owned IP address (CoIP) for an
|
6168
|
+
# RDS on Outposts read replica.
|
6172
6169
|
#
|
6173
6170
|
# A *CoIP* provides local or external connectivity to resources in your
|
6174
6171
|
# Outpost subnets through your on-premises network. For some use cases,
|
@@ -6657,9 +6654,9 @@ module Aws::RDS
|
|
6657
6654
|
# One or more VPC security group IDs to associate with the new proxy.
|
6658
6655
|
#
|
6659
6656
|
# @option params [Boolean] :require_tls
|
6660
|
-
#
|
6661
|
-
#
|
6662
|
-
#
|
6657
|
+
# Specifies whether Transport Layer Security (TLS) encryption is
|
6658
|
+
# required for connections to the proxy. By enabling this setting, you
|
6659
|
+
# can enforce encrypted TLS connections to the proxy.
|
6663
6660
|
#
|
6664
6661
|
# @option params [Integer] :idle_client_timeout
|
6665
6662
|
# The number of seconds that a connection to the proxy can be inactive
|
@@ -6667,13 +6664,13 @@ module Aws::RDS
|
|
6667
6664
|
# lower than the connection timeout limit for the associated database.
|
6668
6665
|
#
|
6669
6666
|
# @option params [Boolean] :debug_logging
|
6670
|
-
#
|
6671
|
-
# in its logs. This information helps you to debug issues
|
6672
|
-
# behavior or the performance and scalability of the proxy
|
6673
|
-
# The debug information includes the text of SQL statements
|
6674
|
-
# submit through the proxy. Thus, only enable this setting when
|
6675
|
-
# for debugging, and only when you have security measures in
|
6676
|
-
# safeguard any sensitive information that appears in the logs.
|
6667
|
+
# Specifies whether the proxy includes detailed information about SQL
|
6668
|
+
# statements in its logs. This information helps you to debug issues
|
6669
|
+
# involving SQL behavior or the performance and scalability of the proxy
|
6670
|
+
# connections. The debug information includes the text of SQL statements
|
6671
|
+
# that you submit through the proxy. Thus, only enable this setting when
|
6672
|
+
# needed for debugging, and only when you have security measures in
|
6673
|
+
# place to safeguard any sensitive information that appears in the logs.
|
6677
6674
|
#
|
6678
6675
|
# @option params [Array<Types::Tag>] :tags
|
6679
6676
|
# An optional set of key-value pairs to associate arbitrary data of your
|
@@ -6771,10 +6768,10 @@ module Aws::RDS
|
|
6771
6768
|
# VPC.
|
6772
6769
|
#
|
6773
6770
|
# @option params [String] :target_role
|
6774
|
-
#
|
6775
|
-
# read/write or
|
6776
|
-
# only role that proxies for RDS for
|
6777
|
-
# `READ_WRITE`.
|
6771
|
+
# The role of the DB proxy endpoint. The role determines whether the
|
6772
|
+
# endpoint can be used for read/write or only read operations. The
|
6773
|
+
# default is `READ_WRITE`. The only role that proxies for RDS for
|
6774
|
+
# Microsoft SQL Server support is `READ_WRITE`.
|
6778
6775
|
#
|
6779
6776
|
# @option params [Array<Types::Tag>] :tags
|
6780
6777
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -7243,7 +7240,7 @@ module Aws::RDS
|
|
7243
7240
|
# parameter to `db-instance`. For RDS Proxy events, specify `db-proxy`.
|
7244
7241
|
# If this value isn't specified, all events are returned.
|
7245
7242
|
#
|
7246
|
-
# Valid
|
7243
|
+
# Valid Values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
7247
7244
|
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
|
7248
7245
|
# `db-proxy`
|
7249
7246
|
#
|
@@ -7293,8 +7290,8 @@ module Aws::RDS
|
|
7293
7290
|
# supplied.
|
7294
7291
|
#
|
7295
7292
|
# @option params [Boolean] :enabled
|
7296
|
-
#
|
7297
|
-
#
|
7293
|
+
# Specifies whether to activate the subscription. If the event
|
7294
|
+
# notification subscription isn't activated, the subscription is
|
7298
7295
|
# created but not active.
|
7299
7296
|
#
|
7300
7297
|
# @option params [Array<Types::Tag>] :tags
|
@@ -8079,12 +8076,12 @@ module Aws::RDS
|
|
8079
8076
|
# ^
|
8080
8077
|
#
|
8081
8078
|
# @option params [Boolean] :skip_final_snapshot
|
8082
|
-
#
|
8083
|
-
#
|
8084
|
-
#
|
8085
|
-
#
|
8086
|
-
#
|
8087
|
-
#
|
8079
|
+
# Specifies whether to skip the creation of a final DB cluster snapshot
|
8080
|
+
# before the DB cluster is deleted. If skip is specified, no DB cluster
|
8081
|
+
# snapshot is created. If skip isn't specified, a DB cluster snapshot
|
8082
|
+
# is created before the DB cluster is deleted. By default, skip isn't
|
8083
|
+
# specified, and the DB cluster snapshot is created. By default, this
|
8084
|
+
# parameter is disabled.
|
8088
8085
|
#
|
8089
8086
|
# <note markdown="1"> You must specify a `FinalDBSnapshotIdentifier` parameter if
|
8090
8087
|
# `SkipFinalSnapshot` is disabled.
|
@@ -8110,10 +8107,10 @@ module Aws::RDS
|
|
8110
8107
|
# * Can't end with a hyphen or contain two consecutive hyphens
|
8111
8108
|
#
|
8112
8109
|
# @option params [Boolean] :delete_automated_backups
|
8113
|
-
#
|
8114
|
-
#
|
8115
|
-
#
|
8116
|
-
#
|
8110
|
+
# Specifies whether to remove automated backups immediately after the DB
|
8111
|
+
# cluster is deleted. This parameter isn't case-sensitive. The default
|
8112
|
+
# is to remove automated backups immediately after the DB cluster is
|
8113
|
+
# deleted.
|
8117
8114
|
#
|
8118
8115
|
# @return [Types::DeleteDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8119
8116
|
#
|
@@ -8588,16 +8585,15 @@ module Aws::RDS
|
|
8588
8585
|
req.send_request(options)
|
8589
8586
|
end
|
8590
8587
|
|
8591
|
-
#
|
8592
|
-
# instance
|
8593
|
-
#
|
8594
|
-
#
|
8595
|
-
# deleted.
|
8588
|
+
# Deletes a previously provisioned DB instance. When you delete a DB
|
8589
|
+
# instance, all automated backups for that instance are deleted and
|
8590
|
+
# can't be recovered. However, manual DB snapshots of the DB instance
|
8591
|
+
# aren't deleted.
|
8596
8592
|
#
|
8597
|
-
# If you request a final DB snapshot the status of the Amazon RDS DB
|
8598
|
-
# instance is `deleting` until the DB snapshot is created.
|
8599
|
-
#
|
8600
|
-
#
|
8593
|
+
# If you request a final DB snapshot, the status of the Amazon RDS DB
|
8594
|
+
# instance is `deleting` until the DB snapshot is created. This
|
8595
|
+
# operation can't be canceled or reverted after it begins. To monitor
|
8596
|
+
# the status of this operation, use `DescribeDBInstance`.
|
8601
8597
|
#
|
8602
8598
|
# When a DB instance is in a failure state and has a status of `failed`,
|
8603
8599
|
# `incompatible-restore`, or `incompatible-network`, you can only delete
|
@@ -8613,12 +8609,18 @@ module Aws::RDS
|
|
8613
8609
|
#
|
8614
8610
|
# * The DB instance is the only instance in the DB cluster.
|
8615
8611
|
#
|
8616
|
-
# To delete a DB instance in this case, first
|
8617
|
-
# `PromoteReadReplicaDBCluster`
|
8618
|
-
# it's no longer a read replica. After the promotion completes,
|
8619
|
-
#
|
8612
|
+
# To delete a DB instance in this case, first use the
|
8613
|
+
# `PromoteReadReplicaDBCluster` operation to promote the DB cluster so
|
8614
|
+
# that it's no longer a read replica. After the promotion completes,
|
8615
|
+
# use the `DeleteDBInstance` operation to delete the final instance in
|
8620
8616
|
# the DB cluster.
|
8621
8617
|
#
|
8618
|
+
# For RDS Custom DB instances, deleting the DB instance permanently
|
8619
|
+
# deletes the EC2 instance and the associated EBS volumes. Make sure
|
8620
|
+
# that you don't terminate or delete these resources before you delete
|
8621
|
+
# the DB instance. Otherwise, deleting the DB instance and creation of
|
8622
|
+
# the final snapshot might fail.
|
8623
|
+
#
|
8622
8624
|
# @option params [required, String] :db_instance_identifier
|
8623
8625
|
# The DB instance identifier for the DB instance to be deleted. This
|
8624
8626
|
# parameter isn't case-sensitive.
|
@@ -8630,12 +8632,11 @@ module Aws::RDS
|
|
8630
8632
|
# ^
|
8631
8633
|
#
|
8632
8634
|
# @option params [Boolean] :skip_final_snapshot
|
8633
|
-
#
|
8634
|
-
#
|
8635
|
-
#
|
8636
|
-
#
|
8637
|
-
#
|
8638
|
-
# created.
|
8635
|
+
# Specifies whether to skip the creation of a final DB snapshot before
|
8636
|
+
# deleting the instance. If you enable this parameter, RDS doesn't
|
8637
|
+
# create a DB snapshot. If you don't enable this parameter, RDS creates
|
8638
|
+
# a DB snapshot before the DB instance is deleted. By default, skip
|
8639
|
+
# isn't enabled, and the DB snapshot is created.
|
8639
8640
|
#
|
8640
8641
|
# <note markdown="1"> If you don't enable this parameter, you must specify the
|
8641
8642
|
# `FinalDBSnapshotIdentifier` parameter.
|
@@ -8673,10 +8674,10 @@ module Aws::RDS
|
|
8673
8674
|
# * Can't be specified when deleting a read replica.
|
8674
8675
|
#
|
8675
8676
|
# @option params [Boolean] :delete_automated_backups
|
8676
|
-
#
|
8677
|
-
#
|
8678
|
-
#
|
8679
|
-
#
|
8677
|
+
# Specifies whether to remove automated backups immediately after the DB
|
8678
|
+
# instance is deleted. This parameter isn't case-sensitive. The default
|
8679
|
+
# is to remove automated backups immediately after the DB instance is
|
8680
|
+
# deleted.
|
8680
8681
|
#
|
8681
8682
|
# @return [Types::DeleteDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8682
8683
|
#
|
@@ -10715,8 +10716,15 @@ module Aws::RDS
|
|
10715
10716
|
# ^
|
10716
10717
|
#
|
10717
10718
|
# @option params [String] :source
|
10718
|
-
# A
|
10719
|
-
#
|
10719
|
+
# A specific source to return parameters for.
|
10720
|
+
#
|
10721
|
+
# Valid Values:
|
10722
|
+
#
|
10723
|
+
# * `customer`
|
10724
|
+
#
|
10725
|
+
# * `engine`
|
10726
|
+
#
|
10727
|
+
# * `service`
|
10720
10728
|
#
|
10721
10729
|
# @option params [Array<Types::Filter>] :filters
|
10722
10730
|
# This parameter isn't currently supported.
|
@@ -10997,19 +11005,19 @@ module Aws::RDS
|
|
10997
11005
|
# specified by `MaxRecords`.
|
10998
11006
|
#
|
10999
11007
|
# @option params [Boolean] :include_shared
|
11000
|
-
#
|
11001
|
-
#
|
11002
|
-
#
|
11003
|
-
#
|
11008
|
+
# Specifies whether to include shared manual DB cluster snapshots from
|
11009
|
+
# other Amazon Web Services accounts that this Amazon Web Services
|
11010
|
+
# account has been given permission to copy or restore. By default,
|
11011
|
+
# these snapshots are not included.
|
11004
11012
|
#
|
11005
11013
|
# You can give an Amazon Web Services account permission to restore a
|
11006
11014
|
# manual DB cluster snapshot from another Amazon Web Services account by
|
11007
11015
|
# the `ModifyDBClusterSnapshotAttribute` API action.
|
11008
11016
|
#
|
11009
11017
|
# @option params [Boolean] :include_public
|
11010
|
-
#
|
11011
|
-
#
|
11012
|
-
#
|
11018
|
+
# Specifies whether to include manual DB cluster snapshots that are
|
11019
|
+
# public and can be copied or restored by any Amazon Web Services
|
11020
|
+
# account. By default, the public snapshots are not included.
|
11013
11021
|
#
|
11014
11022
|
# You can share a manual DB cluster snapshot as public by using the
|
11015
11023
|
# ModifyDBClusterSnapshotAttribute API action.
|
@@ -11487,10 +11495,10 @@ module Aws::RDS
|
|
11487
11495
|
req.send_request(options)
|
11488
11496
|
end
|
11489
11497
|
|
11490
|
-
#
|
11498
|
+
# Describes the properties of specific versions of DB engines.
|
11491
11499
|
#
|
11492
11500
|
# @option params [String] :engine
|
11493
|
-
# The database engine to return.
|
11501
|
+
# The database engine to return version details for.
|
11494
11502
|
#
|
11495
11503
|
# Valid Values:
|
11496
11504
|
#
|
@@ -11523,7 +11531,7 @@ module Aws::RDS
|
|
11523
11531
|
# * `sqlserver-web`
|
11524
11532
|
#
|
11525
11533
|
# @option params [String] :engine_version
|
11526
|
-
#
|
11534
|
+
# A specific database engine version to return details for.
|
11527
11535
|
#
|
11528
11536
|
# Example: `5.1.49`
|
11529
11537
|
#
|
@@ -11533,7 +11541,7 @@ module Aws::RDS
|
|
11533
11541
|
#
|
11534
11542
|
# Constraints:
|
11535
11543
|
#
|
11536
|
-
# * If supplied, must match an existing
|
11544
|
+
# * If supplied, must match an existing DB parameter group family.
|
11537
11545
|
#
|
11538
11546
|
# ^
|
11539
11547
|
#
|
@@ -11591,37 +11599,34 @@ module Aws::RDS
|
|
11591
11599
|
# marker, up to the value specified by `MaxRecords`.
|
11592
11600
|
#
|
11593
11601
|
# @option params [Boolean] :default_only
|
11594
|
-
#
|
11595
|
-
#
|
11602
|
+
# Specifies whether to return only the default version of the specified
|
11603
|
+
# engine or the engine and major version combination.
|
11596
11604
|
#
|
11597
11605
|
# @option params [Boolean] :list_supported_character_sets
|
11598
|
-
#
|
11599
|
-
#
|
11606
|
+
# Specifies whether to list the supported character sets for each engine
|
11607
|
+
# version.
|
11600
11608
|
#
|
11601
11609
|
# If this parameter is enabled and the requested engine supports the
|
11602
11610
|
# `CharacterSetName` parameter for `CreateDBInstance`, the response
|
11603
11611
|
# includes a list of supported character sets for each engine version.
|
11604
11612
|
#
|
11605
11613
|
# For RDS Custom, the default is not to list supported character sets.
|
11606
|
-
# If you
|
11607
|
-
# no results.
|
11614
|
+
# If you enable this parameter, RDS Custom returns no results.
|
11608
11615
|
#
|
11609
11616
|
# @option params [Boolean] :list_supported_timezones
|
11610
|
-
#
|
11611
|
-
#
|
11617
|
+
# Specifies whether to list the supported time zones for each engine
|
11618
|
+
# version.
|
11612
11619
|
#
|
11613
11620
|
# If this parameter is enabled and the requested engine supports the
|
11614
11621
|
# `TimeZone` parameter for `CreateDBInstance`, the response includes a
|
11615
11622
|
# list of supported time zones for each engine version.
|
11616
11623
|
#
|
11617
11624
|
# For RDS Custom, the default is not to list supported time zones. If
|
11618
|
-
# you
|
11619
|
-
# results.
|
11625
|
+
# you enable this parameter, RDS Custom returns no results.
|
11620
11626
|
#
|
11621
11627
|
# @option params [Boolean] :include_all
|
11622
|
-
#
|
11623
|
-
# available
|
11624
|
-
# versions.
|
11628
|
+
# Specifies whether to also list the engine versions that aren't
|
11629
|
+
# available. The default is to list only available engine versions.
|
11625
11630
|
#
|
11626
11631
|
# @return [Types::DBEngineVersionMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11627
11632
|
#
|
@@ -13149,10 +13154,10 @@ module Aws::RDS
|
|
13149
13154
|
# specified by `MaxRecords`.
|
13150
13155
|
#
|
13151
13156
|
# @option params [Boolean] :include_shared
|
13152
|
-
#
|
13153
|
-
#
|
13154
|
-
#
|
13155
|
-
#
|
13157
|
+
# Specifies whether to include shared manual DB cluster snapshots from
|
13158
|
+
# other Amazon Web Services accounts that this Amazon Web Services
|
13159
|
+
# account has been given permission to copy or restore. By default,
|
13160
|
+
# these snapshots are not included.
|
13156
13161
|
#
|
13157
13162
|
# You can give an Amazon Web Services account permission to restore a
|
13158
13163
|
# manual DB snapshot from another Amazon Web Services account by using
|
@@ -13161,9 +13166,9 @@ module Aws::RDS
|
|
13161
13166
|
# This setting doesn't apply to RDS Custom.
|
13162
13167
|
#
|
13163
13168
|
# @option params [Boolean] :include_public
|
13164
|
-
#
|
13165
|
-
#
|
13166
|
-
#
|
13169
|
+
# Specifies whether to include manual DB cluster snapshots that are
|
13170
|
+
# public and can be copied or restored by any Amazon Web Services
|
13171
|
+
# account. By default, the public snapshots are not included.
|
13167
13172
|
#
|
13168
13173
|
# You can share a manual DB snapshot as public by using the
|
13169
13174
|
# ModifyDBSnapshotAttribute API.
|
@@ -13742,7 +13747,7 @@ module Aws::RDS
|
|
13742
13747
|
# The type of source that is generating the events. For RDS Proxy
|
13743
13748
|
# events, specify `db-proxy`.
|
13744
13749
|
#
|
13745
|
-
# Valid
|
13750
|
+
# Valid Values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
13746
13751
|
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
|
13747
13752
|
# `db-proxy`
|
13748
13753
|
#
|
@@ -14811,8 +14816,8 @@ module Aws::RDS
|
|
14811
14816
|
# This setting doesn't apply to RDS Custom.
|
14812
14817
|
#
|
14813
14818
|
# @option params [Boolean] :vpc
|
14814
|
-
#
|
14815
|
-
#
|
14819
|
+
# Specifies whether to show only VPC or non-VPC offerings. RDS Custom
|
14820
|
+
# supports only VPC offerings.
|
14816
14821
|
#
|
14817
14822
|
# RDS Custom supports only VPC offerings. If you describe non-VPC
|
14818
14823
|
# offerings for RDS Custom, the output shows VPC offerings.
|
@@ -15100,8 +15105,8 @@ module Aws::RDS
|
|
15100
15105
|
# Valid Values: `"Partial Upfront" | "All Upfront" | "No Upfront" `
|
15101
15106
|
#
|
15102
15107
|
# @option params [Boolean] :multi_az
|
15103
|
-
#
|
15104
|
-
#
|
15108
|
+
# Specifies whether to show only those reservations that support
|
15109
|
+
# Multi-AZ.
|
15105
15110
|
#
|
15106
15111
|
# @option params [String] :lease_id
|
15107
15112
|
# The lease identifier filter value. Specify this parameter to show only
|
@@ -15262,8 +15267,8 @@ module Aws::RDS
|
|
15262
15267
|
# Valid Values: `"Partial Upfront" | "All Upfront" | "No Upfront" `
|
15263
15268
|
#
|
15264
15269
|
# @option params [Boolean] :multi_az
|
15265
|
-
#
|
15266
|
-
#
|
15270
|
+
# Specifies whether to show only those reservations that support
|
15271
|
+
# Multi-AZ.
|
15267
15272
|
#
|
15268
15273
|
# @option params [Array<Types::Filter>] :filters
|
15269
15274
|
# This parameter isn't currently supported.
|
@@ -15810,12 +15815,12 @@ module Aws::RDS
|
|
15810
15815
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
15811
15816
|
#
|
15812
15817
|
# @option params [required, String] :db_cluster_identifier
|
15813
|
-
#
|
15814
|
-
# case-sensitive.
|
15818
|
+
# The identifier of the DB cluster to force a failover for. This
|
15819
|
+
# parameter isn't case-sensitive.
|
15815
15820
|
#
|
15816
15821
|
# Constraints:
|
15817
15822
|
#
|
15818
|
-
# * Must match the identifier of an existing
|
15823
|
+
# * Must match the identifier of an existing DB cluster.
|
15819
15824
|
#
|
15820
15825
|
# ^
|
15821
15826
|
#
|
@@ -16303,9 +16308,9 @@ module Aws::RDS
|
|
16303
16308
|
# command or the `DescribeCertificates` API operation.
|
16304
16309
|
#
|
16305
16310
|
# @option params [Boolean] :remove_customer_override
|
16306
|
-
#
|
16307
|
-
#
|
16308
|
-
#
|
16311
|
+
# Specifies whether to remove the override for the default certificate.
|
16312
|
+
# If the override is removed, the default certificate is the system
|
16313
|
+
# default.
|
16309
16314
|
#
|
16310
16315
|
# @return [Types::ModifyCertificatesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16311
16316
|
#
|
@@ -20082,7 +20087,7 @@ module Aws::RDS
|
|
20082
20087
|
# set this parameter to db-instance. For RDS Proxy events, specify
|
20083
20088
|
# `db-proxy`. If this value isn't specified, all events are returned.
|
20084
20089
|
#
|
20085
|
-
# Valid
|
20090
|
+
# Valid Values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
20086
20091
|
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
|
20087
20092
|
# `db-proxy`
|
20088
20093
|
#
|
@@ -20097,7 +20102,7 @@ module Aws::RDS
|
|
20097
20102
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
|
20098
20103
|
#
|
20099
20104
|
# @option params [Boolean] :enabled
|
20100
|
-
#
|
20105
|
+
# Specifies whether to activate the subscription.
|
20101
20106
|
#
|
20102
20107
|
# @return [Types::ModifyEventSubscriptionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
20103
20108
|
#
|
@@ -20329,9 +20334,8 @@ module Aws::RDS
|
|
20329
20334
|
# Options in this list are removed from the option group.
|
20330
20335
|
#
|
20331
20336
|
# @option params [Boolean] :apply_immediately
|
20332
|
-
#
|
20333
|
-
#
|
20334
|
-
# the option group.
|
20337
|
+
# Specifies whether to apply the change immediately or during the next
|
20338
|
+
# maintenance window for each instance associated with the option group.
|
20335
20339
|
#
|
20336
20340
|
# @return [Types::ModifyOptionGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
20337
20341
|
#
|
@@ -21162,8 +21166,7 @@ module Aws::RDS
|
|
21162
21166
|
# ^
|
21163
21167
|
#
|
21164
21168
|
# @option params [Boolean] :force_failover
|
21165
|
-
#
|
21166
|
-
# Multi-AZ failover.
|
21169
|
+
# Specifies whether the reboot is conducted through a Multi-AZ failover.
|
21167
21170
|
#
|
21168
21171
|
# Constraint: You can't enable force failover if the instance isn't
|
21169
21172
|
# configured for Multi-AZ.
|
@@ -21773,10 +21776,9 @@ module Aws::RDS
|
|
21773
21776
|
# The name of the DB cluster parameter group to reset.
|
21774
21777
|
#
|
21775
21778
|
# @option params [Boolean] :reset_all_parameters
|
21776
|
-
#
|
21777
|
-
#
|
21778
|
-
#
|
21779
|
-
# `Parameters` parameter.
|
21779
|
+
# Specifies whether to reset all parameters in the DB cluster parameter
|
21780
|
+
# group to their default values. You can't use this parameter if there
|
21781
|
+
# is a list of parameter names specified for the `Parameters` parameter.
|
21780
21782
|
#
|
21781
21783
|
# @option params [Array<Types::Parameter>] :parameters
|
21782
21784
|
# A list of parameter names in the DB cluster parameter group to reset
|
@@ -21857,9 +21859,9 @@ module Aws::RDS
|
|
21857
21859
|
# ^
|
21858
21860
|
#
|
21859
21861
|
# @option params [Boolean] :reset_all_parameters
|
21860
|
-
#
|
21861
|
-
#
|
21862
|
-
#
|
21862
|
+
# Specifies whether to reset all parameters in the DB parameter group to
|
21863
|
+
# default values. By default, all parameters in the DB parameter group
|
21864
|
+
# are reset to default values.
|
21863
21865
|
#
|
21864
21866
|
# @option params [Array<Types::Parameter>] :parameters
|
21865
21867
|
# To reset the entire DB parameter group, specify the `DBParameterGroup`
|
@@ -22137,7 +22139,7 @@ module Aws::RDS
|
|
22137
22139
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
22138
22140
|
#
|
22139
22141
|
# @option params [Boolean] :storage_encrypted
|
22140
|
-
#
|
22142
|
+
# Specifies whether the restored DB cluster is encrypted.
|
22141
22143
|
#
|
22142
22144
|
# @option params [String] :kms_key_id
|
22143
22145
|
# The Amazon Web Services KMS key identifier for an encrypted DB
|
@@ -22155,9 +22157,9 @@ module Aws::RDS
|
|
22155
22157
|
# default KMS key for each Amazon Web Services Region.
|
22156
22158
|
#
|
22157
22159
|
# @option params [Boolean] :enable_iam_database_authentication
|
22158
|
-
#
|
22159
|
-
#
|
22160
|
-
#
|
22160
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
22161
|
+
# and Access Management (IAM) accounts to database accounts. By default,
|
22162
|
+
# mapping isn't enabled.
|
22161
22163
|
#
|
22162
22164
|
# For more information, see [ IAM Database Authentication][1] in the
|
22163
22165
|
# *Amazon Aurora User Guide*.
|
@@ -22170,7 +22172,7 @@ module Aws::RDS
|
|
22170
22172
|
# The identifier for the database engine that was backed up to create
|
22171
22173
|
# the files stored in the Amazon S3 bucket.
|
22172
22174
|
#
|
22173
|
-
# Valid
|
22175
|
+
# Valid Values: `mysql`
|
22174
22176
|
#
|
22175
22177
|
# @option params [required, String] :source_engine_version
|
22176
22178
|
# The version of the database that the backup files were created from.
|
@@ -22229,14 +22231,13 @@ module Aws::RDS
|
|
22229
22231
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
22230
22232
|
#
|
22231
22233
|
# @option params [Boolean] :deletion_protection
|
22232
|
-
#
|
22233
|
-
#
|
22234
|
-
#
|
22234
|
+
# Specifies whether to enable deletion protection for the DB cluster.
|
22235
|
+
# The database can't be deleted when deletion protection is enabled. By
|
22236
|
+
# default, deletion protection isn't enabled.
|
22235
22237
|
#
|
22236
22238
|
# @option params [Boolean] :copy_tags_to_snapshot
|
22237
|
-
#
|
22238
|
-
#
|
22239
|
-
# copy them.
|
22239
|
+
# Specifies whether to copy all tags from the restored DB cluster to
|
22240
|
+
# snapshots of the restored DB cluster. The default is not to copy them.
|
22240
22241
|
#
|
22241
22242
|
# @option params [String] :domain
|
22242
22243
|
# Specify the Active Directory directory ID to restore the DB cluster
|
@@ -22269,7 +22270,7 @@ module Aws::RDS
|
|
22269
22270
|
# @option params [String] :network_type
|
22270
22271
|
# The network type of the DB cluster.
|
22271
22272
|
#
|
22272
|
-
# Valid
|
22273
|
+
# Valid Values:
|
22273
22274
|
#
|
22274
22275
|
# * `IPV4`
|
22275
22276
|
#
|
@@ -22287,8 +22288,8 @@ module Aws::RDS
|
|
22287
22288
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
22288
22289
|
#
|
22289
22290
|
# @option params [Boolean] :manage_master_user_password
|
22290
|
-
#
|
22291
|
-
#
|
22291
|
+
# Specifies whether to manage the master user password with Amazon Web
|
22292
|
+
# Services Secrets Manager.
|
22292
22293
|
#
|
22293
22294
|
# For more information, see [Password management with Amazon Web
|
22294
22295
|
# Services Secrets Manager][1] in the *Amazon RDS User Guide* and
|
@@ -22333,7 +22334,7 @@ module Aws::RDS
|
|
22333
22334
|
# @option params [String] :storage_type
|
22334
22335
|
# Specifies the storage type to be associated with the DB cluster.
|
22335
22336
|
#
|
22336
|
-
# Valid
|
22337
|
+
# Valid Values: `aurora`, `aurora-iopt1`
|
22337
22338
|
#
|
22338
22339
|
# Default: `aurora`
|
22339
22340
|
#
|
@@ -22783,9 +22784,9 @@ module Aws::RDS
|
|
22783
22784
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
22784
22785
|
#
|
22785
22786
|
# @option params [Boolean] :enable_iam_database_authentication
|
22786
|
-
#
|
22787
|
-
#
|
22788
|
-
#
|
22787
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
22788
|
+
# and Access Management (IAM) accounts to database accounts. By default,
|
22789
|
+
# mapping isn't enabled.
|
22789
22790
|
#
|
22790
22791
|
# For more information, see [ IAM Database Authentication][1] in the
|
22791
22792
|
# *Amazon Aurora User Guide*.
|
@@ -22888,24 +22889,23 @@ module Aws::RDS
|
|
22888
22889
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
22889
22890
|
#
|
22890
22891
|
# @option params [Boolean] :deletion_protection
|
22891
|
-
#
|
22892
|
-
#
|
22893
|
-
#
|
22892
|
+
# Specifies whether to enable deletion protection for the DB cluster.
|
22893
|
+
# The database can't be deleted when deletion protection is enabled. By
|
22894
|
+
# default, deletion protection isn't enabled.
|
22894
22895
|
#
|
22895
22896
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
22896
22897
|
#
|
22897
22898
|
# @option params [Boolean] :copy_tags_to_snapshot
|
22898
|
-
#
|
22899
|
-
#
|
22900
|
-
# copy them.
|
22899
|
+
# Specifies whether to copy all tags from the restored DB cluster to
|
22900
|
+
# snapshots of the restored DB cluster. The default is not to copy them.
|
22901
22901
|
#
|
22902
22902
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
22903
22903
|
#
|
22904
22904
|
# @option params [String] :domain
|
22905
|
-
#
|
22906
|
-
#
|
22907
|
-
#
|
22908
|
-
#
|
22905
|
+
# The Active Directory directory ID to restore the DB cluster in. The
|
22906
|
+
# domain must be created prior to this operation. Currently, only MySQL,
|
22907
|
+
# Microsoft SQL Server, Oracle, and PostgreSQL DB instances can be
|
22908
|
+
# created in an Active Directory Domain.
|
22909
22909
|
#
|
22910
22910
|
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
22911
22911
|
# RDS User Guide*.
|
@@ -22917,8 +22917,8 @@ module Aws::RDS
|
|
22917
22917
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
22918
22918
|
#
|
22919
22919
|
# @option params [String] :domain_iam_role_name
|
22920
|
-
#
|
22921
|
-
#
|
22920
|
+
# The name of the IAM role to be used when making API calls to the
|
22921
|
+
# Directory Service.
|
22922
22922
|
#
|
22923
22923
|
# Valid for: Aurora DB clusters only
|
22924
22924
|
#
|
@@ -22943,7 +22943,7 @@ module Aws::RDS
|
|
22943
22943
|
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
22944
22944
|
# parameter is required.
|
22945
22945
|
#
|
22946
|
-
# Valid
|
22946
|
+
# Valid Values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
22947
22947
|
# (Multi-AZ DB clusters)
|
22948
22948
|
#
|
22949
22949
|
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
@@ -22968,7 +22968,7 @@ module Aws::RDS
|
|
22968
22968
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
22969
22969
|
#
|
22970
22970
|
# @option params [Boolean] :publicly_accessible
|
22971
|
-
#
|
22971
|
+
# Specifies whether the DB cluster is publicly accessible.
|
22972
22972
|
#
|
22973
22973
|
# When the DB cluster is publicly accessible, its Domain Name System
|
22974
22974
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -23018,7 +23018,7 @@ module Aws::RDS
|
|
23018
23018
|
# @option params [String] :network_type
|
23019
23019
|
# The network type of the DB cluster.
|
23020
23020
|
#
|
23021
|
-
# Valid
|
23021
|
+
# Valid Values:
|
23022
23022
|
#
|
23023
23023
|
# * `IPV4`
|
23024
23024
|
#
|
@@ -23376,9 +23376,9 @@ module Aws::RDS
|
|
23376
23376
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
23377
23377
|
#
|
23378
23378
|
# @option params [Boolean] :use_latest_restorable_time
|
23379
|
-
#
|
23380
|
-
#
|
23381
|
-
#
|
23379
|
+
# Specifies whether to restore the DB cluster to the latest restorable
|
23380
|
+
# backup time. By default, the DB cluster isn't restored to the latest
|
23381
|
+
# restorable backup time.
|
23382
23382
|
#
|
23383
23383
|
# Constraints: Can't be specified if `RestoreToTime` parameter is
|
23384
23384
|
# provided.
|
@@ -23453,9 +23453,9 @@ module Aws::RDS
|
|
23453
23453
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
23454
23454
|
#
|
23455
23455
|
# @option params [Boolean] :enable_iam_database_authentication
|
23456
|
-
#
|
23457
|
-
#
|
23458
|
-
#
|
23456
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
23457
|
+
# and Access Management (IAM) accounts to database accounts. By default,
|
23458
|
+
# mapping isn't enabled.
|
23459
23459
|
#
|
23460
23460
|
# For more information, see [ IAM Database Authentication][1] in the
|
23461
23461
|
# *Amazon Aurora User Guide*.
|
@@ -23538,22 +23538,21 @@ module Aws::RDS
|
|
23538
23538
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
23539
23539
|
#
|
23540
23540
|
# @option params [Boolean] :deletion_protection
|
23541
|
-
#
|
23542
|
-
#
|
23543
|
-
#
|
23541
|
+
# Specifies whether to enable deletion protection for the DB cluster.
|
23542
|
+
# The database can't be deleted when deletion protection is enabled. By
|
23543
|
+
# default, deletion protection isn't enabled.
|
23544
23544
|
#
|
23545
23545
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
23546
23546
|
#
|
23547
23547
|
# @option params [Boolean] :copy_tags_to_snapshot
|
23548
|
-
#
|
23549
|
-
#
|
23550
|
-
# copy them.
|
23548
|
+
# Specifies whether to copy all tags from the restored DB cluster to
|
23549
|
+
# snapshots of the restored DB cluster. The default is not to copy them.
|
23551
23550
|
#
|
23552
23551
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
23553
23552
|
#
|
23554
23553
|
# @option params [String] :domain
|
23555
|
-
#
|
23556
|
-
#
|
23554
|
+
# The Active Directory directory ID to restore the DB cluster in. The
|
23555
|
+
# domain must be created prior to this operation.
|
23557
23556
|
#
|
23558
23557
|
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
23559
23558
|
# Authentication to authenticate users that connect to the DB cluster.
|
@@ -23567,8 +23566,8 @@ module Aws::RDS
|
|
23567
23566
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
23568
23567
|
#
|
23569
23568
|
# @option params [String] :domain_iam_role_name
|
23570
|
-
#
|
23571
|
-
#
|
23569
|
+
# The name of the IAM role to be used when making API calls to the
|
23570
|
+
# Directory Service.
|
23572
23571
|
#
|
23573
23572
|
# Valid for: Aurora DB clusters only
|
23574
23573
|
#
|
@@ -23610,7 +23609,7 @@ module Aws::RDS
|
|
23610
23609
|
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
23611
23610
|
# parameter is required.
|
23612
23611
|
#
|
23613
|
-
# Valid
|
23612
|
+
# Valid Values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
23614
23613
|
# (Multi-AZ DB clusters)
|
23615
23614
|
#
|
23616
23615
|
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
@@ -23618,7 +23617,7 @@ module Aws::RDS
|
|
23618
23617
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
23619
23618
|
#
|
23620
23619
|
# @option params [Boolean] :publicly_accessible
|
23621
|
-
#
|
23620
|
+
# Specifies whether the DB cluster is publicly accessible.
|
23622
23621
|
#
|
23623
23622
|
# When the DB cluster is publicly accessible, its Domain Name System
|
23624
23623
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -23685,7 +23684,7 @@ module Aws::RDS
|
|
23685
23684
|
# @option params [String] :network_type
|
23686
23685
|
# The network type of the DB cluster.
|
23687
23686
|
#
|
23688
|
-
# Valid
|
23687
|
+
# Valid Values:
|
23689
23688
|
#
|
23690
23689
|
# * `IPV4`
|
23691
23690
|
#
|
@@ -24049,8 +24048,7 @@ module Aws::RDS
|
|
24049
24048
|
# Example: `mydbsubnetgroup`
|
24050
24049
|
#
|
24051
24050
|
# @option params [Boolean] :multi_az
|
24052
|
-
#
|
24053
|
-
# deployment.
|
24051
|
+
# Specifies whether the DB instance is a Multi-AZ deployment.
|
24054
24052
|
#
|
24055
24053
|
# This setting doesn't apply to RDS Custom.
|
24056
24054
|
#
|
@@ -24058,7 +24056,7 @@ module Aws::RDS
|
|
24058
24056
|
# DB instance is a Multi-AZ deployment.
|
24059
24057
|
#
|
24060
24058
|
# @option params [Boolean] :publicly_accessible
|
24061
|
-
#
|
24059
|
+
# Specifies whether the DB instance is publicly accessible.
|
24062
24060
|
#
|
24063
24061
|
# When the DB instance is publicly accessible, its Domain Name System
|
24064
24062
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -24074,8 +24072,8 @@ module Aws::RDS
|
|
24074
24072
|
# For more information, see CreateDBInstance.
|
24075
24073
|
#
|
24076
24074
|
# @option params [Boolean] :auto_minor_version_upgrade
|
24077
|
-
#
|
24078
|
-
#
|
24075
|
+
# Specifies whether to automatically apply minor version upgrades to the
|
24076
|
+
# DB instance during the maintenance window.
|
24079
24077
|
#
|
24080
24078
|
# If you restore an RDS Custom DB instance, you must disable this
|
24081
24079
|
# parameter.
|
@@ -24087,7 +24085,7 @@ module Aws::RDS
|
|
24087
24085
|
#
|
24088
24086
|
# Default: Same as source.
|
24089
24087
|
#
|
24090
|
-
# Valid
|
24088
|
+
# Valid Values: `license-included` \| `bring-your-own-license` \|
|
24091
24089
|
# `general-public-license`
|
24092
24090
|
#
|
24093
24091
|
# @option params [String] :db_name
|
@@ -24170,7 +24168,7 @@ module Aws::RDS
|
|
24170
24168
|
# @option params [String] :storage_type
|
24171
24169
|
# Specifies the storage type to be associated with the DB instance.
|
24172
24170
|
#
|
24173
|
-
# Valid
|
24171
|
+
# Valid Values: `gp2 | gp3 | io1 | standard`
|
24174
24172
|
#
|
24175
24173
|
# If you specify `io1` or `gp3`, you must also include a value for the
|
24176
24174
|
# `Iops` parameter.
|
@@ -24239,6 +24237,10 @@ module Aws::RDS
|
|
24239
24237
|
#
|
24240
24238
|
# Constraints:
|
24241
24239
|
#
|
24240
|
+
# * Can't be longer than 64 characters.
|
24241
|
+
#
|
24242
|
+
# ^
|
24243
|
+
#
|
24242
24244
|
# Example:
|
24243
24245
|
# `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
|
24244
24246
|
#
|
@@ -24257,8 +24259,8 @@ module Aws::RDS
|
|
24257
24259
|
# Example: `123.124.125.126,234.235.236.237`
|
24258
24260
|
#
|
24259
24261
|
# @option params [Boolean] :copy_tags_to_snapshot
|
24260
|
-
#
|
24261
|
-
#
|
24262
|
+
# Specifies whether to copy all tags from the restored DB instance to
|
24263
|
+
# snapshots of the DB instance.
|
24262
24264
|
#
|
24263
24265
|
# In most cases, tags aren't copied by default. However, when you
|
24264
24266
|
# restore a DB instance from a DB snapshot, RDS checks whether you
|
@@ -24281,9 +24283,9 @@ module Aws::RDS
|
|
24281
24283
|
# This setting doesn't apply to RDS Custom DB instances.
|
24282
24284
|
#
|
24283
24285
|
# @option params [Boolean] :enable_iam_database_authentication
|
24284
|
-
#
|
24285
|
-
#
|
24286
|
-
#
|
24286
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
24287
|
+
# and Access Management (IAM) accounts to database accounts. By default,
|
24288
|
+
# mapping is disabled.
|
24287
24289
|
#
|
24288
24290
|
# For more information about IAM database authentication, see [ IAM
|
24289
24291
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -24314,8 +24316,8 @@ module Aws::RDS
|
|
24314
24316
|
# This setting doesn't apply to RDS Custom.
|
24315
24317
|
#
|
24316
24318
|
# @option params [Boolean] :use_default_processor_features
|
24317
|
-
#
|
24318
|
-
#
|
24319
|
+
# Specifies whether the DB instance class of the DB instance uses its
|
24320
|
+
# default processor features.
|
24319
24321
|
#
|
24320
24322
|
# This setting doesn't apply to RDS Custom.
|
24321
24323
|
#
|
@@ -24338,18 +24340,18 @@ module Aws::RDS
|
|
24338
24340
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
24339
24341
|
#
|
24340
24342
|
# @option params [Boolean] :deletion_protection
|
24341
|
-
#
|
24342
|
-
#
|
24343
|
-
#
|
24344
|
-
#
|
24343
|
+
# Specifies whether to enable deletion protection for the DB instance.
|
24344
|
+
# The database can't be deleted when deletion protection is enabled. By
|
24345
|
+
# default, deletion protection isn't enabled. For more information, see
|
24346
|
+
# [ Deleting a DB Instance][1].
|
24345
24347
|
#
|
24346
24348
|
#
|
24347
24349
|
#
|
24348
24350
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
24349
24351
|
#
|
24350
24352
|
# @option params [Boolean] :enable_customer_owned_ip
|
24351
|
-
#
|
24352
|
-
#
|
24353
|
+
# Specifies whether to enable a customer-owned IP address (CoIP) for an
|
24354
|
+
# RDS on Outposts DB instance.
|
24353
24355
|
#
|
24354
24356
|
# A *CoIP* provides local or external connectivity to resources in your
|
24355
24357
|
# Outpost subnets through your on-premises network. For some use cases,
|
@@ -24409,7 +24411,7 @@ module Aws::RDS
|
|
24409
24411
|
# @option params [String] :network_type
|
24410
24412
|
# The network type of the DB instance.
|
24411
24413
|
#
|
24412
|
-
# Valid
|
24414
|
+
# Valid Values:
|
24413
24415
|
#
|
24414
24416
|
# * `IPV4`
|
24415
24417
|
#
|
@@ -24928,9 +24930,9 @@ module Aws::RDS
|
|
24928
24930
|
# Default: `3306`
|
24929
24931
|
#
|
24930
24932
|
# @option params [Boolean] :multi_az
|
24931
|
-
#
|
24932
|
-
#
|
24933
|
-
#
|
24933
|
+
# Specifies whether the DB instance is a Multi-AZ deployment. If the DB
|
24934
|
+
# instance is a Multi-AZ deployment, you can't set the
|
24935
|
+
# `AvailabilityZone` parameter.
|
24934
24936
|
#
|
24935
24937
|
# @option params [String] :engine_version
|
24936
24938
|
# The version number of the database engine to use. Choose the latest
|
@@ -24938,9 +24940,9 @@ module Aws::RDS
|
|
24938
24940
|
# versions, see `CreateDBInstance`, or call `DescribeDBEngineVersions`.
|
24939
24941
|
#
|
24940
24942
|
# @option params [Boolean] :auto_minor_version_upgrade
|
24941
|
-
#
|
24942
|
-
#
|
24943
|
-
#
|
24943
|
+
# Specifies whether to automatically apply minor engine upgrades to the
|
24944
|
+
# DB instance during the maintenance window. By default, minor engine
|
24945
|
+
# upgrades are not applied automatically.
|
24944
24946
|
#
|
24945
24947
|
# @option params [String] :license_model
|
24946
24948
|
# The license model for this DB instance. Use `general-public-license`.
|
@@ -24961,7 +24963,7 @@ module Aws::RDS
|
|
24961
24963
|
# engine is used.
|
24962
24964
|
#
|
24963
24965
|
# @option params [Boolean] :publicly_accessible
|
24964
|
-
#
|
24966
|
+
# Specifies whether the DB instance is publicly accessible.
|
24965
24967
|
#
|
24966
24968
|
# When the DB instance is publicly accessible, its Domain Name System
|
24967
24969
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -24988,7 +24990,7 @@ module Aws::RDS
|
|
24988
24990
|
# @option params [String] :storage_type
|
24989
24991
|
# Specifies the storage type to be associated with the DB instance.
|
24990
24992
|
#
|
24991
|
-
# Valid
|
24993
|
+
# Valid Values: `gp2 | gp3 | io1 | standard`
|
24992
24994
|
#
|
24993
24995
|
# If you specify `io1` or `gp3`, you must also include a value for the
|
24994
24996
|
# `Iops` parameter.
|
@@ -24996,8 +24998,7 @@ module Aws::RDS
|
|
24996
24998
|
# Default: `io1` if the `Iops` parameter is specified; otherwise `gp2`
|
24997
24999
|
#
|
24998
25000
|
# @option params [Boolean] :storage_encrypted
|
24999
|
-
#
|
25000
|
-
# not.
|
25001
|
+
# Specifies whether the new DB instance is encrypted or not.
|
25001
25002
|
#
|
25002
25003
|
# @option params [String] :kms_key_id
|
25003
25004
|
# The Amazon Web Services KMS key identifier for an encrypted DB
|
@@ -25015,8 +25016,8 @@ module Aws::RDS
|
|
25015
25016
|
# default KMS key for each Amazon Web Services Region.
|
25016
25017
|
#
|
25017
25018
|
# @option params [Boolean] :copy_tags_to_snapshot
|
25018
|
-
#
|
25019
|
-
#
|
25019
|
+
# Specifies whether to copy all tags from the DB instance to snapshots
|
25020
|
+
# of the DB instance. By default, tags are not copied.
|
25020
25021
|
#
|
25021
25022
|
# @option params [Integer] :monitoring_interval
|
25022
25023
|
# The interval, in seconds, between points when Enhanced Monitoring
|
@@ -25045,9 +25046,9 @@ module Aws::RDS
|
|
25045
25046
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
25046
25047
|
#
|
25047
25048
|
# @option params [Boolean] :enable_iam_database_authentication
|
25048
|
-
#
|
25049
|
-
#
|
25050
|
-
#
|
25049
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
25050
|
+
# and Access Management (IAM) accounts to database accounts. By default,
|
25051
|
+
# mapping isn't enabled.
|
25051
25052
|
#
|
25052
25053
|
# For more information about IAM database authentication, see [ IAM
|
25053
25054
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -25081,8 +25082,7 @@ module Aws::RDS
|
|
25081
25082
|
# allow Amazon RDS to access your Amazon S3 bucket.
|
25082
25083
|
#
|
25083
25084
|
# @option params [Boolean] :enable_performance_insights
|
25084
|
-
#
|
25085
|
-
# DB instance.
|
25085
|
+
# Specifies whether to enable Performance Insights for the DB instance.
|
25086
25086
|
#
|
25087
25087
|
# For more information, see [Using Amazon Performance Insights][1] in
|
25088
25088
|
# the *Amazon RDS User Guide*.
|
@@ -25141,14 +25141,14 @@ module Aws::RDS
|
|
25141
25141
|
# instance class of the DB instance.
|
25142
25142
|
#
|
25143
25143
|
# @option params [Boolean] :use_default_processor_features
|
25144
|
-
#
|
25145
|
-
#
|
25144
|
+
# Specifies whether the DB instance class of the DB instance uses its
|
25145
|
+
# default processor features.
|
25146
25146
|
#
|
25147
25147
|
# @option params [Boolean] :deletion_protection
|
25148
|
-
#
|
25149
|
-
#
|
25150
|
-
#
|
25151
|
-
#
|
25148
|
+
# Specifies whether to enable deletion protection for the DB instance.
|
25149
|
+
# The database can't be deleted when deletion protection is enabled. By
|
25150
|
+
# default, deletion protection isn't enabled. For more information, see
|
25151
|
+
# [ Deleting a DB Instance][1].
|
25152
25152
|
#
|
25153
25153
|
#
|
25154
25154
|
#
|
@@ -25169,7 +25169,7 @@ module Aws::RDS
|
|
25169
25169
|
# @option params [String] :network_type
|
25170
25170
|
# The network type of the DB instance.
|
25171
25171
|
#
|
25172
|
-
# Valid
|
25172
|
+
# Valid Values:
|
25173
25173
|
#
|
25174
25174
|
# * `IPV4`
|
25175
25175
|
#
|
@@ -25192,8 +25192,8 @@ module Aws::RDS
|
|
25192
25192
|
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
25193
25193
|
#
|
25194
25194
|
# @option params [Boolean] :manage_master_user_password
|
25195
|
-
#
|
25196
|
-
#
|
25195
|
+
# Specifies whether to manage the master user password with Amazon Web
|
25196
|
+
# Services Secrets Manager.
|
25197
25197
|
#
|
25198
25198
|
# For more information, see [Password management with Amazon Web
|
25199
25199
|
# Services Secrets Manager][1] in the *Amazon RDS User Guide.*
|
@@ -25840,8 +25840,8 @@ module Aws::RDS
|
|
25840
25840
|
# This setting doesn't apply to RDS Custom.
|
25841
25841
|
#
|
25842
25842
|
# @option params [Boolean] :use_default_processor_features
|
25843
|
-
#
|
25844
|
-
#
|
25843
|
+
# Specifies whether the DB instance class of the DB instance uses its
|
25844
|
+
# default processor features.
|
25845
25845
|
#
|
25846
25846
|
# This setting doesn't apply to RDS Custom.
|
25847
25847
|
#
|
@@ -27158,8 +27158,9 @@ module Aws::RDS
|
|
27158
27158
|
#
|
27159
27159
|
# @option params [Array<String>] :export_only
|
27160
27160
|
# The data to be exported from the snapshot or cluster. If this
|
27161
|
-
# parameter
|
27162
|
-
#
|
27161
|
+
# parameter isn't provided, all of the data is exported.
|
27162
|
+
#
|
27163
|
+
# Valid Values:
|
27163
27164
|
#
|
27164
27165
|
# * `database` - Export all the data from a specified database.
|
27165
27166
|
#
|
@@ -28339,7 +28340,7 @@ module Aws::RDS
|
|
28339
28340
|
params: params,
|
28340
28341
|
config: config)
|
28341
28342
|
context[:gem_name] = 'aws-sdk-rds'
|
28342
|
-
context[:gem_version] = '1.
|
28343
|
+
context[:gem_version] = '1.196.0'
|
28343
28344
|
Seahorse::Client::Request.new(handlers, context)
|
28344
28345
|
end
|
28345
28346
|
|