aws-sdk-rds 1.69.0 → 1.70.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +194 -141
- data/lib/aws-sdk-rds/db_cluster.rb +23 -14
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +19 -5
- data/lib/aws-sdk-rds/db_engine.rb +3 -3
- data/lib/aws-sdk-rds/db_engine_version.rb +3 -3
- data/lib/aws-sdk-rds/db_instance.rb +43 -31
- data/lib/aws-sdk-rds/db_log_file.rb +1 -1
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +4 -4
- data/lib/aws-sdk-rds/db_security_group.rb +5 -5
- data/lib/aws-sdk-rds/db_snapshot.rb +14 -6
- data/lib/aws-sdk-rds/event_subscription.rb +3 -3
- data/lib/aws-sdk-rds/resource.rb +42 -33
- data/lib/aws-sdk-rds/types.rb +175 -134
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd535f85a48561add58436467830c52103bafc3b
|
4
|
+
data.tar.gz: a53cc08943814902d30f5227baf30dd68722531c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e54e4c756354f065997f4bcedc85c4d449d88917b81660d62d2239f74b59c2a2d60b3adb6b68094ac8cf384fffeb59c8bf7f01150d967d33d101941db4c0099
|
7
|
+
data.tar.gz: 31bd324bc221cb4ee9e2ed3603250df384147f3d268d30ead1654958c279bf1b5efac732012e111033dedd12afbc88b0a587beb60a37c835f6f698db1a0e0b4c
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -319,7 +319,7 @@ module Aws::RDS
|
|
319
319
|
# @option params [required, String] :feature_name
|
320
320
|
# The name of the feature for the DB instance that the IAM role is to be
|
321
321
|
# associated with. For the list of supported feature names, see
|
322
|
-
#
|
322
|
+
# DBEngineVersion.
|
323
323
|
#
|
324
324
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
325
325
|
#
|
@@ -599,7 +599,7 @@ module Aws::RDS
|
|
599
599
|
#
|
600
600
|
# @option params [String] :ec2_security_group_owner_id
|
601
601
|
# AWS account number of the owner of the EC2 security group specified in
|
602
|
-
# the `EC2SecurityGroupName` parameter. The AWS
|
602
|
+
# the `EC2SecurityGroupName` parameter. The AWS access key ID isn't an
|
603
603
|
# acceptable value. For VPC DB security groups, `EC2SecurityGroupId`
|
604
604
|
# must be provided. Otherwise, `EC2SecurityGroupOwnerId` and either
|
605
605
|
# `EC2SecurityGroupName` or `EC2SecurityGroupId` must be provided.
|
@@ -692,7 +692,7 @@ module Aws::RDS
|
|
692
692
|
# ISO 8601 format. For more information about ISO 8601, see the [ISO8601
|
693
693
|
# Wikipedia page.][1]
|
694
694
|
#
|
695
|
-
# <note markdown="1"> If the specified time
|
695
|
+
# <note markdown="1"> If the specified time isn't a consistent time for the DB cluster,
|
696
696
|
# Aurora automatically chooses the nearest possible consistent time for
|
697
697
|
# the DB cluster.
|
698
698
|
#
|
@@ -914,6 +914,14 @@ module Aws::RDS
|
|
914
914
|
# Authenticating Requests: Using Query Parameters (AWS Signature
|
915
915
|
# Version 4)][1] and [ Signature Version 4 Signing Process][2].
|
916
916
|
#
|
917
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
918
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
919
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
920
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
921
|
+
# operation that can be executed in the source AWS Region.
|
922
|
+
#
|
923
|
+
# </note>
|
924
|
+
#
|
917
925
|
# * `TargetDBClusterSnapshotIdentifier` - The identifier for the new
|
918
926
|
# copy of the DB cluster snapshot in the destination AWS Region.
|
919
927
|
#
|
@@ -946,8 +954,8 @@ module Aws::RDS
|
|
946
954
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
947
955
|
#
|
948
956
|
# @option params [required, String] :source_db_cluster_snapshot_identifier
|
949
|
-
# The identifier of the DB cluster snapshot to copy. This parameter
|
950
|
-
#
|
957
|
+
# The identifier of the DB cluster snapshot to copy. This parameter
|
958
|
+
# isn't case-sensitive.
|
951
959
|
#
|
952
960
|
# You can't copy an encrypted, shared DB cluster snapshot from one AWS
|
953
961
|
# Region to another.
|
@@ -972,7 +980,7 @@ module Aws::RDS
|
|
972
980
|
#
|
973
981
|
# @option params [required, String] :target_db_cluster_snapshot_identifier
|
974
982
|
# The identifier of the new DB cluster snapshot to create from the
|
975
|
-
# source DB cluster snapshot. This parameter
|
983
|
+
# source DB cluster snapshot. This parameter isn't case-sensitive.
|
976
984
|
#
|
977
985
|
# Constraints:
|
978
986
|
#
|
@@ -1013,7 +1021,8 @@ module Aws::RDS
|
|
1013
1021
|
# `CopyDBClusterSnapshot` API action in the AWS Region that contains the
|
1014
1022
|
# source DB cluster snapshot to copy. The `PreSignedUrl` parameter must
|
1015
1023
|
# be used when copying an encrypted DB cluster snapshot from another AWS
|
1016
|
-
# Region.
|
1024
|
+
# Region. Don't specify `PreSignedUrl` when you are copying an
|
1025
|
+
# encrypted DB cluster snapshot in the same AWS Region.
|
1017
1026
|
#
|
1018
1027
|
# The pre-signed URL must be a valid request for the
|
1019
1028
|
# `CopyDBSClusterSnapshot` API action that can be executed in the source
|
@@ -1043,6 +1052,14 @@ module Aws::RDS
|
|
1043
1052
|
# Authenticating Requests: Using Query Parameters (AWS Signature Version
|
1044
1053
|
# 4)][1] and [ Signature Version 4 Signing Process][2].
|
1045
1054
|
#
|
1055
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
1056
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
1057
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1058
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
1059
|
+
# operation that can be executed in the source AWS Region.
|
1060
|
+
#
|
1061
|
+
# </note>
|
1062
|
+
#
|
1046
1063
|
#
|
1047
1064
|
#
|
1048
1065
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -1328,9 +1345,9 @@ module Aws::RDS
|
|
1328
1345
|
# source DB snapshot to copy.
|
1329
1346
|
#
|
1330
1347
|
# You must specify this parameter when you copy an encrypted DB snapshot
|
1331
|
-
# from another AWS Region by using the Amazon RDS API.
|
1332
|
-
#
|
1333
|
-
#
|
1348
|
+
# from another AWS Region by using the Amazon RDS API. Don't specify
|
1349
|
+
# `PreSignedUrl` when you are copying an encrypted DB snapshot in the
|
1350
|
+
# same AWS Region.
|
1334
1351
|
#
|
1335
1352
|
# The presigned URL must be a valid request for the `CopyDBSnapshot` API
|
1336
1353
|
# action that can be executed in the source AWS Region that contains the
|
@@ -1366,6 +1383,14 @@ module Aws::RDS
|
|
1366
1383
|
# [Authenticating Requests: Using Query Parameters (AWS Signature
|
1367
1384
|
# Version 4)][1] and [Signature Version 4 Signing Process][2].
|
1368
1385
|
#
|
1386
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
1387
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
1388
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1389
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
1390
|
+
# operation that can be executed in the source AWS Region.
|
1391
|
+
#
|
1392
|
+
# </note>
|
1393
|
+
#
|
1369
1394
|
#
|
1370
1395
|
#
|
1371
1396
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -1619,13 +1644,13 @@ module Aws::RDS
|
|
1619
1644
|
# The name of a new VPN tunnel between the Amazon RDS website and the
|
1620
1645
|
# VMware vSphere cluster.
|
1621
1646
|
#
|
1622
|
-
# Specify this parameter only if `ExistingVpnId`
|
1647
|
+
# Specify this parameter only if `ExistingVpnId` isn't specified.
|
1623
1648
|
#
|
1624
1649
|
# @option params [String] :vpn_tunnel_originator_ip
|
1625
1650
|
# The IP address of network traffic from your on-premises data center. A
|
1626
1651
|
# custom AZ receives the network traffic.
|
1627
1652
|
#
|
1628
|
-
# Specify this parameter only if `ExistingVpnId`
|
1653
|
+
# Specify this parameter only if `ExistingVpnId` isn't specified.
|
1629
1654
|
#
|
1630
1655
|
# @return [Types::CreateCustomAvailabilityZoneResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1631
1656
|
#
|
@@ -1726,7 +1751,8 @@ module Aws::RDS
|
|
1726
1751
|
#
|
1727
1752
|
# @option params [String] :db_cluster_parameter_group_name
|
1728
1753
|
# The name of the DB cluster parameter group to associate with this DB
|
1729
|
-
# cluster. If
|
1754
|
+
# cluster. If you do not specify a value, then the default DB cluster
|
1755
|
+
# parameter group for the specified DB engine and version is used.
|
1730
1756
|
#
|
1731
1757
|
# Constraints:
|
1732
1758
|
#
|
@@ -1877,14 +1903,14 @@ module Aws::RDS
|
|
1877
1903
|
# cluster, then you can use the KMS key alias instead of the ARN for the
|
1878
1904
|
# KMS encryption key.
|
1879
1905
|
#
|
1880
|
-
# If an encryption key
|
1906
|
+
# If an encryption key isn't specified in `KmsKeyId`\:
|
1881
1907
|
#
|
1882
1908
|
# * If `ReplicationSourceIdentifier` identifies an encrypted source,
|
1883
1909
|
# then Amazon RDS will use the encryption key used to encrypt the
|
1884
1910
|
# source. Otherwise, Amazon RDS will use your default encryption key.
|
1885
1911
|
#
|
1886
1912
|
# * If the `StorageEncrypted` parameter is enabled and
|
1887
|
-
# `ReplicationSourceIdentifier`
|
1913
|
+
# `ReplicationSourceIdentifier` isn't specified, then Amazon RDS will
|
1888
1914
|
# use your default encryption key.
|
1889
1915
|
#
|
1890
1916
|
# AWS KMS creates the default encryption key for your AWS account. Your
|
@@ -1931,6 +1957,14 @@ module Aws::RDS
|
|
1931
1957
|
# Authenticating Requests: Using Query Parameters (AWS Signature Version
|
1932
1958
|
# 4)][1] and [ Signature Version 4 Signing Process][2].
|
1933
1959
|
#
|
1960
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
1961
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
1962
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1963
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
1964
|
+
# operation that can be executed in the source AWS Region.
|
1965
|
+
#
|
1966
|
+
# </note>
|
1967
|
+
#
|
1934
1968
|
#
|
1935
1969
|
#
|
1936
1970
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -2400,7 +2434,7 @@ module Aws::RDS
|
|
2400
2434
|
#
|
2401
2435
|
# @option params [required, String] :db_cluster_identifier
|
2402
2436
|
# The identifier of the DB cluster to create a snapshot for. This
|
2403
|
-
# parameter
|
2437
|
+
# parameter isn't case-sensitive.
|
2404
2438
|
#
|
2405
2439
|
# Constraints:
|
2406
2440
|
#
|
@@ -2488,7 +2522,7 @@ module Aws::RDS
|
|
2488
2522
|
# **MySQL**
|
2489
2523
|
#
|
2490
2524
|
# The name of the database to create when the DB instance is created. If
|
2491
|
-
# this parameter
|
2525
|
+
# this parameter isn't specified, no database is created in the DB
|
2492
2526
|
# instance.
|
2493
2527
|
#
|
2494
2528
|
# Constraints:
|
@@ -2500,7 +2534,7 @@ module Aws::RDS
|
|
2500
2534
|
# **MariaDB**
|
2501
2535
|
#
|
2502
2536
|
# The name of the database to create when the DB instance is created. If
|
2503
|
-
# this parameter
|
2537
|
+
# this parameter isn't specified, no database is created in the DB
|
2504
2538
|
# instance.
|
2505
2539
|
#
|
2506
2540
|
# Constraints:
|
@@ -2512,7 +2546,7 @@ module Aws::RDS
|
|
2512
2546
|
# **PostgreSQL**
|
2513
2547
|
#
|
2514
2548
|
# The name of the database to create when the DB instance is created. If
|
2515
|
-
# this parameter
|
2549
|
+
# this parameter isn't specified, the default "postgres" database is
|
2516
2550
|
# created in the DB instance.
|
2517
2551
|
#
|
2518
2552
|
# Constraints:
|
@@ -2545,7 +2579,7 @@ module Aws::RDS
|
|
2545
2579
|
# **Amazon Aurora**
|
2546
2580
|
#
|
2547
2581
|
# The name of the database to create when the primary instance of the DB
|
2548
|
-
# cluster is created. If this parameter
|
2582
|
+
# cluster is created. If this parameter isn't specified, no database is
|
2549
2583
|
# created in the DB instance.
|
2550
2584
|
#
|
2551
2585
|
# Constraints:
|
@@ -2869,8 +2903,8 @@ module Aws::RDS
|
|
2869
2903
|
#
|
2870
2904
|
# @option params [String] :db_parameter_group_name
|
2871
2905
|
# The name of the DB parameter group to associate with this DB instance.
|
2872
|
-
# If you do not specify a value
|
2873
|
-
#
|
2906
|
+
# If you do not specify a value, then the default DB parameter group for
|
2907
|
+
# the specified DB engine and version is used.
|
2874
2908
|
#
|
2875
2909
|
# Constraints:
|
2876
2910
|
#
|
@@ -3075,15 +3109,15 @@ module Aws::RDS
|
|
3075
3109
|
# A value that indicates whether the DB instance is publicly accessible.
|
3076
3110
|
# When the DB instance is publicly accessible, it is an Internet-facing
|
3077
3111
|
# instance with a publicly resolvable DNS name, which resolves to a
|
3078
|
-
# public IP address. When the DB instance
|
3112
|
+
# public IP address. When the DB instance isn't publicly accessible, it
|
3079
3113
|
# is an internal instance with a DNS name that resolves to a private IP
|
3080
3114
|
# address.
|
3081
3115
|
#
|
3082
3116
|
# Default: The default behavior varies depending on whether
|
3083
3117
|
# `DBSubnetGroupName` is specified.
|
3084
3118
|
#
|
3085
|
-
# If `DBSubnetGroupName`
|
3086
|
-
#
|
3119
|
+
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
3120
|
+
# isn't specified, the following applies:
|
3087
3121
|
#
|
3088
3122
|
# * If the default VPC in the target region doesn’t have an Internet
|
3089
3123
|
# gateway attached to it, the DB instance is private.
|
@@ -3091,7 +3125,7 @@ module Aws::RDS
|
|
3091
3125
|
# * If the default VPC in the target region has an Internet gateway
|
3092
3126
|
# attached to it, the DB instance is public.
|
3093
3127
|
#
|
3094
|
-
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible`
|
3128
|
+
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
3095
3129
|
# specified, the following applies:
|
3096
3130
|
#
|
3097
3131
|
# * If the subnets are part of a VPC that doesn’t have an Internet
|
@@ -3126,7 +3160,7 @@ module Aws::RDS
|
|
3126
3160
|
#
|
3127
3161
|
# @option params [Boolean] :storage_encrypted
|
3128
3162
|
# A value that indicates whether the DB instance is encrypted. By
|
3129
|
-
# default, it
|
3163
|
+
# default, it isn't encrypted.
|
3130
3164
|
#
|
3131
3165
|
# **Amazon Aurora**
|
3132
3166
|
#
|
@@ -3656,6 +3690,11 @@ module Aws::RDS
|
|
3656
3690
|
# region Read Replica, or the default `DBParameterGroup` for the
|
3657
3691
|
# specified DB engine for a cross region Read Replica.
|
3658
3692
|
#
|
3693
|
+
# <note markdown="1"> Currently, specifying a parameter group for this operation is only
|
3694
|
+
# supported for Oracle DB instances.
|
3695
|
+
#
|
3696
|
+
# </note>
|
3697
|
+
#
|
3659
3698
|
# Constraints:
|
3660
3699
|
#
|
3661
3700
|
# * Must be 1 to 255 letters, numbers, or hyphens.
|
@@ -3668,7 +3707,7 @@ module Aws::RDS
|
|
3668
3707
|
# A value that indicates whether the DB instance is publicly accessible.
|
3669
3708
|
# When the DB instance is publicly accessible, it is an Internet-facing
|
3670
3709
|
# instance with a publicly resolvable DNS name, which resolves to a
|
3671
|
-
# public IP address. When the DB instance
|
3710
|
+
# public IP address. When the DB instance isn't publicly accessible, it
|
3672
3711
|
# is an internal instance with a DNS name that resolves to a private IP
|
3673
3712
|
# address. For more information, see CreateDBInstance.
|
3674
3713
|
#
|
@@ -3683,7 +3722,7 @@ module Aws::RDS
|
|
3683
3722
|
# @option params [String] :db_subnet_group_name
|
3684
3723
|
# Specifies a DB subnet group for the DB instance. The new DB instance
|
3685
3724
|
# is created in the VPC associated with the DB subnet group. If no DB
|
3686
|
-
# subnet group is specified, then the new DB instance
|
3725
|
+
# subnet group is specified, then the new DB instance isn't created in
|
3687
3726
|
# a VPC.
|
3688
3727
|
#
|
3689
3728
|
# Constraints:
|
@@ -3776,10 +3815,9 @@ module Aws::RDS
|
|
3776
3815
|
# contains the source DB instance.
|
3777
3816
|
#
|
3778
3817
|
# You must specify this parameter when you create an encrypted Read
|
3779
|
-
# Replica from another AWS Region by using the Amazon RDS API.
|
3780
|
-
# specify
|
3781
|
-
#
|
3782
|
-
# the AWS CLI.
|
3818
|
+
# Replica from another AWS Region by using the Amazon RDS API. Don't
|
3819
|
+
# specify `PreSignedUrl` when you are creating an encrypted Read Replica
|
3820
|
+
# in the same AWS Region.
|
3783
3821
|
#
|
3784
3822
|
# The presigned URL must be a valid request for the
|
3785
3823
|
# `CreateDBInstanceReadReplica` API action that can be executed in the
|
@@ -3817,6 +3855,14 @@ module Aws::RDS
|
|
3817
3855
|
# [Authenticating Requests: Using Query Parameters (AWS Signature
|
3818
3856
|
# Version 4)][1] and [Signature Version 4 Signing Process][2].
|
3819
3857
|
#
|
3858
|
+
# <note markdown="1"> If you are using an AWS SDK tool or the AWS CLI, you can specify
|
3859
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
3860
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
3861
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
3862
|
+
# operation that can be executed in the source AWS Region.
|
3863
|
+
#
|
3864
|
+
# </note>
|
3865
|
+
#
|
3820
3866
|
#
|
3821
3867
|
#
|
3822
3868
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
@@ -4541,7 +4587,7 @@ module Aws::RDS
|
|
4541
4587
|
# @option params [String] :source_type
|
4542
4588
|
# The type of source that is generating the events. For example, if you
|
4543
4589
|
# want to be notified of events generated by a DB instance, you would
|
4544
|
-
# set this parameter to db-instance. if this value
|
4590
|
+
# set this parameter to db-instance. if this value isn't specified, all
|
4545
4591
|
# events are returned.
|
4546
4592
|
#
|
4547
4593
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
@@ -4582,7 +4628,7 @@ module Aws::RDS
|
|
4582
4628
|
#
|
4583
4629
|
# @option params [Boolean] :enabled
|
4584
4630
|
# A value that indicates whether to activate the subscription. If the
|
4585
|
-
# event notification subscription
|
4631
|
+
# event notification subscription isn't activated, the subscription is
|
4586
4632
|
# created but not active.
|
4587
4633
|
#
|
4588
4634
|
# @option params [Array<Types::Tag>] :tags
|
@@ -4930,9 +4976,9 @@ module Aws::RDS
|
|
4930
4976
|
# @option params [Boolean] :skip_final_snapshot
|
4931
4977
|
# A value that indicates whether to skip the creation of a final DB
|
4932
4978
|
# cluster snapshot before the DB cluster is deleted. If skip is
|
4933
|
-
# specified, no DB cluster snapshot is created. If skip
|
4979
|
+
# specified, no DB cluster snapshot is created. If skip isn't
|
4934
4980
|
# specified, a DB cluster snapshot is created before the DB cluster is
|
4935
|
-
# deleted. By default, skip
|
4981
|
+
# deleted. By default, skip isn't specified, and the DB cluster
|
4936
4982
|
# snapshot is created. By default, this parameter is disabled.
|
4937
4983
|
#
|
4938
4984
|
# <note markdown="1"> You must specify a `FinalDBSnapshotIdentifier` parameter if
|
@@ -5301,8 +5347,8 @@ module Aws::RDS
|
|
5301
5347
|
# @option params [Boolean] :skip_final_snapshot
|
5302
5348
|
# A value that indicates whether to skip the creation of a final DB
|
5303
5349
|
# snapshot before the DB instance is deleted. If skip is specified, no
|
5304
|
-
# DB snapshot is created. If skip
|
5305
|
-
# created before the DB instance is deleted. By default, skip
|
5350
|
+
# DB snapshot is created. If skip isn't specified, a DB snapshot is
|
5351
|
+
# created before the DB instance is deleted. By default, skip isn't
|
5306
5352
|
# specified, and the DB snapshot is created.
|
5307
5353
|
#
|
5308
5354
|
# Note that when a DB instance is in a failure state and has a status of
|
@@ -5311,8 +5357,8 @@ module Aws::RDS
|
|
5311
5357
|
#
|
5312
5358
|
# Specify skip when deleting a Read Replica.
|
5313
5359
|
#
|
5314
|
-
# <note markdown="1"> The FinalDBSnapshotIdentifier parameter must be specified if skip
|
5315
|
-
#
|
5360
|
+
# <note markdown="1"> The FinalDBSnapshotIdentifier parameter must be specified if skip
|
5361
|
+
# isn't specified.
|
5316
5362
|
#
|
5317
5363
|
# </note>
|
5318
5364
|
#
|
@@ -5866,11 +5912,11 @@ module Aws::RDS
|
|
5866
5912
|
req.send_request(options)
|
5867
5913
|
end
|
5868
5914
|
|
5869
|
-
# Deletes the installation
|
5870
|
-
#
|
5915
|
+
# Deletes the installation medium for a DB engine that requires an
|
5916
|
+
# on-premises customer provided license, such as Microsoft SQL Server.
|
5871
5917
|
#
|
5872
5918
|
# @option params [required, String] :installation_media_id
|
5873
|
-
# The installation
|
5919
|
+
# The installation medium ID.
|
5874
5920
|
#
|
5875
5921
|
# @return [Types::InstallationMedia] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5876
5922
|
#
|
@@ -5998,13 +6044,13 @@ module Aws::RDS
|
|
5998
6044
|
# ^
|
5999
6045
|
#
|
6000
6046
|
# @option params [Array<Types::Filter>] :filters
|
6001
|
-
# This parameter
|
6047
|
+
# This parameter isn't currently supported.
|
6002
6048
|
#
|
6003
6049
|
# @option params [Integer] :max_records
|
6004
6050
|
# The maximum number of records to include in the response. If more
|
6005
6051
|
# records exist than the specified `MaxRecords` value, a pagination
|
6006
|
-
# token called a marker is included in the response so
|
6007
|
-
#
|
6052
|
+
# token called a marker is included in the response so you can retrieve
|
6053
|
+
# the remaining results.
|
6008
6054
|
#
|
6009
6055
|
# Default: 100
|
6010
6056
|
#
|
@@ -6091,8 +6137,8 @@ module Aws::RDS
|
|
6091
6137
|
# @option params [Integer] :max_records
|
6092
6138
|
# The maximum number of records to include in the response. If more
|
6093
6139
|
# records exist than the specified `MaxRecords` value, a pagination
|
6094
|
-
# token called a marker is included in the response so
|
6095
|
-
#
|
6140
|
+
# token called a marker is included in the response so you can retrieve
|
6141
|
+
# the remaining results.
|
6096
6142
|
#
|
6097
6143
|
# Default: 100
|
6098
6144
|
#
|
@@ -6216,8 +6262,8 @@ module Aws::RDS
|
|
6216
6262
|
# @option params [Integer] :max_records
|
6217
6263
|
# The maximum number of records to include in the response. If more
|
6218
6264
|
# records exist than the specified `MaxRecords` value, a pagination
|
6219
|
-
# token called a marker is included in the response so
|
6220
|
-
#
|
6265
|
+
# token called a marker is included in the response so you can retrieve
|
6266
|
+
# the remaining results.
|
6221
6267
|
#
|
6222
6268
|
# Default: 100
|
6223
6269
|
#
|
@@ -6299,8 +6345,8 @@ module Aws::RDS
|
|
6299
6345
|
# @option params [Integer] :max_records
|
6300
6346
|
# The maximum number of records to include in the response. If more
|
6301
6347
|
# records exist than the specified `MaxRecords` value, a pagination
|
6302
|
-
# token called a marker is included in the response so
|
6303
|
-
#
|
6348
|
+
# token called a marker is included in the response so you can retrieve
|
6349
|
+
# the remaining results.
|
6304
6350
|
#
|
6305
6351
|
# Default: 100
|
6306
6352
|
#
|
@@ -6386,13 +6432,13 @@ module Aws::RDS
|
|
6386
6432
|
# ^
|
6387
6433
|
#
|
6388
6434
|
# @option params [Array<Types::Filter>] :filters
|
6389
|
-
# This parameter
|
6435
|
+
# This parameter isn't currently supported.
|
6390
6436
|
#
|
6391
6437
|
# @option params [Integer] :max_records
|
6392
6438
|
# The maximum number of records to include in the response. If more
|
6393
6439
|
# records exist than the specified `MaxRecords` value, a pagination
|
6394
|
-
# token called a marker is included in the response so
|
6395
|
-
#
|
6440
|
+
# token called a marker is included in the response so you can retrieve
|
6441
|
+
# the remaining results.
|
6396
6442
|
#
|
6397
6443
|
# Default: 100
|
6398
6444
|
#
|
@@ -6484,13 +6530,13 @@ module Aws::RDS
|
|
6484
6530
|
# source. Parameter sources can be `engine`, `service`, or `customer`.
|
6485
6531
|
#
|
6486
6532
|
# @option params [Array<Types::Filter>] :filters
|
6487
|
-
# This parameter
|
6533
|
+
# This parameter isn't currently supported.
|
6488
6534
|
#
|
6489
6535
|
# @option params [Integer] :max_records
|
6490
6536
|
# The maximum number of records to include in the response. If more
|
6491
6537
|
# records exist than the specified `MaxRecords` value, a pagination
|
6492
|
-
# token called a marker is included in the response so
|
6493
|
-
#
|
6538
|
+
# token called a marker is included in the response so you can retrieve
|
6539
|
+
# the remaining results.
|
6494
6540
|
#
|
6495
6541
|
# Default: 100
|
6496
6542
|
#
|
@@ -6643,7 +6689,7 @@ module Aws::RDS
|
|
6643
6689
|
# @option params [String] :db_cluster_identifier
|
6644
6690
|
# The ID of the DB cluster to retrieve the list of DB cluster snapshots
|
6645
6691
|
# for. This parameter can't be used in conjunction with the
|
6646
|
-
# `DBClusterSnapshotIdentifier` parameter. This parameter
|
6692
|
+
# `DBClusterSnapshotIdentifier` parameter. This parameter isn't
|
6647
6693
|
# case-sensitive.
|
6648
6694
|
#
|
6649
6695
|
# Constraints:
|
@@ -6710,8 +6756,8 @@ module Aws::RDS
|
|
6710
6756
|
# @option params [Integer] :max_records
|
6711
6757
|
# The maximum number of records to include in the response. If more
|
6712
6758
|
# records exist than the specified `MaxRecords` value, a pagination
|
6713
|
-
# token called a marker is included in the response so
|
6714
|
-
#
|
6759
|
+
# token called a marker is included in the response so you can retrieve
|
6760
|
+
# the remaining results.
|
6715
6761
|
#
|
6716
6762
|
# Default: 100
|
6717
6763
|
#
|
@@ -6852,8 +6898,8 @@ module Aws::RDS
|
|
6852
6898
|
# @option params [Integer] :max_records
|
6853
6899
|
# The maximum number of records to include in the response. If more
|
6854
6900
|
# records exist than the specified `MaxRecords` value, a pagination
|
6855
|
-
# token called a marker is included in the response so
|
6856
|
-
#
|
6901
|
+
# token called a marker is included in the response so you can retrieve
|
6902
|
+
# the remaining results.
|
6857
6903
|
#
|
6858
6904
|
# Default: 100
|
6859
6905
|
#
|
@@ -7007,13 +7053,13 @@ module Aws::RDS
|
|
7007
7053
|
# ^
|
7008
7054
|
#
|
7009
7055
|
# @option params [Array<Types::Filter>] :filters
|
7010
|
-
# This parameter
|
7056
|
+
# This parameter isn't currently supported.
|
7011
7057
|
#
|
7012
7058
|
# @option params [Integer] :max_records
|
7013
7059
|
# The maximum number of records to include in the response. If more than
|
7014
7060
|
# the `MaxRecords` value is available, a pagination token called a
|
7015
|
-
# marker is included in the response so
|
7016
|
-
#
|
7061
|
+
# marker is included in the response so you can retrieve the remaining
|
7062
|
+
# results.
|
7017
7063
|
#
|
7018
7064
|
# Default: 100
|
7019
7065
|
#
|
@@ -7486,13 +7532,13 @@ module Aws::RDS
|
|
7486
7532
|
# size.
|
7487
7533
|
#
|
7488
7534
|
# @option params [Array<Types::Filter>] :filters
|
7489
|
-
# This parameter
|
7535
|
+
# This parameter isn't currently supported.
|
7490
7536
|
#
|
7491
7537
|
# @option params [Integer] :max_records
|
7492
7538
|
# The maximum number of records to include in the response. If more
|
7493
7539
|
# records exist than the specified MaxRecords value, a pagination token
|
7494
|
-
# called a marker is included in the response so
|
7495
|
-
#
|
7540
|
+
# called a marker is included in the response so you can retrieve the
|
7541
|
+
# remaining results.
|
7496
7542
|
#
|
7497
7543
|
# @option params [String] :marker
|
7498
7544
|
# The pagination token provided in the previous request. If this
|
@@ -7570,7 +7616,7 @@ module Aws::RDS
|
|
7570
7616
|
# ^
|
7571
7617
|
#
|
7572
7618
|
# @option params [Array<Types::Filter>] :filters
|
7573
|
-
# This parameter
|
7619
|
+
# This parameter isn't currently supported.
|
7574
7620
|
#
|
7575
7621
|
# @option params [Integer] :max_records
|
7576
7622
|
# The maximum number of records to include in the response. If more
|
@@ -7658,7 +7704,7 @@ module Aws::RDS
|
|
7658
7704
|
# Valid Values: `user | system | engine-default`
|
7659
7705
|
#
|
7660
7706
|
# @option params [Array<Types::Filter>] :filters
|
7661
|
-
# This parameter
|
7707
|
+
# This parameter isn't currently supported.
|
7662
7708
|
#
|
7663
7709
|
# @option params [Integer] :max_records
|
7664
7710
|
# The maximum number of records to include in the response. If more
|
@@ -7745,7 +7791,7 @@ module Aws::RDS
|
|
7745
7791
|
# The name of the DB security group to return details for.
|
7746
7792
|
#
|
7747
7793
|
# @option params [Array<Types::Filter>] :filters
|
7748
|
-
# This parameter
|
7794
|
+
# This parameter isn't currently supported.
|
7749
7795
|
#
|
7750
7796
|
# @option params [Integer] :max_records
|
7751
7797
|
# The maximum number of records to include in the response. If more
|
@@ -7887,7 +7933,7 @@ module Aws::RDS
|
|
7887
7933
|
# @option params [String] :db_instance_identifier
|
7888
7934
|
# The ID of the DB instance to retrieve the list of DB snapshots for.
|
7889
7935
|
# This parameter can't be used in conjunction with
|
7890
|
-
# `DBSnapshotIdentifier`. This parameter
|
7936
|
+
# `DBSnapshotIdentifier`. This parameter isn't case-sensitive.
|
7891
7937
|
#
|
7892
7938
|
# Constraints:
|
7893
7939
|
#
|
@@ -8098,7 +8144,7 @@ module Aws::RDS
|
|
8098
8144
|
# The name of the DB subnet group to return details for.
|
8099
8145
|
#
|
8100
8146
|
# @option params [Array<Types::Filter>] :filters
|
8101
|
-
# This parameter
|
8147
|
+
# This parameter isn't currently supported.
|
8102
8148
|
#
|
8103
8149
|
# @option params [Integer] :max_records
|
8104
8150
|
# The maximum number of records to include in the response. If more
|
@@ -8186,13 +8232,13 @@ module Aws::RDS
|
|
8186
8232
|
# parameter information for.
|
8187
8233
|
#
|
8188
8234
|
# @option params [Array<Types::Filter>] :filters
|
8189
|
-
# This parameter
|
8235
|
+
# This parameter isn't currently supported.
|
8190
8236
|
#
|
8191
8237
|
# @option params [Integer] :max_records
|
8192
8238
|
# The maximum number of records to include in the response. If more
|
8193
8239
|
# records exist than the specified `MaxRecords` value, a pagination
|
8194
|
-
# token called a marker is included in the response so
|
8195
|
-
#
|
8240
|
+
# token called a marker is included in the response so you can retrieve
|
8241
|
+
# the remaining results.
|
8196
8242
|
#
|
8197
8243
|
# Default: 100
|
8198
8244
|
#
|
@@ -8271,13 +8317,13 @@ module Aws::RDS
|
|
8271
8317
|
# The name of the DB parameter group family.
|
8272
8318
|
#
|
8273
8319
|
# @option params [Array<Types::Filter>] :filters
|
8274
|
-
# This parameter
|
8320
|
+
# This parameter isn't currently supported.
|
8275
8321
|
#
|
8276
8322
|
# @option params [Integer] :max_records
|
8277
8323
|
# The maximum number of records to include in the response. If more
|
8278
8324
|
# records exist than the specified `MaxRecords` value, a pagination
|
8279
|
-
# token called a marker is included in the response so
|
8280
|
-
#
|
8325
|
+
# token called a marker is included in the response so you can retrieve
|
8326
|
+
# the remaining results.
|
8281
8327
|
#
|
8282
8328
|
# Default: 100
|
8283
8329
|
#
|
@@ -8365,7 +8411,7 @@ module Aws::RDS
|
|
8365
8411
|
# \| db-snapshot
|
8366
8412
|
#
|
8367
8413
|
# @option params [Array<Types::Filter>] :filters
|
8368
|
-
# This parameter
|
8414
|
+
# This parameter isn't currently supported.
|
8369
8415
|
#
|
8370
8416
|
# @return [Types::EventCategoriesMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8371
8417
|
#
|
@@ -8424,7 +8470,7 @@ module Aws::RDS
|
|
8424
8470
|
# describe.
|
8425
8471
|
#
|
8426
8472
|
# @option params [Array<Types::Filter>] :filters
|
8427
|
-
# This parameter
|
8473
|
+
# This parameter isn't currently supported.
|
8428
8474
|
#
|
8429
8475
|
# @option params [Integer] :max_records
|
8430
8476
|
# The maximum number of records to include in the response. If more
|
@@ -8564,7 +8610,7 @@ module Aws::RDS
|
|
8564
8610
|
# notification subscription.
|
8565
8611
|
#
|
8566
8612
|
# @option params [Array<Types::Filter>] :filters
|
8567
|
-
# This parameter
|
8613
|
+
# This parameter isn't currently supported.
|
8568
8614
|
#
|
8569
8615
|
# @option params [Integer] :max_records
|
8570
8616
|
# The maximum number of records to include in the response. If more
|
@@ -8744,11 +8790,12 @@ module Aws::RDS
|
|
8744
8790
|
req.send_request(options)
|
8745
8791
|
end
|
8746
8792
|
|
8747
|
-
# Describes the available installation media for
|
8748
|
-
#
|
8793
|
+
# Describes the available installation media for a DB engine that
|
8794
|
+
# requires an on-premises customer provided license, such as Microsoft
|
8795
|
+
# SQL Server.
|
8749
8796
|
#
|
8750
8797
|
# @option params [String] :installation_media_id
|
8751
|
-
# The installation
|
8798
|
+
# The installation medium ID.
|
8752
8799
|
#
|
8753
8800
|
# @option params [Array<Types::Filter>] :filters
|
8754
8801
|
# A filter that specifies one or more installation media to describe.
|
@@ -8828,7 +8875,7 @@ module Aws::RDS
|
|
8828
8875
|
# specified major engine version.
|
8829
8876
|
#
|
8830
8877
|
# @option params [Array<Types::Filter>] :filters
|
8831
|
-
# This parameter
|
8878
|
+
# This parameter isn't currently supported.
|
8832
8879
|
#
|
8833
8880
|
# @option params [Integer] :max_records
|
8834
8881
|
# The maximum number of records to include in the response. If more
|
@@ -8930,7 +8977,7 @@ module Aws::RDS
|
|
8930
8977
|
# with EngineName or MajorEngineVersion.
|
8931
8978
|
#
|
8932
8979
|
# @option params [Array<Types::Filter>] :filters
|
8933
|
-
# This parameter
|
8980
|
+
# This parameter isn't currently supported.
|
8934
8981
|
#
|
8935
8982
|
# @option params [String] :marker
|
8936
8983
|
# An optional pagination token provided by a previous
|
@@ -9058,7 +9105,7 @@ module Aws::RDS
|
|
9058
9105
|
# A value that indicates whether to show only VPC or non-VPC offerings.
|
9059
9106
|
#
|
9060
9107
|
# @option params [Array<Types::Filter>] :filters
|
9061
|
-
# This parameter
|
9108
|
+
# This parameter isn't currently supported.
|
9062
9109
|
#
|
9063
9110
|
# @option params [Integer] :max_records
|
9064
9111
|
# The maximum number of records to include in the response. If more
|
@@ -9298,13 +9345,13 @@ module Aws::RDS
|
|
9298
9345
|
# </note>
|
9299
9346
|
#
|
9300
9347
|
# @option params [Array<Types::Filter>] :filters
|
9301
|
-
# This parameter
|
9348
|
+
# This parameter isn't currently supported.
|
9302
9349
|
#
|
9303
9350
|
# @option params [Integer] :max_records
|
9304
9351
|
# The maximum number of records to include in the response. If more than
|
9305
9352
|
# the `MaxRecords` value is available, a pagination token called a
|
9306
|
-
# marker is included in the response so
|
9307
|
-
#
|
9353
|
+
# marker is included in the response so you can retrieve the remaining
|
9354
|
+
# results.
|
9308
9355
|
#
|
9309
9356
|
# Default: 100
|
9310
9357
|
#
|
@@ -9430,13 +9477,13 @@ module Aws::RDS
|
|
9430
9477
|
# support Multi-AZ.
|
9431
9478
|
#
|
9432
9479
|
# @option params [Array<Types::Filter>] :filters
|
9433
|
-
# This parameter
|
9480
|
+
# This parameter isn't currently supported.
|
9434
9481
|
#
|
9435
9482
|
# @option params [Integer] :max_records
|
9436
9483
|
# The maximum number of records to include in the response. If more than
|
9437
9484
|
# the `MaxRecords` value is available, a pagination token called a
|
9438
|
-
# marker is included in the response so
|
9439
|
-
#
|
9485
|
+
# marker is included in the response so you can retrieve the remaining
|
9486
|
+
# results.
|
9440
9487
|
#
|
9441
9488
|
# Default: 100
|
9442
9489
|
#
|
@@ -9531,8 +9578,8 @@ module Aws::RDS
|
|
9531
9578
|
# @option params [Integer] :max_records
|
9532
9579
|
# The maximum number of records to include in the response. If more
|
9533
9580
|
# records exist than the specified `MaxRecords` value, a pagination
|
9534
|
-
# token called a marker is included in the response so
|
9535
|
-
#
|
9581
|
+
# token called a marker is included in the response so you can retrieve
|
9582
|
+
# the remaining results.
|
9536
9583
|
#
|
9537
9584
|
# Default: 100
|
9538
9585
|
#
|
@@ -9545,7 +9592,7 @@ module Aws::RDS
|
|
9545
9592
|
# specified by `MaxRecords`.
|
9546
9593
|
#
|
9547
9594
|
# @option params [Array<Types::Filter>] :filters
|
9548
|
-
# This parameter
|
9595
|
+
# This parameter isn't currently supported.
|
9549
9596
|
#
|
9550
9597
|
# @return [Types::SourceRegionMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9551
9598
|
#
|
@@ -9728,7 +9775,7 @@ module Aws::RDS
|
|
9728
9775
|
# file is returned up to a maximum of 10000 lines, starting with the
|
9729
9776
|
# most recent log entries first.
|
9730
9777
|
#
|
9731
|
-
# * If NumberOfLines is specified and Marker
|
9778
|
+
# * If NumberOfLines is specified and Marker isn't specified, then the
|
9732
9779
|
# most recent lines from the end of the log file are returned.
|
9733
9780
|
#
|
9734
9781
|
# * If Marker is specified as "0", then the specified number of lines
|
@@ -9810,7 +9857,7 @@ module Aws::RDS
|
|
9810
9857
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
9811
9858
|
#
|
9812
9859
|
# @option params [required, String] :db_cluster_identifier
|
9813
|
-
# A DB cluster identifier to force a failover for. This parameter
|
9860
|
+
# A DB cluster identifier to force a failover for. This parameter isn't
|
9814
9861
|
# case-sensitive.
|
9815
9862
|
#
|
9816
9863
|
# Constraints:
|
@@ -9934,8 +9981,8 @@ module Aws::RDS
|
|
9934
9981
|
req.send_request(options)
|
9935
9982
|
end
|
9936
9983
|
|
9937
|
-
# Imports the installation media for
|
9938
|
-
#
|
9984
|
+
# Imports the installation media for a DB engine that requires an
|
9985
|
+
# on-premises customer provided license, such as SQL Server.
|
9939
9986
|
#
|
9940
9987
|
# @option params [required, String] :custom_availability_zone_id
|
9941
9988
|
# The identifier of the custom Availability Zone (AZ) to import the
|
@@ -9944,8 +9991,8 @@ module Aws::RDS
|
|
9944
9991
|
# @option params [required, String] :engine
|
9945
9992
|
# The name of the database engine to be used for this instance.
|
9946
9993
|
#
|
9947
|
-
# The list only includes supported
|
9948
|
-
#
|
9994
|
+
# The list only includes supported DB engines that require an
|
9995
|
+
# on-premises customer provided license.
|
9949
9996
|
#
|
9950
9997
|
# Valid Values:
|
9951
9998
|
#
|
@@ -9963,8 +10010,8 @@ module Aws::RDS
|
|
9963
10010
|
# For a list of valid engine versions, call DescribeDBEngineVersions.
|
9964
10011
|
#
|
9965
10012
|
# The following are the database engines and links to information about
|
9966
|
-
# the major and minor versions. The list only includes
|
9967
|
-
# on-premises
|
10013
|
+
# the major and minor versions. The list only includes DB engines that
|
10014
|
+
# require an on-premises customer provided license.
|
9968
10015
|
#
|
9969
10016
|
# **Microsoft SQL Server**
|
9970
10017
|
#
|
@@ -9976,14 +10023,14 @@ module Aws::RDS
|
|
9976
10023
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.FeatureSupport
|
9977
10024
|
#
|
9978
10025
|
# @option params [required, String] :engine_installation_media_path
|
9979
|
-
# The path to the installation
|
10026
|
+
# The path to the installation medium for the specified DB engine.
|
9980
10027
|
#
|
9981
10028
|
# Example:
|
9982
10029
|
# `SQLServerISO/en_sql_server_2016_enterprise_x64_dvd_8701793.iso`
|
9983
10030
|
#
|
9984
10031
|
# @option params [required, String] :os_installation_media_path
|
9985
|
-
# The path to the installation
|
9986
|
-
# with the specified DB engine.
|
10032
|
+
# The path to the installation medium for the operating system
|
10033
|
+
# associated with the specified DB engine.
|
9987
10034
|
#
|
9988
10035
|
# Example: `WindowsISO/en_windows_server_2016_x64_dvd_9327751.iso`
|
9989
10036
|
#
|
@@ -10048,7 +10095,7 @@ module Aws::RDS
|
|
10048
10095
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
10049
10096
|
#
|
10050
10097
|
# @option params [Array<Types::Filter>] :filters
|
10051
|
-
# This parameter
|
10098
|
+
# This parameter isn't currently supported.
|
10052
10099
|
#
|
10053
10100
|
# @return [Types::TagListMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10054
10101
|
#
|
@@ -10127,7 +10174,7 @@ module Aws::RDS
|
|
10127
10174
|
#
|
10128
10175
|
# @option params [required, String] :db_cluster_identifier
|
10129
10176
|
# The DB cluster identifier for the cluster being modified. This
|
10130
|
-
# parameter
|
10177
|
+
# parameter isn't case-sensitive.
|
10131
10178
|
#
|
10132
10179
|
# Constraints:
|
10133
10180
|
#
|
@@ -10164,7 +10211,7 @@ module Aws::RDS
|
|
10164
10211
|
# specified value as soon as possible.
|
10165
10212
|
#
|
10166
10213
|
# `RollbackCapacityChange` ignores the capacity change if a scaling
|
10167
|
-
# point
|
10214
|
+
# point isn't found in the timeout period.
|
10168
10215
|
#
|
10169
10216
|
# @return [Types::DBClusterCapacityInfo] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10170
10217
|
#
|
@@ -10216,7 +10263,7 @@ module Aws::RDS
|
|
10216
10263
|
#
|
10217
10264
|
# @option params [required, String] :db_cluster_identifier
|
10218
10265
|
# The DB cluster identifier for the cluster being modified. This
|
10219
|
-
# parameter
|
10266
|
+
# parameter isn't case-sensitive.
|
10220
10267
|
#
|
10221
10268
|
# Constraints: This identifier must match the identifier of an existing
|
10222
10269
|
# DB cluster.
|
@@ -10918,7 +10965,7 @@ module Aws::RDS
|
|
10918
10965
|
# @option params [String] :db_subnet_group_name
|
10919
10966
|
# The new DB subnet group for the DB instance. You can use this
|
10920
10967
|
# parameter to move your DB instance to a different VPC. If your DB
|
10921
|
-
# instance
|
10968
|
+
# instance isn't in a VPC, you can also use this parameter to move your
|
10922
10969
|
# DB instance into a VPC. For more information, see [Updating the VPC
|
10923
10970
|
# for a DB Instance][1] in the *Amazon RDS User Guide.*
|
10924
10971
|
#
|
@@ -11353,7 +11400,7 @@ module Aws::RDS
|
|
11353
11400
|
# A value that indicates whether the DB instance is publicly accessible.
|
11354
11401
|
# When the DB instance is publicly accessible, it is an Internet-facing
|
11355
11402
|
# instance with a publicly resolvable DNS name, which resolves to a
|
11356
|
-
# public IP address. When the DB instance
|
11403
|
+
# public IP address. When the DB instance isn't publicly accessible, it
|
11357
11404
|
# is an internal instance with a DNS name that resolves to a private IP
|
11358
11405
|
# address.
|
11359
11406
|
#
|
@@ -12067,7 +12114,7 @@ module Aws::RDS
|
|
12067
12114
|
# @option params [String] :source_type
|
12068
12115
|
# The type of source that is generating the events. For example, if you
|
12069
12116
|
# want to be notified of events generated by a DB instance, you would
|
12070
|
-
# set this parameter to db-instance.
|
12117
|
+
# set this parameter to db-instance. If this value isn't specified, all
|
12071
12118
|
# events are returned.
|
12072
12119
|
#
|
12073
12120
|
# Valid values: db-instance \| db-parameter-group \| db-security-group
|
@@ -12161,7 +12208,7 @@ module Aws::RDS
|
|
12161
12208
|
#
|
12162
12209
|
# @option params [String] :global_cluster_identifier
|
12163
12210
|
# The DB cluster identifier for the global cluster being modified. This
|
12164
|
-
# parameter
|
12211
|
+
# parameter isn't case-sensitive.
|
12165
12212
|
#
|
12166
12213
|
# Constraints:
|
12167
12214
|
#
|
@@ -12576,7 +12623,7 @@ module Aws::RDS
|
|
12576
12623
|
#
|
12577
12624
|
# @option params [required, String] :db_cluster_identifier
|
12578
12625
|
# The identifier of the DB cluster Read Replica to promote. This
|
12579
|
-
# parameter
|
12626
|
+
# parameter isn't case-sensitive.
|
12580
12627
|
#
|
12581
12628
|
# Constraints:
|
12582
12629
|
#
|
@@ -12797,7 +12844,7 @@ module Aws::RDS
|
|
12797
12844
|
# A value that indicates whether the reboot is conducted through a
|
12798
12845
|
# Multi-AZ failover.
|
12799
12846
|
#
|
12800
|
-
# Constraint: You can't enable force failover if the instance
|
12847
|
+
# Constraint: You can't enable force failover if the instance isn't
|
12801
12848
|
# configured for Multi-AZ.
|
12802
12849
|
#
|
12803
12850
|
# @return [Types::RebootDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -13811,8 +13858,9 @@ module Aws::RDS
|
|
13811
13858
|
#
|
13812
13859
|
# If a DB cluster snapshot is specified, the target DB cluster is
|
13813
13860
|
# created from the source DB cluster restore point with the same
|
13814
|
-
# configuration as the original source DB cluster
|
13815
|
-
# DB cluster is
|
13861
|
+
# configuration as the original source DB cluster. If you don't specify
|
13862
|
+
# a security group, the new DB cluster is associated with the default
|
13863
|
+
# security group.
|
13816
13864
|
#
|
13817
13865
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
13818
13866
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
@@ -13885,6 +13933,11 @@ module Aws::RDS
|
|
13885
13933
|
# `aws rds describe-db-engine-versions --engine aurora-postgresql
|
13886
13934
|
# --query "DBEngineVersions[].EngineVersion"`
|
13887
13935
|
#
|
13936
|
+
# <note markdown="1"> If you aren't using the default engine version, then you must specify
|
13937
|
+
# the engine version.
|
13938
|
+
#
|
13939
|
+
# </note>
|
13940
|
+
#
|
13888
13941
|
# **Aurora MySQL**
|
13889
13942
|
#
|
13890
13943
|
# Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`, `5.7.12`,
|
@@ -13938,8 +13991,8 @@ module Aws::RDS
|
|
13938
13991
|
# encrypted, then the restored DB cluster is encrypted using the KMS
|
13939
13992
|
# key that was used to encrypt the DB snapshot or DB cluster snapshot.
|
13940
13993
|
#
|
13941
|
-
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
13942
|
-
#
|
13994
|
+
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
13995
|
+
# isn't encrypted, then the restored DB cluster isn't encrypted.
|
13943
13996
|
#
|
13944
13997
|
# @option params [Boolean] :enable_iam_database_authentication
|
13945
13998
|
# A value that indicates whether to enable mapping of AWS Identity and
|
@@ -14222,7 +14275,7 @@ module Aws::RDS
|
|
14222
14275
|
#
|
14223
14276
|
# * Must be before the latest restorable time for the DB instance
|
14224
14277
|
#
|
14225
|
-
# * Must be specified if `UseLatestRestorableTime` parameter
|
14278
|
+
# * Must be specified if `UseLatestRestorableTime` parameter isn't
|
14226
14279
|
# provided
|
14227
14280
|
#
|
14228
14281
|
# * Can't be specified if the `UseLatestRestorableTime` parameter is
|
@@ -14235,7 +14288,7 @@ module Aws::RDS
|
|
14235
14288
|
#
|
14236
14289
|
# @option params [Boolean] :use_latest_restorable_time
|
14237
14290
|
# A value that indicates whether to restore the DB cluster to the latest
|
14238
|
-
# restorable backup time. By default, the DB cluster
|
14291
|
+
# restorable backup time. By default, the DB cluster isn't restored to
|
14239
14292
|
# the latest restorable backup time.
|
14240
14293
|
#
|
14241
14294
|
# Constraints: Can't be specified if `RestoreToTime` parameter is
|
@@ -14292,10 +14345,10 @@ module Aws::RDS
|
|
14292
14345
|
# encrypted using the KMS key that was used to encrypt the source DB
|
14293
14346
|
# cluster.
|
14294
14347
|
#
|
14295
|
-
# * If the DB cluster
|
14296
|
-
#
|
14348
|
+
# * If the DB cluster isn't encrypted, then the restored DB cluster
|
14349
|
+
# isn't encrypted.
|
14297
14350
|
#
|
14298
|
-
# If `DBClusterIdentifier` refers to a DB cluster that
|
14351
|
+
# If `DBClusterIdentifier` refers to a DB cluster that isn't encrypted,
|
14299
14352
|
# then the restore request is rejected.
|
14300
14353
|
#
|
14301
14354
|
# @option params [Boolean] :enable_iam_database_authentication
|
@@ -14589,7 +14642,7 @@ module Aws::RDS
|
|
14589
14642
|
# A value that indicates whether the DB instance is publicly accessible.
|
14590
14643
|
# When the DB instance is publicly accessible, it is an Internet-facing
|
14591
14644
|
# instance with a publicly resolvable DNS name, which resolves to a
|
14592
|
-
# public IP address. When the DB instance
|
14645
|
+
# public IP address. When the DB instance isn't publicly accessible, it
|
14593
14646
|
# is an internal instance with a DNS name that resolves to a private IP
|
14594
14647
|
# address. For more information, see CreateDBInstance.
|
14595
14648
|
#
|
@@ -14648,7 +14701,7 @@ module Aws::RDS
|
|
14648
14701
|
#
|
14649
14702
|
# @option params [Integer] :iops
|
14650
14703
|
# Specifies the amount of provisioned IOPS for the DB instance,
|
14651
|
-
# expressed in I/O operations per second. If this parameter
|
14704
|
+
# expressed in I/O operations per second. If this parameter isn't
|
14652
14705
|
# specified, the IOPS value is taken from the backup. If this parameter
|
14653
14706
|
# is set to 0, the new instance is converted to a non-PIOPS instance.
|
14654
14707
|
# The conversion takes additional time, though your DB instance is
|
@@ -15107,7 +15160,7 @@ module Aws::RDS
|
|
15107
15160
|
# classes, and availability for your engine, see [DB Instance Class][1]
|
15108
15161
|
# in the *Amazon RDS User Guide.*
|
15109
15162
|
#
|
15110
|
-
# Importing from Amazon S3
|
15163
|
+
# Importing from Amazon S3 isn't supported on the db.t2.micro DB
|
15111
15164
|
# instance class.
|
15112
15165
|
#
|
15113
15166
|
#
|
@@ -15262,7 +15315,7 @@ module Aws::RDS
|
|
15262
15315
|
# A value that indicates whether the DB instance is publicly accessible.
|
15263
15316
|
# When the DB instance is publicly accessible, it is an Internet-facing
|
15264
15317
|
# instance with a publicly resolvable DNS name, which resolves to a
|
15265
|
-
# public IP address. When the DB instance
|
15318
|
+
# public IP address. When the DB instance isn't publicly accessible, it
|
15266
15319
|
# is an internal instance with a DNS name that resolves to a private IP
|
15267
15320
|
# address. For more information, see CreateDBInstance.
|
15268
15321
|
#
|
@@ -15665,7 +15718,7 @@ module Aws::RDS
|
|
15665
15718
|
#
|
15666
15719
|
# @option params [Boolean] :use_latest_restorable_time
|
15667
15720
|
# A value that indicates whether the DB instance is restored from the
|
15668
|
-
# latest backup time. By default, the DB instance
|
15721
|
+
# latest backup time. By default, the DB instance isn't restored from
|
15669
15722
|
# the latest backup time.
|
15670
15723
|
#
|
15671
15724
|
# Constraints: Can't be specified if the `RestoreTime` parameter is
|
@@ -15720,7 +15773,7 @@ module Aws::RDS
|
|
15720
15773
|
# A value that indicates whether the DB instance is publicly accessible.
|
15721
15774
|
# When the DB instance is publicly accessible, it is an Internet-facing
|
15722
15775
|
# instance with a publicly resolvable DNS name, which resolves to a
|
15723
|
-
# public IP address. When the DB instance
|
15776
|
+
# public IP address. When the DB instance isn't publicly accessible, it
|
15724
15777
|
# is an internal instance with a DNS name that resolves to a private IP
|
15725
15778
|
# address. For more information, see CreateDBInstance.
|
15726
15779
|
#
|
@@ -15739,7 +15792,7 @@ module Aws::RDS
|
|
15739
15792
|
# @option params [String] :db_name
|
15740
15793
|
# The database name for the restored DB instance.
|
15741
15794
|
#
|
15742
|
-
# <note markdown="1"> This parameter
|
15795
|
+
# <note markdown="1"> This parameter isn't used for the MySQL or MariaDB engines.
|
15743
15796
|
#
|
15744
15797
|
# </note>
|
15745
15798
|
#
|
@@ -15782,7 +15835,7 @@ module Aws::RDS
|
|
15782
15835
|
#
|
15783
15836
|
# **SQL Server**
|
15784
15837
|
#
|
15785
|
-
# Setting the IOPS value for the SQL Server database engine
|
15838
|
+
# Setting the IOPS value for the SQL Server database engine isn't
|
15786
15839
|
# supported.
|
15787
15840
|
#
|
15788
15841
|
# @option params [String] :option_group_name
|
@@ -16215,9 +16268,9 @@ module Aws::RDS
|
|
16215
16268
|
# `EC2SecurityGroupId` must be provided.
|
16216
16269
|
#
|
16217
16270
|
# @option params [String] :ec2_security_group_owner_id
|
16218
|
-
# The AWS
|
16219
|
-
# specified in the `EC2SecurityGroupName` parameter. The AWS
|
16220
|
-
# ID
|
16271
|
+
# The AWS account number of the owner of the EC2 security group
|
16272
|
+
# specified in the `EC2SecurityGroupName` parameter. The AWS access key
|
16273
|
+
# ID isn't an acceptable value. For VPC DB security groups,
|
16221
16274
|
# `EC2SecurityGroupId` must be provided. Otherwise,
|
16222
16275
|
# EC2SecurityGroupOwnerId and either `EC2SecurityGroupName` or
|
16223
16276
|
# `EC2SecurityGroupId` must be provided.
|
@@ -16939,7 +16992,7 @@ module Aws::RDS
|
|
16939
16992
|
params: params,
|
16940
16993
|
config: config)
|
16941
16994
|
context[:gem_name] = 'aws-sdk-rds'
|
16942
|
-
context[:gem_version] = '1.
|
16995
|
+
context[:gem_version] = '1.70.0'
|
16943
16996
|
Seahorse::Client::Request.new(handlers, context)
|
16944
16997
|
end
|
16945
16998
|
|