aws-sdk-rds 1.92.0 → 1.97.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 +2 -2
- data/lib/aws-sdk-rds/client.rb +260 -148
- data/lib/aws-sdk-rds/client_api.rb +13 -0
- data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +11 -22
- data/lib/aws-sdk-rds/db_cluster.rb +7 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +10 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +14 -0
- data/lib/aws-sdk-rds/db_instance.rb +84 -54
- data/lib/aws-sdk-rds/db_snapshot.rb +4 -13
- data/lib/aws-sdk-rds/event_subscription.rb +35 -22
- data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +46 -35
- data/lib/aws-sdk-rds/types.rb +279 -126
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d261d433a065305c39ab5e1b8f98eed6781e6dd439629670f1b6f0ec8f6aba6
|
4
|
+
data.tar.gz: a2e14d068bdfd84a91123fe7a058aed8f823a592f30725690bb7cbd05b85d394
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9fd95d72bd9f528d2f324cbcc5de83d2253eb49c73ae420ddee2d4faa94ac1b3f1ade994136288b8daa1bc5e68fb8aa92e5468ccf83c0f0df6780ccdf6e31242
|
7
|
+
data.tar.gz: e986afe83b30e648ceb040916932cf293f8d2137847edc60759cbe57d642fbc73bc1066b9ae21d070b24017d9caffda5e9d3e2e0ceec7aa6fc6ba918beb85386
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -87,13 +87,28 @@ module Aws::RDS
|
|
87
87
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
88
88
|
# credentials.
|
89
89
|
#
|
90
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
91
|
+
# shared file, such as `~/.aws/config`.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
94
|
+
#
|
95
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
96
|
+
# assume a role after providing credentials via the web.
|
97
|
+
#
|
98
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
99
|
+
# access token generated from `aws login`.
|
100
|
+
#
|
101
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
102
|
+
# process that outputs to stdout.
|
103
|
+
#
|
90
104
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
91
105
|
# from an EC2 IMDS on an EC2 instance.
|
92
106
|
#
|
93
|
-
# * `Aws::
|
94
|
-
#
|
107
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
108
|
+
# instances running in ECS.
|
95
109
|
#
|
96
|
-
# * `Aws::
|
110
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
111
|
+
# from the Cognito Identity service.
|
97
112
|
#
|
98
113
|
# When `:credentials` are not configured directly, the following
|
99
114
|
# locations will be searched for credentials:
|
@@ -103,10 +118,10 @@ module Aws::RDS
|
|
103
118
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
104
119
|
# * `~/.aws/credentials`
|
105
120
|
# * `~/.aws/config`
|
106
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
107
|
-
# very aggressive. Construct and pass an instance of
|
108
|
-
# `Aws::InstanceProfileCredentails`
|
109
|
-
# timeouts.
|
121
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
122
|
+
# are very aggressive. Construct and pass an instance of
|
123
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
124
|
+
# enable retries and extended timeouts.
|
110
125
|
#
|
111
126
|
# @option options [required, String] :region
|
112
127
|
# The AWS region to connect to. The configured `:region` is
|
@@ -410,17 +425,23 @@ module Aws::RDS
|
|
410
425
|
#
|
411
426
|
# Constraints:
|
412
427
|
#
|
413
|
-
# * If the source type is a DB instance,
|
428
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
414
429
|
# must be supplied.
|
415
430
|
#
|
416
|
-
# * If the source type is a DB
|
431
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
417
432
|
# must be supplied.
|
418
433
|
#
|
419
434
|
# * If the source type is a DB parameter group, a `DBParameterGroupName`
|
435
|
+
# value must be supplied.
|
436
|
+
#
|
437
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
438
|
+
# value must be supplied.
|
439
|
+
#
|
440
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` value
|
420
441
|
# must be supplied.
|
421
442
|
#
|
422
|
-
# * If the source type is a DB snapshot, a
|
423
|
-
# be supplied.
|
443
|
+
# * If the source type is a DB cluster snapshot, a
|
444
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
424
445
|
#
|
425
446
|
# @return [Types::AddSourceIdentifierToSubscriptionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
426
447
|
#
|
@@ -2719,6 +2740,9 @@ module Aws::RDS
|
|
2719
2740
|
#
|
2720
2741
|
# * Must contain 1 to 64 letters or numbers.
|
2721
2742
|
#
|
2743
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2744
|
+
# underscores, or digits (0-9).
|
2745
|
+
#
|
2722
2746
|
# * Can't be a word reserved by the specified database engine
|
2723
2747
|
#
|
2724
2748
|
# **MariaDB**
|
@@ -2731,6 +2755,9 @@ module Aws::RDS
|
|
2731
2755
|
#
|
2732
2756
|
# * Must contain 1 to 64 letters or numbers.
|
2733
2757
|
#
|
2758
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2759
|
+
# underscores, or digits (0-9).
|
2760
|
+
#
|
2734
2761
|
# * Can't be a word reserved by the specified database engine
|
2735
2762
|
#
|
2736
2763
|
# **PostgreSQL**
|
@@ -2743,8 +2770,8 @@ module Aws::RDS
|
|
2743
2770
|
#
|
2744
2771
|
# * Must contain 1 to 63 letters, numbers, or underscores.
|
2745
2772
|
#
|
2746
|
-
# * Must begin with a letter
|
2747
|
-
#
|
2773
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2774
|
+
# underscores, or digits (0-9).
|
2748
2775
|
#
|
2749
2776
|
# * Can't be a word reserved by the specified database engine
|
2750
2777
|
#
|
@@ -3386,24 +3413,15 @@ module Aws::RDS
|
|
3386
3413
|
#
|
3387
3414
|
# @option params [String] :domain
|
3388
3415
|
# The Active Directory directory ID to create the DB instance in.
|
3389
|
-
# Currently, only Microsoft SQL Server and
|
3390
|
-
# created in an Active Directory Domain.
|
3416
|
+
# Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
3417
|
+
# instances can be created in an Active Directory Domain.
|
3391
3418
|
#
|
3392
|
-
# For
|
3393
|
-
# Authentication to authenticate users that connect to the DB instance.
|
3394
|
-
# For more information, see [ Using Windows Authentication with an
|
3395
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
3419
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
3396
3420
|
# RDS User Guide*.
|
3397
3421
|
#
|
3398
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos Authentication to
|
3399
|
-
# authenticate users that connect to the DB instance. For more
|
3400
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
3401
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
3402
3422
|
#
|
3403
3423
|
#
|
3404
|
-
#
|
3405
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
3406
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
3424
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
3407
3425
|
#
|
3408
3426
|
# @option params [Boolean] :copy_tags_to_snapshot
|
3409
3427
|
# A value that indicates whether to copy tags from the DB instance to
|
@@ -3679,6 +3697,7 @@ module Aws::RDS
|
|
3679
3697
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
3680
3698
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
3681
3699
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
3700
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
3682
3701
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
3683
3702
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
3684
3703
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -3711,6 +3730,7 @@ module Aws::RDS
|
|
3711
3730
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
3712
3731
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
3713
3732
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
3733
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
3714
3734
|
# resp.db_instance.license_model #=> String
|
3715
3735
|
# resp.db_instance.iops #=> Integer
|
3716
3736
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -4161,27 +4181,42 @@ module Aws::RDS
|
|
4161
4181
|
#
|
4162
4182
|
# @option params [String] :domain
|
4163
4183
|
# The Active Directory directory ID to create the DB instance in.
|
4184
|
+
# Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
4185
|
+
# instances can be created in an Active Directory Domain.
|
4164
4186
|
#
|
4165
|
-
# For
|
4166
|
-
# authenticate users that connect to the DB instance. For more
|
4167
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
4168
|
-
# Oracle][1] in the *Amazon RDS User Guide*.
|
4169
|
-
#
|
4170
|
-
# For Microsoft SQL Server DB instances, Amazon RDS can use Windows
|
4171
|
-
# Authentication to authenticate users that connect to the DB instance.
|
4172
|
-
# For more information, see [ Using Windows Authentication with an
|
4173
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][2] in the *Amazon
|
4187
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
4174
4188
|
# RDS User Guide*.
|
4175
4189
|
#
|
4176
4190
|
#
|
4177
4191
|
#
|
4178
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
4179
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
4192
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
4180
4193
|
#
|
4181
4194
|
# @option params [String] :domain_iam_role_name
|
4182
4195
|
# Specify the name of the IAM role to be used when making API calls to
|
4183
4196
|
# the Directory Service.
|
4184
4197
|
#
|
4198
|
+
# @option params [String] :replica_mode
|
4199
|
+
# The open mode of the replica database: mounted or read-only.
|
4200
|
+
#
|
4201
|
+
# <note markdown="1"> This parameter is only supported for Oracle DB instances.
|
4202
|
+
#
|
4203
|
+
# </note>
|
4204
|
+
#
|
4205
|
+
# Mounted DB replicas are included in Oracle Enterprise Edition. The
|
4206
|
+
# main use case for mounted replicas is cross-Region disaster recovery.
|
4207
|
+
# The primary database doesn't use Active Data Guard to transmit
|
4208
|
+
# information to the mounted replica. Because it doesn't accept user
|
4209
|
+
# connections, a mounted replica can't serve a read-only workload.
|
4210
|
+
#
|
4211
|
+
# You can create a combination of mounted and read-only DB replicas for
|
4212
|
+
# the same primary DB instance. For more information, see [Working with
|
4213
|
+
# Oracle Read Replicas for Amazon RDS][1] in the *Amazon RDS User
|
4214
|
+
# Guide*.
|
4215
|
+
#
|
4216
|
+
#
|
4217
|
+
#
|
4218
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
4219
|
+
#
|
4185
4220
|
# @option params [String] :source_region
|
4186
4221
|
# The source region of the snapshot. This is only needed when the
|
4187
4222
|
# shapshot is encrypted and in a different region.
|
@@ -4260,6 +4295,7 @@ module Aws::RDS
|
|
4260
4295
|
# deletion_protection: false,
|
4261
4296
|
# domain: "String",
|
4262
4297
|
# domain_iam_role_name: "String",
|
4298
|
+
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
4263
4299
|
# source_region: "String",
|
4264
4300
|
# })
|
4265
4301
|
#
|
@@ -4295,6 +4331,7 @@ module Aws::RDS
|
|
4295
4331
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
4296
4332
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
4297
4333
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
4334
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
4298
4335
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
4299
4336
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
4300
4337
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -4327,6 +4364,7 @@ module Aws::RDS
|
|
4327
4364
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
4328
4365
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
4329
4366
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
4367
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
4330
4368
|
# resp.db_instance.license_model #=> String
|
4331
4369
|
# resp.db_instance.iops #=> Integer
|
4332
4370
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -4887,6 +4925,7 @@ module Aws::RDS
|
|
4887
4925
|
# resp.db_subnet_group.subnets #=> Array
|
4888
4926
|
# resp.db_subnet_group.subnets[0].subnet_identifier #=> String
|
4889
4927
|
# resp.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
4928
|
+
# resp.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
4890
4929
|
# resp.db_subnet_group.subnets[0].subnet_status #=> String
|
4891
4930
|
# resp.db_subnet_group.db_subnet_group_arn #=> String
|
4892
4931
|
#
|
@@ -4905,21 +4944,22 @@ module Aws::RDS
|
|
4905
4944
|
# create a topic in Amazon SNS and subscribe to the topic. The ARN is
|
4906
4945
|
# displayed in the SNS console.
|
4907
4946
|
#
|
4908
|
-
# You can specify the type of source (SourceType) you want to be
|
4909
|
-
# notified of
|
4910
|
-
# the events
|
4911
|
-
# for events you want to be notified of. For
|
4912
|
-
# SourceType = db-instance
|
4913
|
-
# EventCategories =
|
4914
|
-
#
|
4915
|
-
#
|
4916
|
-
#
|
4917
|
-
#
|
4918
|
-
#
|
4919
|
-
#
|
4920
|
-
#
|
4921
|
-
#
|
4922
|
-
#
|
4947
|
+
# You can specify the type of source (`SourceType`) that you want to be
|
4948
|
+
# notified of and provide a list of RDS sources (`SourceIds`) that
|
4949
|
+
# triggers the events. You can also provide a list of event categories
|
4950
|
+
# (`EventCategories`) for events that you want to be notified of. For
|
4951
|
+
# example, you can specify `SourceType` = `db-instance`, `SourceIds` =
|
4952
|
+
# `mydbinstance1`, `mydbinstance2` and `EventCategories` =
|
4953
|
+
# `Availability`, `Backup`.
|
4954
|
+
#
|
4955
|
+
# If you specify both the `SourceType` and `SourceIds`, such as
|
4956
|
+
# `SourceType` = `db-instance` and `SourceIdentifier` = `myDBInstance1`,
|
4957
|
+
# you are notified of all the `db-instance` events for the specified
|
4958
|
+
# source. If you specify a `SourceType` but do not specify a
|
4959
|
+
# `SourceIdentifier`, you receive notice of the events for that source
|
4960
|
+
# type for all your RDS sources. If you don't specify either the
|
4961
|
+
# SourceType or the `SourceIdentifier`, you are notified of events
|
4962
|
+
# generated from all RDS sources belonging to your customer account.
|
4923
4963
|
#
|
4924
4964
|
# <note markdown="1"> RDS event notification is only available for unencrypted SNS topics.
|
4925
4965
|
# If you specify an encrypted SNS topic, event notifications aren't
|
@@ -4939,18 +4979,18 @@ module Aws::RDS
|
|
4939
4979
|
#
|
4940
4980
|
# @option params [String] :source_type
|
4941
4981
|
# The type of source that is generating the events. For example, if you
|
4942
|
-
# want to be notified of events generated by a DB instance, you
|
4943
|
-
#
|
4944
|
-
#
|
4982
|
+
# want to be notified of events generated by a DB instance, you set this
|
4983
|
+
# parameter to `db-instance`. If this value isn't specified, all events
|
4984
|
+
# are returned.
|
4945
4985
|
#
|
4946
4986
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
4947
4987
|
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
4948
4988
|
#
|
4949
4989
|
# @option params [Array<String>] :event_categories
|
4950
|
-
# A list of event categories for a
|
4951
|
-
# to. You can see a list of the categories
|
4952
|
-
# [Events][1]
|
4953
|
-
#
|
4990
|
+
# A list of event categories for a particular source type (`SourceType`)
|
4991
|
+
# that you want to subscribe to. You can see a list of the categories
|
4992
|
+
# for a given source type in [Events][1] in the *Amazon RDS User Guide*
|
4993
|
+
# or by using the `DescribeEventCategories` operation.
|
4954
4994
|
#
|
4955
4995
|
#
|
4956
4996
|
#
|
@@ -4965,19 +5005,26 @@ module Aws::RDS
|
|
4965
5005
|
#
|
4966
5006
|
# Constraints:
|
4967
5007
|
#
|
4968
|
-
# * If SourceIds
|
5008
|
+
# * If a `SourceIds` value is supplied, `SourceType` must also be
|
5009
|
+
# provided.
|
4969
5010
|
#
|
4970
|
-
# * If the source type is a DB instance,
|
5011
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
4971
5012
|
# must be supplied.
|
4972
5013
|
#
|
4973
|
-
# * If the source type is a DB
|
5014
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
4974
5015
|
# must be supplied.
|
4975
5016
|
#
|
4976
5017
|
# * If the source type is a DB parameter group, a `DBParameterGroupName`
|
5018
|
+
# value must be supplied.
|
5019
|
+
#
|
5020
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
5021
|
+
# value must be supplied.
|
5022
|
+
#
|
5023
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` value
|
4977
5024
|
# must be supplied.
|
4978
5025
|
#
|
4979
|
-
# * If the source type is a DB snapshot, a
|
4980
|
-
# be supplied.
|
5026
|
+
# * If the source type is a DB cluster snapshot, a
|
5027
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
4981
5028
|
#
|
4982
5029
|
# @option params [Boolean] :enabled
|
4983
5030
|
# A value that indicates whether to activate the subscription. If the
|
@@ -5809,6 +5856,7 @@ module Aws::RDS
|
|
5809
5856
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
5810
5857
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
5811
5858
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
5859
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
5812
5860
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
5813
5861
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
5814
5862
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -5841,6 +5889,7 @@ module Aws::RDS
|
|
5841
5889
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
5842
5890
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
5843
5891
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
5892
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
5844
5893
|
# resp.db_instance.license_model #=> String
|
5845
5894
|
# resp.db_instance.iops #=> Integer
|
5846
5895
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -6794,7 +6843,7 @@ module Aws::RDS
|
|
6794
6843
|
# `writer`, `custom`. `Values` for the `db-cluster-endpoint-custom-type`
|
6795
6844
|
# filter can be one or more of: `reader`, `any`. `Values` for the
|
6796
6845
|
# `db-cluster-endpoint-status` filter can be one or more of:
|
6797
|
-
# `available`, `creating`, `deleting`, `modifying`.
|
6846
|
+
# `available`, `creating`, `deleting`, `inactive`, `modifying`.
|
6798
6847
|
#
|
6799
6848
|
# @option params [Integer] :max_records
|
6800
6849
|
# The maximum number of records to include in the response. If more
|
@@ -7648,6 +7697,8 @@ module Aws::RDS
|
|
7648
7697
|
# resp.db_engine_versions[0].supported_feature_names #=> Array
|
7649
7698
|
# resp.db_engine_versions[0].supported_feature_names[0] #=> String
|
7650
7699
|
# resp.db_engine_versions[0].status #=> String
|
7700
|
+
# resp.db_engine_versions[0].supports_parallel_query #=> Boolean
|
7701
|
+
# resp.db_engine_versions[0].supports_global_databases #=> Boolean
|
7651
7702
|
#
|
7652
7703
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
7653
7704
|
#
|
@@ -7903,6 +7954,7 @@ module Aws::RDS
|
|
7903
7954
|
# resp.db_instances[0].db_subnet_group.subnets #=> Array
|
7904
7955
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_identifier #=> String
|
7905
7956
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
7957
|
+
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
7906
7958
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_status #=> String
|
7907
7959
|
# resp.db_instances[0].db_subnet_group.db_subnet_group_arn #=> String
|
7908
7960
|
# resp.db_instances[0].preferred_maintenance_window #=> String
|
@@ -7935,6 +7987,7 @@ module Aws::RDS
|
|
7935
7987
|
# resp.db_instances[0].read_replica_db_instance_identifiers[0] #=> String
|
7936
7988
|
# resp.db_instances[0].read_replica_db_cluster_identifiers #=> Array
|
7937
7989
|
# resp.db_instances[0].read_replica_db_cluster_identifiers[0] #=> String
|
7990
|
+
# resp.db_instances[0].replica_mode #=> String, one of "open-read-only", "mounted"
|
7938
7991
|
# resp.db_instances[0].license_model #=> String
|
7939
7992
|
# resp.db_instances[0].iops #=> Integer
|
7940
7993
|
# resp.db_instances[0].option_group_memberships #=> Array
|
@@ -8945,6 +8998,7 @@ module Aws::RDS
|
|
8945
8998
|
# resp.db_subnet_groups[0].subnets #=> Array
|
8946
8999
|
# resp.db_subnet_groups[0].subnets[0].subnet_identifier #=> String
|
8947
9000
|
# resp.db_subnet_groups[0].subnets[0].subnet_availability_zone.name #=> String
|
9001
|
+
# resp.db_subnet_groups[0].subnets[0].subnet_outpost.arn #=> String
|
8948
9002
|
# resp.db_subnet_groups[0].subnets[0].subnet_status #=> String
|
8949
9003
|
# resp.db_subnet_groups[0].db_subnet_group_arn #=> String
|
8950
9004
|
#
|
@@ -9139,8 +9193,8 @@ module Aws::RDS
|
|
9139
9193
|
|
9140
9194
|
# Displays a list of categories for all event source types, or, if
|
9141
9195
|
# specified, for a specified source type. You can see a list of the
|
9142
|
-
# event categories and source types in
|
9143
|
-
#
|
9196
|
+
# event categories and source types in [ Events][1] in the *Amazon RDS
|
9197
|
+
# User Guide.*
|
9144
9198
|
#
|
9145
9199
|
#
|
9146
9200
|
#
|
@@ -9149,8 +9203,8 @@ module Aws::RDS
|
|
9149
9203
|
# @option params [String] :source_type
|
9150
9204
|
# The type of source that is generating the events.
|
9151
9205
|
#
|
9152
|
-
# Valid values: db-instance \| db-
|
9153
|
-
# \| db-snapshot
|
9206
|
+
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
9207
|
+
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
9154
9208
|
#
|
9155
9209
|
# @option params [Array<Types::Filter>] :filters
|
9156
9210
|
# This parameter isn't currently supported.
|
@@ -9201,10 +9255,11 @@ module Aws::RDS
|
|
9201
9255
|
end
|
9202
9256
|
|
9203
9257
|
# Lists all the subscription descriptions for a customer account. The
|
9204
|
-
# description for a subscription includes SubscriptionName
|
9205
|
-
# CustomerID
|
9258
|
+
# description for a subscription includes `SubscriptionName`,
|
9259
|
+
# `SNSTopicARN`, `CustomerID`, `SourceType`, `SourceID`, `CreationTime`,
|
9260
|
+
# and `Status`.
|
9206
9261
|
#
|
9207
|
-
# If you specify a SubscriptionName
|
9262
|
+
# If you specify a `SubscriptionName`, lists the description for that
|
9208
9263
|
# subscription.
|
9209
9264
|
#
|
9210
9265
|
# @option params [String] :subscription_name
|
@@ -9290,11 +9345,12 @@ module Aws::RDS
|
|
9290
9345
|
req.send_request(options)
|
9291
9346
|
end
|
9292
9347
|
|
9293
|
-
# Returns events related to DB instances, DB
|
9294
|
-
#
|
9295
|
-
# specific to a particular DB
|
9296
|
-
#
|
9297
|
-
#
|
9348
|
+
# Returns events related to DB instances, DB clusters, DB parameter
|
9349
|
+
# groups, DB security groups, DB snapshots, and DB cluster snapshots for
|
9350
|
+
# the past 14 days. Events specific to a particular DB instances, DB
|
9351
|
+
# clusters, DB parameter groups, DB security groups, DB snapshots, and
|
9352
|
+
# DB cluster snapshots group can be obtained by providing the name as a
|
9353
|
+
# parameter. By default, the past hour of events are returned.
|
9298
9354
|
#
|
9299
9355
|
# @option params [String] :source_identifier
|
9300
9356
|
# The identifier of the event source for which events are returned. If
|
@@ -9302,19 +9358,26 @@ module Aws::RDS
|
|
9302
9358
|
#
|
9303
9359
|
# Constraints:
|
9304
9360
|
#
|
9305
|
-
# * If SourceIdentifier is supplied, SourceType must also be
|
9361
|
+
# * If `SourceIdentifier` is supplied, `SourceType` must also be
|
9362
|
+
# provided.
|
9306
9363
|
#
|
9307
|
-
# * If the source type is
|
9364
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
9308
9365
|
# must be supplied.
|
9309
9366
|
#
|
9310
|
-
# * If the source type is
|
9367
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
9311
9368
|
# must be supplied.
|
9312
9369
|
#
|
9313
|
-
# * If the source type is
|
9370
|
+
# * If the source type is a DB parameter group, a `DBParameterGroupName`
|
9371
|
+
# value must be supplied.
|
9372
|
+
#
|
9373
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
9374
|
+
# value must be supplied.
|
9375
|
+
#
|
9376
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` value
|
9314
9377
|
# must be supplied.
|
9315
9378
|
#
|
9316
|
-
# * If the source type is
|
9317
|
-
# supplied.
|
9379
|
+
# * If the source type is a DB cluster snapshot, a
|
9380
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
9318
9381
|
#
|
9319
9382
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
9320
9383
|
#
|
@@ -10057,6 +10120,8 @@ module Aws::RDS
|
|
10057
10120
|
# resp.orderable_db_instance_options[0].supported_engine_modes[0] #=> String
|
10058
10121
|
# resp.orderable_db_instance_options[0].supports_storage_autoscaling #=> Boolean
|
10059
10122
|
# resp.orderable_db_instance_options[0].supports_kerberos_authentication #=> Boolean
|
10123
|
+
# resp.orderable_db_instance_options[0].outpost_capable #=> Boolean
|
10124
|
+
# resp.orderable_db_instance_options[0].supports_global_databases #=> Boolean
|
10060
10125
|
# resp.marker #=> String
|
10061
10126
|
#
|
10062
10127
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
@@ -11437,6 +11502,13 @@ module Aws::RDS
|
|
11437
11502
|
# `none` to remove the cluster from its current domain. The domain must
|
11438
11503
|
# be created prior to this operation.
|
11439
11504
|
#
|
11505
|
+
# For more information, see [Kerberos Authentication][1] in the *Amazon
|
11506
|
+
# Aurora User Guide*.
|
11507
|
+
#
|
11508
|
+
#
|
11509
|
+
#
|
11510
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
11511
|
+
#
|
11440
11512
|
# @option params [String] :domain_iam_role_name
|
11441
11513
|
# Specify the name of the IAM role to be used when making API calls to
|
11442
11514
|
# the Directory Service.
|
@@ -12315,25 +12387,16 @@ module Aws::RDS
|
|
12315
12387
|
# @option params [String] :domain
|
12316
12388
|
# The Active Directory directory ID to move the DB instance to. Specify
|
12317
12389
|
# `none` to remove the instance from its current domain. The domain must
|
12318
|
-
# be created prior to this operation. Currently, only Microsoft
|
12319
|
-
# Server and
|
12320
|
-
# Domain.
|
12321
|
-
#
|
12322
|
-
# For Microsoft SQL Server DB instances, Amazon RDS can use Windows
|
12323
|
-
# Authentication to authenticate users that connect to the DB instance.
|
12324
|
-
# For more information, see [ Using Windows Authentication with an
|
12325
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
12326
|
-
# RDS User Guide*.
|
12390
|
+
# be created prior to this operation. Currently, only MySQL, Microsoft
|
12391
|
+
# SQL Server, Oracle, and PostgreSQL DB instances can be created in an
|
12392
|
+
# Active Directory Domain.
|
12327
12393
|
#
|
12328
|
-
# For
|
12329
|
-
#
|
12330
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
12331
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
12394
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
12395
|
+
# RDS User Guide*.
|
12332
12396
|
#
|
12333
12397
|
#
|
12334
12398
|
#
|
12335
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
12336
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
12399
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
12337
12400
|
#
|
12338
12401
|
# @option params [Boolean] :copy_tags_to_snapshot
|
12339
12402
|
# A value that indicates whether to copy all tags from the DB instance
|
@@ -12553,6 +12616,26 @@ module Aws::RDS
|
|
12553
12616
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
12554
12617
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
12555
12618
|
#
|
12619
|
+
# @option params [String] :replica_mode
|
12620
|
+
# A value that sets the open mode of a replica database to either
|
12621
|
+
# mounted or read-only.
|
12622
|
+
#
|
12623
|
+
# <note markdown="1"> Currently, this parameter is only supported for Oracle DB instances.
|
12624
|
+
#
|
12625
|
+
# </note>
|
12626
|
+
#
|
12627
|
+
# Mounted DB replicas are included in Oracle Enterprise Edition. The
|
12628
|
+
# main use case for mounted replicas is cross-Region disaster recovery.
|
12629
|
+
# The primary database doesn't use Active Data Guard to transmit
|
12630
|
+
# information to the mounted replica. Because it doesn't accept user
|
12631
|
+
# connections, a mounted replica can't serve a read-only workload. For
|
12632
|
+
# more information, see [Working with Oracle Read Replicas for Amazon
|
12633
|
+
# RDS][1] in the *Amazon RDS User Guide*.
|
12634
|
+
#
|
12635
|
+
#
|
12636
|
+
#
|
12637
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
12638
|
+
#
|
12556
12639
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12557
12640
|
#
|
12558
12641
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -12632,6 +12715,7 @@ module Aws::RDS
|
|
12632
12715
|
# deletion_protection: false,
|
12633
12716
|
# max_allocated_storage: 1,
|
12634
12717
|
# certificate_rotation_restart: false,
|
12718
|
+
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
12635
12719
|
# })
|
12636
12720
|
#
|
12637
12721
|
# @example Response structure
|
@@ -12666,6 +12750,7 @@ module Aws::RDS
|
|
12666
12750
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
12667
12751
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
12668
12752
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
12753
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
12669
12754
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
12670
12755
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
12671
12756
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -12698,6 +12783,7 @@ module Aws::RDS
|
|
12698
12783
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
12699
12784
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
12700
12785
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
12786
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
12701
12787
|
# resp.db_instance.license_model #=> String
|
12702
12788
|
# resp.db_instance.iops #=> Integer
|
12703
12789
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -13301,6 +13387,7 @@ module Aws::RDS
|
|
13301
13387
|
# resp.db_subnet_group.subnets #=> Array
|
13302
13388
|
# resp.db_subnet_group.subnets[0].subnet_identifier #=> String
|
13303
13389
|
# resp.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
13390
|
+
# resp.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
13304
13391
|
# resp.db_subnet_group.subnets[0].subnet_status #=> String
|
13305
13392
|
# resp.db_subnet_group.db_subnet_group_arn #=> String
|
13306
13393
|
#
|
@@ -13319,9 +13406,9 @@ module Aws::RDS
|
|
13319
13406
|
# `AddSourceIdentifierToSubscription` and
|
13320
13407
|
# `RemoveSourceIdentifierFromSubscription` calls.
|
13321
13408
|
#
|
13322
|
-
# You can see a list of the event categories for a given
|
13323
|
-
#
|
13324
|
-
#
|
13409
|
+
# You can see a list of the event categories for a given source type
|
13410
|
+
# (`SourceType`) in [Events][1] in the *Amazon RDS User Guide* or by
|
13411
|
+
# using the `DescribeEventCategories` operation.
|
13325
13412
|
#
|
13326
13413
|
#
|
13327
13414
|
#
|
@@ -13341,14 +13428,14 @@ module Aws::RDS
|
|
13341
13428
|
# set this parameter to db-instance. If this value isn't specified, all
|
13342
13429
|
# events are returned.
|
13343
13430
|
#
|
13344
|
-
# Valid values: db-instance \| db-
|
13345
|
-
# \| db-snapshot
|
13431
|
+
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
13432
|
+
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
13346
13433
|
#
|
13347
13434
|
# @option params [Array<String>] :event_categories
|
13348
|
-
# A list of event categories for a SourceType that you
|
13349
|
-
# to. You can see a list of the categories for a given
|
13350
|
-
# [Events][1]
|
13351
|
-
#
|
13435
|
+
# A list of event categories for a source type (`SourceType`) that you
|
13436
|
+
# want to subscribe to. You can see a list of the categories for a given
|
13437
|
+
# source type in [Events][1] in the *Amazon RDS User Guide* or by using
|
13438
|
+
# the `DescribeEventCategories` operation.
|
13352
13439
|
#
|
13353
13440
|
#
|
13354
13441
|
#
|
@@ -13747,6 +13834,7 @@ module Aws::RDS
|
|
13747
13834
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
13748
13835
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
13749
13836
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
13837
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
13750
13838
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
13751
13839
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
13752
13840
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -13779,6 +13867,7 @@ module Aws::RDS
|
|
13779
13867
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
13780
13868
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
13781
13869
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
13870
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
13782
13871
|
# resp.db_instance.license_model #=> String
|
13783
13872
|
# resp.db_instance.iops #=> Integer
|
13784
13873
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -14138,6 +14227,7 @@ module Aws::RDS
|
|
14138
14227
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
14139
14228
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
14140
14229
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
14230
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
14141
14231
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
14142
14232
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
14143
14233
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -14170,6 +14260,7 @@ module Aws::RDS
|
|
14170
14260
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
14171
14261
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
14172
14262
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
14263
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
14173
14264
|
# resp.db_instance.license_model #=> String
|
14174
14265
|
# resp.db_instance.iops #=> Integer
|
14175
14266
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -14725,11 +14816,11 @@ module Aws::RDS
|
|
14725
14816
|
req.send_request(options)
|
14726
14817
|
end
|
14727
14818
|
|
14728
|
-
# Creates an Amazon Aurora DB cluster from data stored in an
|
14729
|
-
# bucket. Amazon RDS must be authorized to access the Amazon
|
14730
|
-
# and the data must be created using the Percona XtraBackup
|
14731
|
-
# described in [ Migrating Data
|
14732
|
-
# in the *Amazon Aurora User Guide*.
|
14819
|
+
# Creates an Amazon Aurora DB cluster from MySQL data stored in an
|
14820
|
+
# Amazon S3 bucket. Amazon RDS must be authorized to access the Amazon
|
14821
|
+
# S3 bucket and the data must be created using the Percona XtraBackup
|
14822
|
+
# utility as described in [ Migrating Data from MySQL by Using an Amazon
|
14823
|
+
# S3 Bucket][1] in the *Amazon Aurora User Guide*.
|
14733
14824
|
#
|
14734
14825
|
# <note markdown="1"> This action only restores the DB cluster, not the DB instances for
|
14735
14826
|
# that DB cluster. You must invoke the `CreateDBInstance` action to
|
@@ -14743,13 +14834,14 @@ module Aws::RDS
|
|
14743
14834
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
14744
14835
|
# Aurora?][2] in the *Amazon Aurora User Guide.*
|
14745
14836
|
#
|
14746
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
14837
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters. The source DB engine
|
14838
|
+
# must be MySQL.
|
14747
14839
|
#
|
14748
14840
|
# </note>
|
14749
14841
|
#
|
14750
14842
|
#
|
14751
14843
|
#
|
14752
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Migrating.html
|
14844
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Migrating.ExtMySQL.html#AuroraMySQL.Migrating.ExtMySQL.S3
|
14753
14845
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
14754
14846
|
#
|
14755
14847
|
# @option params [Array<String>] :availability_zones
|
@@ -14814,10 +14906,11 @@ module Aws::RDS
|
|
14814
14906
|
# Example: `mySubnetgroup`
|
14815
14907
|
#
|
14816
14908
|
# @option params [required, String] :engine
|
14817
|
-
# The name of the database engine to be used for
|
14818
|
-
# cluster.
|
14909
|
+
# The name of the database engine to be used for this DB cluster.
|
14819
14910
|
#
|
14820
|
-
# Valid Values: `aurora
|
14911
|
+
# Valid Values: `aurora` (for MySQL 5.6-compatible Aurora),
|
14912
|
+
# `aurora-mysql` (for MySQL 5.7-compatible Aurora), and
|
14913
|
+
# `aurora-postgresql`
|
14821
14914
|
#
|
14822
14915
|
# @option params [String] :engine_version
|
14823
14916
|
# The version number of the database engine to use.
|
@@ -14972,7 +15065,7 @@ module Aws::RDS
|
|
14972
15065
|
#
|
14973
15066
|
# MySQL versions 5.5, 5.6, and 5.7 are supported.
|
14974
15067
|
#
|
14975
|
-
# Example: `5.6.40`
|
15068
|
+
# Example: `5.6.40`, `5.7.28`
|
14976
15069
|
#
|
14977
15070
|
# @option params [required, String] :s3_bucket_name
|
14978
15071
|
# The name of the Amazon S3 bucket that contains the data used to create
|
@@ -15400,7 +15493,16 @@ module Aws::RDS
|
|
15400
15493
|
#
|
15401
15494
|
# @option params [String] :domain
|
15402
15495
|
# Specify the Active Directory directory ID to restore the DB cluster
|
15403
|
-
# in. The domain must be created prior to this operation.
|
15496
|
+
# in. The domain must be created prior to this operation. Currently,
|
15497
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances
|
15498
|
+
# can be created in an Active Directory Domain.
|
15499
|
+
#
|
15500
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
15501
|
+
# RDS User Guide*.
|
15502
|
+
#
|
15503
|
+
#
|
15504
|
+
#
|
15505
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
15404
15506
|
#
|
15405
15507
|
# @option params [String] :domain_iam_role_name
|
15406
15508
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -16150,24 +16252,15 @@ module Aws::RDS
|
|
16150
16252
|
# @option params [String] :domain
|
16151
16253
|
# Specify the Active Directory directory ID to restore the DB instance
|
16152
16254
|
# in. The domain must be created prior to this operation. Currently,
|
16153
|
-
# only Microsoft SQL Server and
|
16154
|
-
# Active Directory Domain.
|
16255
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances
|
16256
|
+
# can be created in an Active Directory Domain.
|
16155
16257
|
#
|
16156
|
-
# For
|
16157
|
-
# Authentication to authenticate users that connect to the DB instance.
|
16158
|
-
# For more information, see [ Using Windows Authentication with an
|
16159
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
16258
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
16160
16259
|
# RDS User Guide*.
|
16161
16260
|
#
|
16162
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos Authentication to
|
16163
|
-
# authenticate users that connect to the DB instance. For more
|
16164
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
16165
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
16166
|
-
#
|
16167
16261
|
#
|
16168
16262
|
#
|
16169
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
16170
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
16263
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
16171
16264
|
#
|
16172
16265
|
# @option params [Boolean] :copy_tags_to_snapshot
|
16173
16266
|
# A value that indicates whether to copy all tags from the restored DB
|
@@ -16410,6 +16503,7 @@ module Aws::RDS
|
|
16410
16503
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
16411
16504
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
16412
16505
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
16506
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
16413
16507
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
16414
16508
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
16415
16509
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -16442,6 +16536,7 @@ module Aws::RDS
|
|
16442
16536
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
16443
16537
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
16444
16538
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
16539
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
16445
16540
|
# resp.db_instance.license_model #=> String
|
16446
16541
|
# resp.db_instance.iops #=> Integer
|
16447
16542
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -16967,6 +17062,7 @@ module Aws::RDS
|
|
16967
17062
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
16968
17063
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
16969
17064
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
17065
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
16970
17066
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
16971
17067
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
16972
17068
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -16999,6 +17095,7 @@ module Aws::RDS
|
|
16999
17095
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
17000
17096
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
17001
17097
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
17098
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
17002
17099
|
# resp.db_instance.license_model #=> String
|
17003
17100
|
# resp.db_instance.iops #=> Integer
|
17004
17101
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -17291,24 +17388,15 @@ module Aws::RDS
|
|
17291
17388
|
# @option params [String] :domain
|
17292
17389
|
# Specify the Active Directory directory ID to restore the DB instance
|
17293
17390
|
# in. The domain must be created prior to this operation. Currently,
|
17294
|
-
# only Microsoft SQL Server and
|
17295
|
-
# Active Directory Domain.
|
17391
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances
|
17392
|
+
# can be created in an Active Directory Domain.
|
17296
17393
|
#
|
17297
|
-
# For
|
17298
|
-
# Authentication to authenticate users that connect to the DB instance.
|
17299
|
-
# For more information, see [ Using Windows Authentication with an
|
17300
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
17394
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
17301
17395
|
# RDS User Guide*.
|
17302
17396
|
#
|
17303
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos Authentication to
|
17304
|
-
# authenticate users that connect to the DB instance. For more
|
17305
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
17306
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
17307
|
-
#
|
17308
17397
|
#
|
17309
17398
|
#
|
17310
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
17311
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
17399
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
17312
17400
|
#
|
17313
17401
|
# @option params [String] :domain_iam_role_name
|
17314
17402
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -17553,6 +17641,7 @@ module Aws::RDS
|
|
17553
17641
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
17554
17642
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
17555
17643
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
17644
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
17556
17645
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
17557
17646
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
17558
17647
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -17585,6 +17674,7 @@ module Aws::RDS
|
|
17585
17674
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
17586
17675
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
17587
17676
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
17677
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
17588
17678
|
# resp.db_instance.license_model #=> String
|
17589
17679
|
# resp.db_instance.iops #=> Integer
|
17590
17680
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -17976,6 +18066,7 @@ module Aws::RDS
|
|
17976
18066
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
17977
18067
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
17978
18068
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
18069
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
17979
18070
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
17980
18071
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
17981
18072
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -18008,6 +18099,7 @@ module Aws::RDS
|
|
18008
18099
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
18009
18100
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
18010
18101
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
18102
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
18011
18103
|
# resp.db_instance.license_model #=> String
|
18012
18104
|
# resp.db_instance.iops #=> Integer
|
18013
18105
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -18091,8 +18183,26 @@ module Aws::RDS
|
|
18091
18183
|
# The ID of the AWS KMS key to use to encrypt the snapshot exported to
|
18092
18184
|
# Amazon S3. The KMS key ID is the Amazon Resource Name (ARN), the KMS
|
18093
18185
|
# key identifier, or the KMS key alias for the KMS encryption key. The
|
18094
|
-
#
|
18095
|
-
#
|
18186
|
+
# caller of this operation must be authorized to execute the following
|
18187
|
+
# operations. These can be set in the KMS key policy:
|
18188
|
+
#
|
18189
|
+
# * GrantOperation.Encrypt
|
18190
|
+
#
|
18191
|
+
# * GrantOperation.Decrypt
|
18192
|
+
#
|
18193
|
+
# * GrantOperation.GenerateDataKey
|
18194
|
+
#
|
18195
|
+
# * GrantOperation.GenerateDataKeyWithoutPlaintext
|
18196
|
+
#
|
18197
|
+
# * GrantOperation.ReEncryptFrom
|
18198
|
+
#
|
18199
|
+
# * GrantOperation.ReEncryptTo
|
18200
|
+
#
|
18201
|
+
# * GrantOperation.CreateGrant
|
18202
|
+
#
|
18203
|
+
# * GrantOperation.DescribeKey
|
18204
|
+
#
|
18205
|
+
# * GrantOperation.RetireGrant
|
18096
18206
|
#
|
18097
18207
|
# @option params [String] :s3_prefix
|
18098
18208
|
# The Amazon S3 bucket prefix to use as the file name and path of the
|
@@ -18411,6 +18521,7 @@ module Aws::RDS
|
|
18411
18521
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
18412
18522
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
18413
18523
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
18524
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
18414
18525
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
18415
18526
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
18416
18527
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -18443,6 +18554,7 @@ module Aws::RDS
|
|
18443
18554
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
18444
18555
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
18445
18556
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
18557
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
18446
18558
|
# resp.db_instance.license_model #=> String
|
18447
18559
|
# resp.db_instance.iops #=> Integer
|
18448
18560
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -18517,7 +18629,7 @@ module Aws::RDS
|
|
18517
18629
|
params: params,
|
18518
18630
|
config: config)
|
18519
18631
|
context[:gem_name] = 'aws-sdk-rds'
|
18520
|
-
context[:gem_version] = '1.
|
18632
|
+
context[:gem_version] = '1.97.0'
|
18521
18633
|
Seahorse::Client::Request.new(handlers, context)
|
18522
18634
|
end
|
18523
18635
|
|