aws-sdk-rds 1.94.0 → 1.99.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +3 -2
- data/lib/aws-sdk-rds/client.rb +280 -155
- data/lib/aws-sdk-rds/client_api.rb +4 -0
- data/lib/aws-sdk-rds/db_cluster.rb +16 -2
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +10 -1
- data/lib/aws-sdk-rds/db_instance.rb +105 -56
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- 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/resource.rb +74 -35
- data/lib/aws-sdk-rds/types.rb +267 -141
- 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: f22d6231e3802b41314a9e2c1bb1f75077b5747e606076dd47506d81e02b35c4
|
4
|
+
data.tar.gz: 4ccd3faecf2ca988d2793ec30bc92a119779871b98bf3841f445433232bc2f89
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c9c0306de182adebd9604d1f57249fcb6ae560ffd397a32543fffbcd59e4187480967f2dc5638088ad7bc0e34d94fa0a0f0678ba60ce3317124610ef361f0c77
|
7
|
+
data.tar.gz: 278858a02b7b0a32d25aa9b2366f03b16475b2e1420f679def1118e93c4f9d2f3a29ce7b5afde1bc83984d297caaf4f5f8e83b90d4afab90eaa1ce376d508142
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sigv4'
|
11
12
|
require 'aws-sdk-core'
|
12
13
|
|
@@ -70,9 +71,9 @@ require_relative 'aws-sdk-rds/customizations'
|
|
70
71
|
#
|
71
72
|
# See {Errors} for more information.
|
72
73
|
#
|
73
|
-
#
|
74
|
+
# @!group service
|
74
75
|
module Aws::RDS
|
75
76
|
|
76
|
-
GEM_VERSION = '1.
|
77
|
+
GEM_VERSION = '1.99.0'
|
77
78
|
|
78
79
|
end
|
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
|
#
|
@@ -1366,7 +1387,7 @@ module Aws::RDS
|
|
1366
1387
|
end
|
1367
1388
|
|
1368
1389
|
# Copies the specified DB snapshot. The source DB snapshot must be in
|
1369
|
-
# the
|
1390
|
+
# the `available` or `storage-optimization` state.
|
1370
1391
|
#
|
1371
1392
|
# You can copy a snapshot from one AWS Region to another. In that case,
|
1372
1393
|
# the AWS Region where you call the `CopyDBSnapshot` action is the
|
@@ -2123,6 +2144,14 @@ module Aws::RDS
|
|
2123
2144
|
# used. For more information, see [Publishing Database Logs to Amazon
|
2124
2145
|
# CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
2125
2146
|
#
|
2147
|
+
# **Aurora MySQL**
|
2148
|
+
#
|
2149
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
2150
|
+
#
|
2151
|
+
# **Aurora PostgreSQL**
|
2152
|
+
#
|
2153
|
+
# Possible values are `postgresql` and `upgrade`.
|
2154
|
+
#
|
2126
2155
|
#
|
2127
2156
|
#
|
2128
2157
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -2719,6 +2748,9 @@ module Aws::RDS
|
|
2719
2748
|
#
|
2720
2749
|
# * Must contain 1 to 64 letters or numbers.
|
2721
2750
|
#
|
2751
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2752
|
+
# underscores, or digits (0-9).
|
2753
|
+
#
|
2722
2754
|
# * Can't be a word reserved by the specified database engine
|
2723
2755
|
#
|
2724
2756
|
# **MariaDB**
|
@@ -2731,6 +2763,9 @@ module Aws::RDS
|
|
2731
2763
|
#
|
2732
2764
|
# * Must contain 1 to 64 letters or numbers.
|
2733
2765
|
#
|
2766
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2767
|
+
# underscores, or digits (0-9).
|
2768
|
+
#
|
2734
2769
|
# * Can't be a word reserved by the specified database engine
|
2735
2770
|
#
|
2736
2771
|
# **PostgreSQL**
|
@@ -2743,8 +2778,8 @@ module Aws::RDS
|
|
2743
2778
|
#
|
2744
2779
|
# * Must contain 1 to 63 letters, numbers, or underscores.
|
2745
2780
|
#
|
2746
|
-
# * Must begin with a letter
|
2747
|
-
#
|
2781
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2782
|
+
# underscores, or digits (0-9).
|
2748
2783
|
#
|
2749
2784
|
# * Can't be a word reserved by the specified database engine
|
2750
2785
|
#
|
@@ -3386,24 +3421,15 @@ module Aws::RDS
|
|
3386
3421
|
#
|
3387
3422
|
# @option params [String] :domain
|
3388
3423
|
# 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.
|
3424
|
+
# Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
3425
|
+
# instances can be created in an Active Directory Domain.
|
3391
3426
|
#
|
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
|
3427
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
3396
3428
|
# RDS User Guide*.
|
3397
3429
|
#
|
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
|
-
#
|
3403
3430
|
#
|
3404
3431
|
#
|
3405
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3406
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
3432
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
3407
3433
|
#
|
3408
3434
|
# @option params [Boolean] :copy_tags_to_snapshot
|
3409
3435
|
# A value that indicates whether to copy tags from the DB instance to
|
@@ -3533,6 +3559,26 @@ module Aws::RDS
|
|
3533
3559
|
# CloudWatch Logs ][1] in the *Amazon Relational Database Service User
|
3534
3560
|
# Guide*.
|
3535
3561
|
#
|
3562
|
+
# **MariaDB**
|
3563
|
+
#
|
3564
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
3565
|
+
#
|
3566
|
+
# **Microsoft SQL Server**
|
3567
|
+
#
|
3568
|
+
# Possible values are `agent` and `error`.
|
3569
|
+
#
|
3570
|
+
# **MySQL**
|
3571
|
+
#
|
3572
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
3573
|
+
#
|
3574
|
+
# **Oracle**
|
3575
|
+
#
|
3576
|
+
# Possible values are `alert`, `audit`, `listener`, and `trace`.
|
3577
|
+
#
|
3578
|
+
# **PostgreSQL**
|
3579
|
+
#
|
3580
|
+
# Possible values are `postgresql` and `upgrade`.
|
3581
|
+
#
|
3536
3582
|
#
|
3537
3583
|
#
|
3538
3584
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -3712,6 +3758,7 @@ module Aws::RDS
|
|
3712
3758
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
3713
3759
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
3714
3760
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
3761
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
3715
3762
|
# resp.db_instance.license_model #=> String
|
3716
3763
|
# resp.db_instance.iops #=> Integer
|
3717
3764
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -4162,27 +4209,42 @@ module Aws::RDS
|
|
4162
4209
|
#
|
4163
4210
|
# @option params [String] :domain
|
4164
4211
|
# The Active Directory directory ID to create the DB instance in.
|
4212
|
+
# Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
4213
|
+
# instances can be created in an Active Directory Domain.
|
4165
4214
|
#
|
4166
|
-
# For
|
4167
|
-
# authenticate users that connect to the DB instance. For more
|
4168
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
4169
|
-
# Oracle][1] in the *Amazon RDS User Guide*.
|
4170
|
-
#
|
4171
|
-
# For Microsoft SQL Server DB instances, Amazon RDS can use Windows
|
4172
|
-
# Authentication to authenticate users that connect to the DB instance.
|
4173
|
-
# For more information, see [ Using Windows Authentication with an
|
4174
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][2] in the *Amazon
|
4215
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
4175
4216
|
# RDS User Guide*.
|
4176
4217
|
#
|
4177
4218
|
#
|
4178
4219
|
#
|
4179
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
4180
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
4220
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
4181
4221
|
#
|
4182
4222
|
# @option params [String] :domain_iam_role_name
|
4183
4223
|
# Specify the name of the IAM role to be used when making API calls to
|
4184
4224
|
# the Directory Service.
|
4185
4225
|
#
|
4226
|
+
# @option params [String] :replica_mode
|
4227
|
+
# The open mode of the replica database: mounted or read-only.
|
4228
|
+
#
|
4229
|
+
# <note markdown="1"> This parameter is only supported for Oracle DB instances.
|
4230
|
+
#
|
4231
|
+
# </note>
|
4232
|
+
#
|
4233
|
+
# Mounted DB replicas are included in Oracle Enterprise Edition. The
|
4234
|
+
# main use case for mounted replicas is cross-Region disaster recovery.
|
4235
|
+
# The primary database doesn't use Active Data Guard to transmit
|
4236
|
+
# information to the mounted replica. Because it doesn't accept user
|
4237
|
+
# connections, a mounted replica can't serve a read-only workload.
|
4238
|
+
#
|
4239
|
+
# You can create a combination of mounted and read-only DB replicas for
|
4240
|
+
# the same primary DB instance. For more information, see [Working with
|
4241
|
+
# Oracle Read Replicas for Amazon RDS][1] in the *Amazon RDS User
|
4242
|
+
# Guide*.
|
4243
|
+
#
|
4244
|
+
#
|
4245
|
+
#
|
4246
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
4247
|
+
#
|
4186
4248
|
# @option params [String] :source_region
|
4187
4249
|
# The source region of the snapshot. This is only needed when the
|
4188
4250
|
# shapshot is encrypted and in a different region.
|
@@ -4261,6 +4323,7 @@ module Aws::RDS
|
|
4261
4323
|
# deletion_protection: false,
|
4262
4324
|
# domain: "String",
|
4263
4325
|
# domain_iam_role_name: "String",
|
4326
|
+
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
4264
4327
|
# source_region: "String",
|
4265
4328
|
# })
|
4266
4329
|
#
|
@@ -4329,6 +4392,7 @@ module Aws::RDS
|
|
4329
4392
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
4330
4393
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
4331
4394
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
4395
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
4332
4396
|
# resp.db_instance.license_model #=> String
|
4333
4397
|
# resp.db_instance.iops #=> Integer
|
4334
4398
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -4908,21 +4972,22 @@ module Aws::RDS
|
|
4908
4972
|
# create a topic in Amazon SNS and subscribe to the topic. The ARN is
|
4909
4973
|
# displayed in the SNS console.
|
4910
4974
|
#
|
4911
|
-
# You can specify the type of source (SourceType) you want to be
|
4912
|
-
# notified of
|
4913
|
-
# the events
|
4914
|
-
# for events you want to be notified of. For
|
4915
|
-
# SourceType = db-instance
|
4916
|
-
# EventCategories =
|
4917
|
-
#
|
4918
|
-
#
|
4919
|
-
#
|
4920
|
-
#
|
4921
|
-
#
|
4922
|
-
#
|
4923
|
-
#
|
4924
|
-
#
|
4925
|
-
#
|
4975
|
+
# You can specify the type of source (`SourceType`) that you want to be
|
4976
|
+
# notified of and provide a list of RDS sources (`SourceIds`) that
|
4977
|
+
# triggers the events. You can also provide a list of event categories
|
4978
|
+
# (`EventCategories`) for events that you want to be notified of. For
|
4979
|
+
# example, you can specify `SourceType` = `db-instance`, `SourceIds` =
|
4980
|
+
# `mydbinstance1`, `mydbinstance2` and `EventCategories` =
|
4981
|
+
# `Availability`, `Backup`.
|
4982
|
+
#
|
4983
|
+
# If you specify both the `SourceType` and `SourceIds`, such as
|
4984
|
+
# `SourceType` = `db-instance` and `SourceIdentifier` = `myDBInstance1`,
|
4985
|
+
# you are notified of all the `db-instance` events for the specified
|
4986
|
+
# source. If you specify a `SourceType` but do not specify a
|
4987
|
+
# `SourceIdentifier`, you receive notice of the events for that source
|
4988
|
+
# type for all your RDS sources. If you don't specify either the
|
4989
|
+
# SourceType or the `SourceIdentifier`, you are notified of events
|
4990
|
+
# generated from all RDS sources belonging to your customer account.
|
4926
4991
|
#
|
4927
4992
|
# <note markdown="1"> RDS event notification is only available for unencrypted SNS topics.
|
4928
4993
|
# If you specify an encrypted SNS topic, event notifications aren't
|
@@ -4942,18 +5007,18 @@ module Aws::RDS
|
|
4942
5007
|
#
|
4943
5008
|
# @option params [String] :source_type
|
4944
5009
|
# The type of source that is generating the events. For example, if you
|
4945
|
-
# want to be notified of events generated by a DB instance, you
|
4946
|
-
#
|
4947
|
-
#
|
5010
|
+
# want to be notified of events generated by a DB instance, you set this
|
5011
|
+
# parameter to `db-instance`. If this value isn't specified, all events
|
5012
|
+
# are returned.
|
4948
5013
|
#
|
4949
5014
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
4950
5015
|
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
4951
5016
|
#
|
4952
5017
|
# @option params [Array<String>] :event_categories
|
4953
|
-
# A list of event categories for a
|
4954
|
-
# to. You can see a list of the categories
|
4955
|
-
# [Events][1]
|
4956
|
-
#
|
5018
|
+
# A list of event categories for a particular source type (`SourceType`)
|
5019
|
+
# that you want to subscribe to. You can see a list of the categories
|
5020
|
+
# for a given source type in [Events][1] in the *Amazon RDS User Guide*
|
5021
|
+
# or by using the `DescribeEventCategories` operation.
|
4957
5022
|
#
|
4958
5023
|
#
|
4959
5024
|
#
|
@@ -4968,19 +5033,26 @@ module Aws::RDS
|
|
4968
5033
|
#
|
4969
5034
|
# Constraints:
|
4970
5035
|
#
|
4971
|
-
# * If SourceIds
|
5036
|
+
# * If a `SourceIds` value is supplied, `SourceType` must also be
|
5037
|
+
# provided.
|
4972
5038
|
#
|
4973
|
-
# * If the source type is a DB instance,
|
5039
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
4974
5040
|
# must be supplied.
|
4975
5041
|
#
|
4976
|
-
# * If the source type is a DB
|
5042
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
4977
5043
|
# must be supplied.
|
4978
5044
|
#
|
4979
5045
|
# * If the source type is a DB parameter group, a `DBParameterGroupName`
|
5046
|
+
# value must be supplied.
|
5047
|
+
#
|
5048
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
5049
|
+
# value must be supplied.
|
5050
|
+
#
|
5051
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` value
|
4980
5052
|
# must be supplied.
|
4981
5053
|
#
|
4982
|
-
# * If the source type is a DB snapshot, a
|
4983
|
-
# be supplied.
|
5054
|
+
# * If the source type is a DB cluster snapshot, a
|
5055
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
4984
5056
|
#
|
4985
5057
|
# @option params [Boolean] :enabled
|
4986
5058
|
# A value that indicates whether to activate the subscription. If the
|
@@ -5064,8 +5136,8 @@ module Aws::RDS
|
|
5064
5136
|
req.send_request(options)
|
5065
5137
|
end
|
5066
5138
|
|
5067
|
-
# Creates an Aurora global database spread across multiple
|
5068
|
-
# global database contains a single primary cluster with read-write
|
5139
|
+
# Creates an Aurora global database spread across multiple AWS Regions.
|
5140
|
+
# The global database contains a single primary cluster with read-write
|
5069
5141
|
# capability, and a read-only secondary cluster that receives data from
|
5070
5142
|
# the primary cluster through high-speed replication performed by the
|
5071
5143
|
# Aurora storage subsystem.
|
@@ -5087,8 +5159,7 @@ module Aws::RDS
|
|
5087
5159
|
# global database. This parameter is optional.
|
5088
5160
|
#
|
5089
5161
|
# @option params [String] :engine
|
5090
|
-
#
|
5091
|
-
# cluster.
|
5162
|
+
# The name of the database engine to be used for this DB cluster.
|
5092
5163
|
#
|
5093
5164
|
# @option params [String] :engine_version
|
5094
5165
|
# The engine version of the Aurora global database.
|
@@ -5845,6 +5916,7 @@ module Aws::RDS
|
|
5845
5916
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
5846
5917
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
5847
5918
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
5919
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
5848
5920
|
# resp.db_instance.license_model #=> String
|
5849
5921
|
# resp.db_instance.iops #=> Integer
|
5850
5922
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -6798,7 +6870,7 @@ module Aws::RDS
|
|
6798
6870
|
# `writer`, `custom`. `Values` for the `db-cluster-endpoint-custom-type`
|
6799
6871
|
# filter can be one or more of: `reader`, `any`. `Values` for the
|
6800
6872
|
# `db-cluster-endpoint-status` filter can be one or more of:
|
6801
|
-
# `available`, `creating`, `deleting`, `modifying`.
|
6873
|
+
# `available`, `creating`, `deleting`, `inactive`, `modifying`.
|
6802
6874
|
#
|
6803
6875
|
# @option params [Integer] :max_records
|
6804
6876
|
# The maximum number of records to include in the response. If more
|
@@ -7942,6 +8014,7 @@ module Aws::RDS
|
|
7942
8014
|
# resp.db_instances[0].read_replica_db_instance_identifiers[0] #=> String
|
7943
8015
|
# resp.db_instances[0].read_replica_db_cluster_identifiers #=> Array
|
7944
8016
|
# resp.db_instances[0].read_replica_db_cluster_identifiers[0] #=> String
|
8017
|
+
# resp.db_instances[0].replica_mode #=> String, one of "open-read-only", "mounted"
|
7945
8018
|
# resp.db_instances[0].license_model #=> String
|
7946
8019
|
# resp.db_instances[0].iops #=> Integer
|
7947
8020
|
# resp.db_instances[0].option_group_memberships #=> Array
|
@@ -9147,8 +9220,8 @@ module Aws::RDS
|
|
9147
9220
|
|
9148
9221
|
# Displays a list of categories for all event source types, or, if
|
9149
9222
|
# specified, for a specified source type. You can see a list of the
|
9150
|
-
# event categories and source types in
|
9151
|
-
#
|
9223
|
+
# event categories and source types in [ Events][1] in the *Amazon RDS
|
9224
|
+
# User Guide.*
|
9152
9225
|
#
|
9153
9226
|
#
|
9154
9227
|
#
|
@@ -9157,8 +9230,8 @@ module Aws::RDS
|
|
9157
9230
|
# @option params [String] :source_type
|
9158
9231
|
# The type of source that is generating the events.
|
9159
9232
|
#
|
9160
|
-
# Valid values: db-instance \| db-
|
9161
|
-
# \| db-snapshot
|
9233
|
+
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
9234
|
+
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
9162
9235
|
#
|
9163
9236
|
# @option params [Array<Types::Filter>] :filters
|
9164
9237
|
# This parameter isn't currently supported.
|
@@ -9209,10 +9282,11 @@ module Aws::RDS
|
|
9209
9282
|
end
|
9210
9283
|
|
9211
9284
|
# Lists all the subscription descriptions for a customer account. The
|
9212
|
-
# description for a subscription includes SubscriptionName
|
9213
|
-
# CustomerID
|
9285
|
+
# description for a subscription includes `SubscriptionName`,
|
9286
|
+
# `SNSTopicARN`, `CustomerID`, `SourceType`, `SourceID`, `CreationTime`,
|
9287
|
+
# and `Status`.
|
9214
9288
|
#
|
9215
|
-
# If you specify a SubscriptionName
|
9289
|
+
# If you specify a `SubscriptionName`, lists the description for that
|
9216
9290
|
# subscription.
|
9217
9291
|
#
|
9218
9292
|
# @option params [String] :subscription_name
|
@@ -9298,11 +9372,16 @@ module Aws::RDS
|
|
9298
9372
|
req.send_request(options)
|
9299
9373
|
end
|
9300
9374
|
|
9301
|
-
# Returns events related to DB instances, DB
|
9302
|
-
#
|
9303
|
-
# specific to a particular DB
|
9304
|
-
#
|
9305
|
-
#
|
9375
|
+
# Returns events related to DB instances, DB clusters, DB parameter
|
9376
|
+
# groups, DB security groups, DB snapshots, and DB cluster snapshots for
|
9377
|
+
# the past 14 days. Events specific to a particular DB instances, DB
|
9378
|
+
# clusters, DB parameter groups, DB security groups, DB snapshots, and
|
9379
|
+
# DB cluster snapshots group can be obtained by providing the name as a
|
9380
|
+
# parameter.
|
9381
|
+
#
|
9382
|
+
# <note markdown="1"> By default, the past hour of events are returned.
|
9383
|
+
#
|
9384
|
+
# </note>
|
9306
9385
|
#
|
9307
9386
|
# @option params [String] :source_identifier
|
9308
9387
|
# The identifier of the event source for which events are returned. If
|
@@ -9310,19 +9389,26 @@ module Aws::RDS
|
|
9310
9389
|
#
|
9311
9390
|
# Constraints:
|
9312
9391
|
#
|
9313
|
-
# * If SourceIdentifier is supplied, SourceType must also be
|
9392
|
+
# * If `SourceIdentifier` is supplied, `SourceType` must also be
|
9393
|
+
# provided.
|
9314
9394
|
#
|
9315
|
-
# * If the source type is
|
9395
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
9316
9396
|
# must be supplied.
|
9317
9397
|
#
|
9318
|
-
# * If the source type is
|
9398
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
9319
9399
|
# must be supplied.
|
9320
9400
|
#
|
9321
|
-
# * If the source type is
|
9401
|
+
# * If the source type is a DB parameter group, a `DBParameterGroupName`
|
9402
|
+
# value must be supplied.
|
9403
|
+
#
|
9404
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
9405
|
+
# value must be supplied.
|
9406
|
+
#
|
9407
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` value
|
9322
9408
|
# must be supplied.
|
9323
9409
|
#
|
9324
|
-
# * If the source type is
|
9325
|
-
# supplied.
|
9410
|
+
# * If the source type is a DB cluster snapshot, a
|
9411
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
9326
9412
|
#
|
9327
9413
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
9328
9414
|
#
|
@@ -9457,7 +9543,7 @@ module Aws::RDS
|
|
9457
9543
|
# @option params [Array<Types::Filter>] :filters
|
9458
9544
|
# Filters specify one or more snapshot exports to describe. The filters
|
9459
9545
|
# are specified as name-value pairs that define what to include in the
|
9460
|
-
# output.
|
9546
|
+
# output. Filter names and values are case-sensitive.
|
9461
9547
|
#
|
9462
9548
|
# Supported filters include the following:
|
9463
9549
|
#
|
@@ -9469,7 +9555,8 @@ module Aws::RDS
|
|
9469
9555
|
# * `source-arn` - The Amazon Resource Name (ARN) of the snapshot
|
9470
9556
|
# exported to Amazon S3
|
9471
9557
|
#
|
9472
|
-
# * `status` - The status of the export task.
|
9558
|
+
# * `status` - The status of the export task. Must be lowercase, for
|
9559
|
+
# example, `complete`.
|
9473
9560
|
#
|
9474
9561
|
# @option params [String] :marker
|
9475
9562
|
# An optional pagination token provided by a previous
|
@@ -11447,6 +11534,13 @@ module Aws::RDS
|
|
11447
11534
|
# `none` to remove the cluster from its current domain. The domain must
|
11448
11535
|
# be created prior to this operation.
|
11449
11536
|
#
|
11537
|
+
# For more information, see [Kerberos Authentication][1] in the *Amazon
|
11538
|
+
# Aurora User Guide*.
|
11539
|
+
#
|
11540
|
+
#
|
11541
|
+
#
|
11542
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
11543
|
+
#
|
11450
11544
|
# @option params [String] :domain_iam_role_name
|
11451
11545
|
# Specify the name of the IAM role to be used when making API calls to
|
11452
11546
|
# the Directory Service.
|
@@ -12325,25 +12419,16 @@ module Aws::RDS
|
|
12325
12419
|
# @option params [String] :domain
|
12326
12420
|
# The Active Directory directory ID to move the DB instance to. Specify
|
12327
12421
|
# `none` to remove the instance from its current domain. The domain must
|
12328
|
-
# be created prior to this operation. Currently, only Microsoft
|
12329
|
-
# Server and
|
12330
|
-
# Domain.
|
12331
|
-
#
|
12332
|
-
# For Microsoft SQL Server DB instances, Amazon RDS can use Windows
|
12333
|
-
# Authentication to authenticate users that connect to the DB instance.
|
12334
|
-
# For more information, see [ Using Windows Authentication with an
|
12335
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
12336
|
-
# RDS User Guide*.
|
12422
|
+
# be created prior to this operation. Currently, only MySQL, Microsoft
|
12423
|
+
# SQL Server, Oracle, and PostgreSQL DB instances can be created in an
|
12424
|
+
# Active Directory Domain.
|
12337
12425
|
#
|
12338
|
-
# For
|
12339
|
-
#
|
12340
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
12341
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
12426
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
12427
|
+
# RDS User Guide*.
|
12342
12428
|
#
|
12343
12429
|
#
|
12344
12430
|
#
|
12345
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
12346
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
12431
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
12347
12432
|
#
|
12348
12433
|
# @option params [Boolean] :copy_tags_to_snapshot
|
12349
12434
|
# A value that indicates whether to copy all tags from the DB instance
|
@@ -12563,6 +12648,26 @@ module Aws::RDS
|
|
12563
12648
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
12564
12649
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
12565
12650
|
#
|
12651
|
+
# @option params [String] :replica_mode
|
12652
|
+
# A value that sets the open mode of a replica database to either
|
12653
|
+
# mounted or read-only.
|
12654
|
+
#
|
12655
|
+
# <note markdown="1"> Currently, this parameter is only supported for Oracle DB instances.
|
12656
|
+
#
|
12657
|
+
# </note>
|
12658
|
+
#
|
12659
|
+
# Mounted DB replicas are included in Oracle Enterprise Edition. The
|
12660
|
+
# main use case for mounted replicas is cross-Region disaster recovery.
|
12661
|
+
# The primary database doesn't use Active Data Guard to transmit
|
12662
|
+
# information to the mounted replica. Because it doesn't accept user
|
12663
|
+
# connections, a mounted replica can't serve a read-only workload. For
|
12664
|
+
# more information, see [Working with Oracle Read Replicas for Amazon
|
12665
|
+
# RDS][1] in the *Amazon RDS User Guide*.
|
12666
|
+
#
|
12667
|
+
#
|
12668
|
+
#
|
12669
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
12670
|
+
#
|
12566
12671
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12567
12672
|
#
|
12568
12673
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -12642,6 +12747,7 @@ module Aws::RDS
|
|
12642
12747
|
# deletion_protection: false,
|
12643
12748
|
# max_allocated_storage: 1,
|
12644
12749
|
# certificate_rotation_restart: false,
|
12750
|
+
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
12645
12751
|
# })
|
12646
12752
|
#
|
12647
12753
|
# @example Response structure
|
@@ -12709,6 +12815,7 @@ module Aws::RDS
|
|
12709
12815
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
12710
12816
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
12711
12817
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
12818
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
12712
12819
|
# resp.db_instance.license_model #=> String
|
12713
12820
|
# resp.db_instance.iops #=> Integer
|
12714
12821
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -13331,9 +13438,9 @@ module Aws::RDS
|
|
13331
13438
|
# `AddSourceIdentifierToSubscription` and
|
13332
13439
|
# `RemoveSourceIdentifierFromSubscription` calls.
|
13333
13440
|
#
|
13334
|
-
# You can see a list of the event categories for a given
|
13335
|
-
#
|
13336
|
-
#
|
13441
|
+
# You can see a list of the event categories for a given source type
|
13442
|
+
# (`SourceType`) in [Events][1] in the *Amazon RDS User Guide* or by
|
13443
|
+
# using the `DescribeEventCategories` operation.
|
13337
13444
|
#
|
13338
13445
|
#
|
13339
13446
|
#
|
@@ -13353,14 +13460,14 @@ module Aws::RDS
|
|
13353
13460
|
# set this parameter to db-instance. If this value isn't specified, all
|
13354
13461
|
# events are returned.
|
13355
13462
|
#
|
13356
|
-
# Valid values: db-instance \| db-
|
13357
|
-
# \| db-snapshot
|
13463
|
+
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
13464
|
+
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
13358
13465
|
#
|
13359
13466
|
# @option params [Array<String>] :event_categories
|
13360
|
-
# A list of event categories for a SourceType that you
|
13361
|
-
# to. You can see a list of the categories for a given
|
13362
|
-
# [Events][1]
|
13363
|
-
#
|
13467
|
+
# A list of event categories for a source type (`SourceType`) that you
|
13468
|
+
# want to subscribe to. You can see a list of the categories for a given
|
13469
|
+
# source type in [Events][1] in the *Amazon RDS User Guide* or by using
|
13470
|
+
# the `DescribeEventCategories` operation.
|
13364
13471
|
#
|
13365
13472
|
#
|
13366
13473
|
#
|
@@ -13792,6 +13899,7 @@ module Aws::RDS
|
|
13792
13899
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
13793
13900
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
13794
13901
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
13902
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
13795
13903
|
# resp.db_instance.license_model #=> String
|
13796
13904
|
# resp.db_instance.iops #=> Integer
|
13797
13905
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -14184,6 +14292,7 @@ module Aws::RDS
|
|
14184
14292
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
14185
14293
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
14186
14294
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
14295
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
14187
14296
|
# resp.db_instance.license_model #=> String
|
14188
14297
|
# resp.db_instance.iops #=> Integer
|
14189
14298
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -14739,11 +14848,11 @@ module Aws::RDS
|
|
14739
14848
|
req.send_request(options)
|
14740
14849
|
end
|
14741
14850
|
|
14742
|
-
# Creates an Amazon Aurora DB cluster from data stored in an
|
14743
|
-
# bucket. Amazon RDS must be authorized to access the Amazon
|
14744
|
-
# and the data must be created using the Percona XtraBackup
|
14745
|
-
# described in [ Migrating Data
|
14746
|
-
# in the *Amazon Aurora User Guide*.
|
14851
|
+
# Creates an Amazon Aurora DB cluster from MySQL data stored in an
|
14852
|
+
# Amazon S3 bucket. Amazon RDS must be authorized to access the Amazon
|
14853
|
+
# S3 bucket and the data must be created using the Percona XtraBackup
|
14854
|
+
# utility as described in [ Migrating Data from MySQL by Using an Amazon
|
14855
|
+
# S3 Bucket][1] in the *Amazon Aurora User Guide*.
|
14747
14856
|
#
|
14748
14857
|
# <note markdown="1"> This action only restores the DB cluster, not the DB instances for
|
14749
14858
|
# that DB cluster. You must invoke the `CreateDBInstance` action to
|
@@ -14757,13 +14866,14 @@ module Aws::RDS
|
|
14757
14866
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
14758
14867
|
# Aurora?][2] in the *Amazon Aurora User Guide.*
|
14759
14868
|
#
|
14760
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
14869
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters. The source DB engine
|
14870
|
+
# must be MySQL.
|
14761
14871
|
#
|
14762
14872
|
# </note>
|
14763
14873
|
#
|
14764
14874
|
#
|
14765
14875
|
#
|
14766
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Migrating.html
|
14876
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Migrating.ExtMySQL.html#AuroraMySQL.Migrating.ExtMySQL.S3
|
14767
14877
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
14768
14878
|
#
|
14769
14879
|
# @option params [Array<String>] :availability_zones
|
@@ -14828,10 +14938,11 @@ module Aws::RDS
|
|
14828
14938
|
# Example: `mySubnetgroup`
|
14829
14939
|
#
|
14830
14940
|
# @option params [required, String] :engine
|
14831
|
-
# The name of the database engine to be used for
|
14832
|
-
# cluster.
|
14941
|
+
# The name of the database engine to be used for this DB cluster.
|
14833
14942
|
#
|
14834
|
-
# Valid Values: `aurora
|
14943
|
+
# Valid Values: `aurora` (for MySQL 5.6-compatible Aurora),
|
14944
|
+
# `aurora-mysql` (for MySQL 5.7-compatible Aurora), and
|
14945
|
+
# `aurora-postgresql`
|
14835
14946
|
#
|
14836
14947
|
# @option params [String] :engine_version
|
14837
14948
|
# The version number of the database engine to use.
|
@@ -14986,7 +15097,7 @@ module Aws::RDS
|
|
14986
15097
|
#
|
14987
15098
|
# MySQL versions 5.5, 5.6, and 5.7 are supported.
|
14988
15099
|
#
|
14989
|
-
# Example: `5.6.40`
|
15100
|
+
# Example: `5.6.40`, `5.7.28`
|
14990
15101
|
#
|
14991
15102
|
# @option params [required, String] :s3_bucket_name
|
14992
15103
|
# The name of the Amazon S3 bucket that contains the data used to create
|
@@ -15414,7 +15525,16 @@ module Aws::RDS
|
|
15414
15525
|
#
|
15415
15526
|
# @option params [String] :domain
|
15416
15527
|
# Specify the Active Directory directory ID to restore the DB cluster
|
15417
|
-
# in. The domain must be created prior to this operation.
|
15528
|
+
# in. The domain must be created prior to this operation. Currently,
|
15529
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances
|
15530
|
+
# can be created in an Active Directory Domain.
|
15531
|
+
#
|
15532
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
15533
|
+
# RDS User Guide*.
|
15534
|
+
#
|
15535
|
+
#
|
15536
|
+
#
|
15537
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
15418
15538
|
#
|
15419
15539
|
# @option params [String] :domain_iam_role_name
|
15420
15540
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -16164,24 +16284,15 @@ module Aws::RDS
|
|
16164
16284
|
# @option params [String] :domain
|
16165
16285
|
# Specify the Active Directory directory ID to restore the DB instance
|
16166
16286
|
# in. The domain must be created prior to this operation. Currently,
|
16167
|
-
# only Microsoft SQL Server and
|
16168
|
-
# Active Directory Domain.
|
16287
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances
|
16288
|
+
# can be created in an Active Directory Domain.
|
16169
16289
|
#
|
16170
|
-
# For
|
16171
|
-
# Authentication to authenticate users that connect to the DB instance.
|
16172
|
-
# For more information, see [ Using Windows Authentication with an
|
16173
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
16290
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
16174
16291
|
# RDS User Guide*.
|
16175
16292
|
#
|
16176
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos authentication to
|
16177
|
-
# authenticate users that connect to the DB instance. For more
|
16178
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
16179
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
16180
16293
|
#
|
16181
16294
|
#
|
16182
|
-
#
|
16183
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
16184
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
16295
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
16185
16296
|
#
|
16186
16297
|
# @option params [Boolean] :copy_tags_to_snapshot
|
16187
16298
|
# A value that indicates whether to copy all tags from the restored DB
|
@@ -16457,6 +16568,7 @@ module Aws::RDS
|
|
16457
16568
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
16458
16569
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
16459
16570
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
16571
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
16460
16572
|
# resp.db_instance.license_model #=> String
|
16461
16573
|
# resp.db_instance.iops #=> Integer
|
16462
16574
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -17015,6 +17127,7 @@ module Aws::RDS
|
|
17015
17127
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
17016
17128
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
17017
17129
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
17130
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
17018
17131
|
# resp.db_instance.license_model #=> String
|
17019
17132
|
# resp.db_instance.iops #=> Integer
|
17020
17133
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -17307,24 +17420,15 @@ module Aws::RDS
|
|
17307
17420
|
# @option params [String] :domain
|
17308
17421
|
# Specify the Active Directory directory ID to restore the DB instance
|
17309
17422
|
# in. The domain must be created prior to this operation. Currently,
|
17310
|
-
# only Microsoft SQL Server and
|
17311
|
-
# Active Directory Domain.
|
17423
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances
|
17424
|
+
# can be created in an Active Directory Domain.
|
17312
17425
|
#
|
17313
|
-
# For
|
17314
|
-
# Authentication to authenticate users that connect to the DB instance.
|
17315
|
-
# For more information, see [ Using Windows Authentication with an
|
17316
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
17426
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
17317
17427
|
# RDS User Guide*.
|
17318
17428
|
#
|
17319
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos authentication to
|
17320
|
-
# authenticate users that connect to the DB instance. For more
|
17321
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
17322
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
17323
17429
|
#
|
17324
17430
|
#
|
17325
|
-
#
|
17326
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
17327
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
17431
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
17328
17432
|
#
|
17329
17433
|
# @option params [String] :domain_iam_role_name
|
17330
17434
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -17602,6 +17706,7 @@ module Aws::RDS
|
|
17602
17706
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
17603
17707
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
17604
17708
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
17709
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
17605
17710
|
# resp.db_instance.license_model #=> String
|
17606
17711
|
# resp.db_instance.iops #=> Integer
|
17607
17712
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -18026,6 +18131,7 @@ module Aws::RDS
|
|
18026
18131
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
18027
18132
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
18028
18133
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
18134
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
18029
18135
|
# resp.db_instance.license_model #=> String
|
18030
18136
|
# resp.db_instance.iops #=> Integer
|
18031
18137
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -18109,8 +18215,26 @@ module Aws::RDS
|
|
18109
18215
|
# The ID of the AWS KMS key to use to encrypt the snapshot exported to
|
18110
18216
|
# Amazon S3. The KMS key ID is the Amazon Resource Name (ARN), the KMS
|
18111
18217
|
# key identifier, or the KMS key alias for the KMS encryption key. The
|
18112
|
-
#
|
18113
|
-
#
|
18218
|
+
# caller of this operation must be authorized to execute the following
|
18219
|
+
# operations. These can be set in the KMS key policy:
|
18220
|
+
#
|
18221
|
+
# * GrantOperation.Encrypt
|
18222
|
+
#
|
18223
|
+
# * GrantOperation.Decrypt
|
18224
|
+
#
|
18225
|
+
# * GrantOperation.GenerateDataKey
|
18226
|
+
#
|
18227
|
+
# * GrantOperation.GenerateDataKeyWithoutPlaintext
|
18228
|
+
#
|
18229
|
+
# * GrantOperation.ReEncryptFrom
|
18230
|
+
#
|
18231
|
+
# * GrantOperation.ReEncryptTo
|
18232
|
+
#
|
18233
|
+
# * GrantOperation.CreateGrant
|
18234
|
+
#
|
18235
|
+
# * GrantOperation.DescribeKey
|
18236
|
+
#
|
18237
|
+
# * GrantOperation.RetireGrant
|
18114
18238
|
#
|
18115
18239
|
# @option params [String] :s3_prefix
|
18116
18240
|
# The Amazon S3 bucket prefix to use as the file name and path of the
|
@@ -18462,6 +18586,7 @@ module Aws::RDS
|
|
18462
18586
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
18463
18587
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
18464
18588
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
18589
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
18465
18590
|
# resp.db_instance.license_model #=> String
|
18466
18591
|
# resp.db_instance.iops #=> Integer
|
18467
18592
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -18536,7 +18661,7 @@ module Aws::RDS
|
|
18536
18661
|
params: params,
|
18537
18662
|
config: config)
|
18538
18663
|
context[:gem_name] = 'aws-sdk-rds'
|
18539
|
-
context[:gem_version] = '1.
|
18664
|
+
context[:gem_version] = '1.99.0'
|
18540
18665
|
Seahorse::Client::Request.new(handlers, context)
|
18541
18666
|
end
|
18542
18667
|
|