aws-sdk-rds 1.91.0 → 1.96.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 +1 -1
- data/lib/aws-sdk-rds/client.rb +238 -141
- 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: ca81309eba6d6d7895733a8a3598a4b1bd0892ebd91d803a96293fa8881d64ac
|
4
|
+
data.tar.gz: 2449ec61bda3861a90e1d47b09ecd77f8c1026b9c452eec356223a9e76d41fec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ccc8a9d9a080f3c3e2a88d706cc0195398c6939aa6d53bf47f8888b4c9ddd9679ac393b1c5eae45fbc0efb378fe534d629c8638649dfafe6812502bf363a7e03
|
7
|
+
data.tar.gz: fcf747e0cb3be2f0e9b6fcf05949de13e6e4db04dd59c863b9beba17df6ebc30e0a140bd704034d0609bfc88fb0a614c3ad99ce7d694b0fd803475f5c34a26ef
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -410,17 +410,23 @@ module Aws::RDS
|
|
410
410
|
#
|
411
411
|
# Constraints:
|
412
412
|
#
|
413
|
-
# * If the source type is a DB instance,
|
413
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
414
414
|
# must be supplied.
|
415
415
|
#
|
416
|
-
# * If the source type is a DB
|
416
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
417
417
|
# must be supplied.
|
418
418
|
#
|
419
419
|
# * If the source type is a DB parameter group, a `DBParameterGroupName`
|
420
|
+
# value must be supplied.
|
421
|
+
#
|
422
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
423
|
+
# value must be supplied.
|
424
|
+
#
|
425
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` value
|
420
426
|
# must be supplied.
|
421
427
|
#
|
422
|
-
# * If the source type is a DB snapshot, a
|
423
|
-
# be supplied.
|
428
|
+
# * If the source type is a DB cluster snapshot, a
|
429
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
424
430
|
#
|
425
431
|
# @return [Types::AddSourceIdentifierToSubscriptionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
426
432
|
#
|
@@ -2719,6 +2725,9 @@ module Aws::RDS
|
|
2719
2725
|
#
|
2720
2726
|
# * Must contain 1 to 64 letters or numbers.
|
2721
2727
|
#
|
2728
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2729
|
+
# underscores, or digits (0-9).
|
2730
|
+
#
|
2722
2731
|
# * Can't be a word reserved by the specified database engine
|
2723
2732
|
#
|
2724
2733
|
# **MariaDB**
|
@@ -2731,6 +2740,9 @@ module Aws::RDS
|
|
2731
2740
|
#
|
2732
2741
|
# * Must contain 1 to 64 letters or numbers.
|
2733
2742
|
#
|
2743
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2744
|
+
# underscores, or digits (0-9).
|
2745
|
+
#
|
2734
2746
|
# * Can't be a word reserved by the specified database engine
|
2735
2747
|
#
|
2736
2748
|
# **PostgreSQL**
|
@@ -2743,8 +2755,8 @@ module Aws::RDS
|
|
2743
2755
|
#
|
2744
2756
|
# * Must contain 1 to 63 letters, numbers, or underscores.
|
2745
2757
|
#
|
2746
|
-
# * Must begin with a letter
|
2747
|
-
#
|
2758
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2759
|
+
# underscores, or digits (0-9).
|
2748
2760
|
#
|
2749
2761
|
# * Can't be a word reserved by the specified database engine
|
2750
2762
|
#
|
@@ -3386,24 +3398,15 @@ module Aws::RDS
|
|
3386
3398
|
#
|
3387
3399
|
# @option params [String] :domain
|
3388
3400
|
# 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.
|
3401
|
+
# Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
3402
|
+
# instances can be created in an Active Directory Domain.
|
3391
3403
|
#
|
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
|
3404
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
3396
3405
|
# RDS User Guide*.
|
3397
3406
|
#
|
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
3407
|
#
|
3403
3408
|
#
|
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
|
3409
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
3407
3410
|
#
|
3408
3411
|
# @option params [Boolean] :copy_tags_to_snapshot
|
3409
3412
|
# A value that indicates whether to copy tags from the DB instance to
|
@@ -3679,6 +3682,7 @@ module Aws::RDS
|
|
3679
3682
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
3680
3683
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
3681
3684
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
3685
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
3682
3686
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
3683
3687
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
3684
3688
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -3711,6 +3715,7 @@ module Aws::RDS
|
|
3711
3715
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
3712
3716
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
3713
3717
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
3718
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
3714
3719
|
# resp.db_instance.license_model #=> String
|
3715
3720
|
# resp.db_instance.iops #=> Integer
|
3716
3721
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -4161,27 +4166,42 @@ module Aws::RDS
|
|
4161
4166
|
#
|
4162
4167
|
# @option params [String] :domain
|
4163
4168
|
# The Active Directory directory ID to create the DB instance in.
|
4169
|
+
# Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
4170
|
+
# instances can be created in an Active Directory Domain.
|
4164
4171
|
#
|
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
|
4172
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
4174
4173
|
# RDS User Guide*.
|
4175
4174
|
#
|
4176
4175
|
#
|
4177
4176
|
#
|
4178
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
4179
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
4177
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
4180
4178
|
#
|
4181
4179
|
# @option params [String] :domain_iam_role_name
|
4182
4180
|
# Specify the name of the IAM role to be used when making API calls to
|
4183
4181
|
# the Directory Service.
|
4184
4182
|
#
|
4183
|
+
# @option params [String] :replica_mode
|
4184
|
+
# The open mode of the replica database: mounted or read-only.
|
4185
|
+
#
|
4186
|
+
# <note markdown="1"> This parameter is only supported for Oracle DB instances.
|
4187
|
+
#
|
4188
|
+
# </note>
|
4189
|
+
#
|
4190
|
+
# Mounted DB replicas are included in Oracle Enterprise Edition. The
|
4191
|
+
# main use case for mounted replicas is cross-Region disaster recovery.
|
4192
|
+
# The primary database doesn't use Active Data Guard to transmit
|
4193
|
+
# information to the mounted replica. Because it doesn't accept user
|
4194
|
+
# connections, a mounted replica can't serve a read-only workload.
|
4195
|
+
#
|
4196
|
+
# You can create a combination of mounted and read-only DB replicas for
|
4197
|
+
# the same primary DB instance. For more information, see [Working with
|
4198
|
+
# Oracle Read Replicas for Amazon RDS][1] in the *Amazon RDS User
|
4199
|
+
# Guide*.
|
4200
|
+
#
|
4201
|
+
#
|
4202
|
+
#
|
4203
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
4204
|
+
#
|
4185
4205
|
# @option params [String] :source_region
|
4186
4206
|
# The source region of the snapshot. This is only needed when the
|
4187
4207
|
# shapshot is encrypted and in a different region.
|
@@ -4260,6 +4280,7 @@ module Aws::RDS
|
|
4260
4280
|
# deletion_protection: false,
|
4261
4281
|
# domain: "String",
|
4262
4282
|
# domain_iam_role_name: "String",
|
4283
|
+
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
4263
4284
|
# source_region: "String",
|
4264
4285
|
# })
|
4265
4286
|
#
|
@@ -4295,6 +4316,7 @@ module Aws::RDS
|
|
4295
4316
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
4296
4317
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
4297
4318
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
4319
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
4298
4320
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
4299
4321
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
4300
4322
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -4327,6 +4349,7 @@ module Aws::RDS
|
|
4327
4349
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
4328
4350
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
4329
4351
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
4352
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
4330
4353
|
# resp.db_instance.license_model #=> String
|
4331
4354
|
# resp.db_instance.iops #=> Integer
|
4332
4355
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -4887,6 +4910,7 @@ module Aws::RDS
|
|
4887
4910
|
# resp.db_subnet_group.subnets #=> Array
|
4888
4911
|
# resp.db_subnet_group.subnets[0].subnet_identifier #=> String
|
4889
4912
|
# resp.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
4913
|
+
# resp.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
4890
4914
|
# resp.db_subnet_group.subnets[0].subnet_status #=> String
|
4891
4915
|
# resp.db_subnet_group.db_subnet_group_arn #=> String
|
4892
4916
|
#
|
@@ -4905,21 +4929,22 @@ module Aws::RDS
|
|
4905
4929
|
# create a topic in Amazon SNS and subscribe to the topic. The ARN is
|
4906
4930
|
# displayed in the SNS console.
|
4907
4931
|
#
|
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
|
-
#
|
4932
|
+
# You can specify the type of source (`SourceType`) that you want to be
|
4933
|
+
# notified of and provide a list of RDS sources (`SourceIds`) that
|
4934
|
+
# triggers the events. You can also provide a list of event categories
|
4935
|
+
# (`EventCategories`) for events that you want to be notified of. For
|
4936
|
+
# example, you can specify `SourceType` = `db-instance`, `SourceIds` =
|
4937
|
+
# `mydbinstance1`, `mydbinstance2` and `EventCategories` =
|
4938
|
+
# `Availability`, `Backup`.
|
4939
|
+
#
|
4940
|
+
# If you specify both the `SourceType` and `SourceIds`, such as
|
4941
|
+
# `SourceType` = `db-instance` and `SourceIdentifier` = `myDBInstance1`,
|
4942
|
+
# you are notified of all the `db-instance` events for the specified
|
4943
|
+
# source. If you specify a `SourceType` but do not specify a
|
4944
|
+
# `SourceIdentifier`, you receive notice of the events for that source
|
4945
|
+
# type for all your RDS sources. If you don't specify either the
|
4946
|
+
# SourceType or the `SourceIdentifier`, you are notified of events
|
4947
|
+
# generated from all RDS sources belonging to your customer account.
|
4923
4948
|
#
|
4924
4949
|
# <note markdown="1"> RDS event notification is only available for unencrypted SNS topics.
|
4925
4950
|
# If you specify an encrypted SNS topic, event notifications aren't
|
@@ -4939,18 +4964,18 @@ module Aws::RDS
|
|
4939
4964
|
#
|
4940
4965
|
# @option params [String] :source_type
|
4941
4966
|
# 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
|
-
#
|
4967
|
+
# want to be notified of events generated by a DB instance, you set this
|
4968
|
+
# parameter to `db-instance`. If this value isn't specified, all events
|
4969
|
+
# are returned.
|
4945
4970
|
#
|
4946
4971
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
4947
4972
|
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
4948
4973
|
#
|
4949
4974
|
# @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
|
-
#
|
4975
|
+
# A list of event categories for a particular source type (`SourceType`)
|
4976
|
+
# that you want to subscribe to. You can see a list of the categories
|
4977
|
+
# for a given source type in [Events][1] in the *Amazon RDS User Guide*
|
4978
|
+
# or by using the `DescribeEventCategories` operation.
|
4954
4979
|
#
|
4955
4980
|
#
|
4956
4981
|
#
|
@@ -4965,19 +4990,26 @@ module Aws::RDS
|
|
4965
4990
|
#
|
4966
4991
|
# Constraints:
|
4967
4992
|
#
|
4968
|
-
# * If SourceIds
|
4993
|
+
# * If a `SourceIds` value is supplied, `SourceType` must also be
|
4994
|
+
# provided.
|
4969
4995
|
#
|
4970
|
-
# * If the source type is a DB instance,
|
4996
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
4971
4997
|
# must be supplied.
|
4972
4998
|
#
|
4973
|
-
# * If the source type is a DB
|
4999
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
4974
5000
|
# must be supplied.
|
4975
5001
|
#
|
4976
5002
|
# * If the source type is a DB parameter group, a `DBParameterGroupName`
|
5003
|
+
# value must be supplied.
|
5004
|
+
#
|
5005
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
5006
|
+
# value must be supplied.
|
5007
|
+
#
|
5008
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` value
|
4977
5009
|
# must be supplied.
|
4978
5010
|
#
|
4979
|
-
# * If the source type is a DB snapshot, a
|
4980
|
-
# be supplied.
|
5011
|
+
# * If the source type is a DB cluster snapshot, a
|
5012
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
4981
5013
|
#
|
4982
5014
|
# @option params [Boolean] :enabled
|
4983
5015
|
# A value that indicates whether to activate the subscription. If the
|
@@ -5809,6 +5841,7 @@ module Aws::RDS
|
|
5809
5841
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
5810
5842
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
5811
5843
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
5844
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
5812
5845
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
5813
5846
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
5814
5847
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -5841,6 +5874,7 @@ module Aws::RDS
|
|
5841
5874
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
5842
5875
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
5843
5876
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
5877
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
5844
5878
|
# resp.db_instance.license_model #=> String
|
5845
5879
|
# resp.db_instance.iops #=> Integer
|
5846
5880
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -6794,7 +6828,7 @@ module Aws::RDS
|
|
6794
6828
|
# `writer`, `custom`. `Values` for the `db-cluster-endpoint-custom-type`
|
6795
6829
|
# filter can be one or more of: `reader`, `any`. `Values` for the
|
6796
6830
|
# `db-cluster-endpoint-status` filter can be one or more of:
|
6797
|
-
# `available`, `creating`, `deleting`, `modifying`.
|
6831
|
+
# `available`, `creating`, `deleting`, `inactive`, `modifying`.
|
6798
6832
|
#
|
6799
6833
|
# @option params [Integer] :max_records
|
6800
6834
|
# The maximum number of records to include in the response. If more
|
@@ -7648,6 +7682,8 @@ module Aws::RDS
|
|
7648
7682
|
# resp.db_engine_versions[0].supported_feature_names #=> Array
|
7649
7683
|
# resp.db_engine_versions[0].supported_feature_names[0] #=> String
|
7650
7684
|
# resp.db_engine_versions[0].status #=> String
|
7685
|
+
# resp.db_engine_versions[0].supports_parallel_query #=> Boolean
|
7686
|
+
# resp.db_engine_versions[0].supports_global_databases #=> Boolean
|
7651
7687
|
#
|
7652
7688
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
7653
7689
|
#
|
@@ -7903,6 +7939,7 @@ module Aws::RDS
|
|
7903
7939
|
# resp.db_instances[0].db_subnet_group.subnets #=> Array
|
7904
7940
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_identifier #=> String
|
7905
7941
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
7942
|
+
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
7906
7943
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_status #=> String
|
7907
7944
|
# resp.db_instances[0].db_subnet_group.db_subnet_group_arn #=> String
|
7908
7945
|
# resp.db_instances[0].preferred_maintenance_window #=> String
|
@@ -7935,6 +7972,7 @@ module Aws::RDS
|
|
7935
7972
|
# resp.db_instances[0].read_replica_db_instance_identifiers[0] #=> String
|
7936
7973
|
# resp.db_instances[0].read_replica_db_cluster_identifiers #=> Array
|
7937
7974
|
# resp.db_instances[0].read_replica_db_cluster_identifiers[0] #=> String
|
7975
|
+
# resp.db_instances[0].replica_mode #=> String, one of "open-read-only", "mounted"
|
7938
7976
|
# resp.db_instances[0].license_model #=> String
|
7939
7977
|
# resp.db_instances[0].iops #=> Integer
|
7940
7978
|
# resp.db_instances[0].option_group_memberships #=> Array
|
@@ -8945,6 +8983,7 @@ module Aws::RDS
|
|
8945
8983
|
# resp.db_subnet_groups[0].subnets #=> Array
|
8946
8984
|
# resp.db_subnet_groups[0].subnets[0].subnet_identifier #=> String
|
8947
8985
|
# resp.db_subnet_groups[0].subnets[0].subnet_availability_zone.name #=> String
|
8986
|
+
# resp.db_subnet_groups[0].subnets[0].subnet_outpost.arn #=> String
|
8948
8987
|
# resp.db_subnet_groups[0].subnets[0].subnet_status #=> String
|
8949
8988
|
# resp.db_subnet_groups[0].db_subnet_group_arn #=> String
|
8950
8989
|
#
|
@@ -9139,8 +9178,8 @@ module Aws::RDS
|
|
9139
9178
|
|
9140
9179
|
# Displays a list of categories for all event source types, or, if
|
9141
9180
|
# specified, for a specified source type. You can see a list of the
|
9142
|
-
# event categories and source types in
|
9143
|
-
#
|
9181
|
+
# event categories and source types in [ Events][1] in the *Amazon RDS
|
9182
|
+
# User Guide.*
|
9144
9183
|
#
|
9145
9184
|
#
|
9146
9185
|
#
|
@@ -9149,8 +9188,8 @@ module Aws::RDS
|
|
9149
9188
|
# @option params [String] :source_type
|
9150
9189
|
# The type of source that is generating the events.
|
9151
9190
|
#
|
9152
|
-
# Valid values: db-instance \| db-
|
9153
|
-
# \| db-snapshot
|
9191
|
+
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
9192
|
+
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
9154
9193
|
#
|
9155
9194
|
# @option params [Array<Types::Filter>] :filters
|
9156
9195
|
# This parameter isn't currently supported.
|
@@ -9201,10 +9240,11 @@ module Aws::RDS
|
|
9201
9240
|
end
|
9202
9241
|
|
9203
9242
|
# Lists all the subscription descriptions for a customer account. The
|
9204
|
-
# description for a subscription includes SubscriptionName
|
9205
|
-
# CustomerID
|
9243
|
+
# description for a subscription includes `SubscriptionName`,
|
9244
|
+
# `SNSTopicARN`, `CustomerID`, `SourceType`, `SourceID`, `CreationTime`,
|
9245
|
+
# and `Status`.
|
9206
9246
|
#
|
9207
|
-
# If you specify a SubscriptionName
|
9247
|
+
# If you specify a `SubscriptionName`, lists the description for that
|
9208
9248
|
# subscription.
|
9209
9249
|
#
|
9210
9250
|
# @option params [String] :subscription_name
|
@@ -9290,11 +9330,12 @@ module Aws::RDS
|
|
9290
9330
|
req.send_request(options)
|
9291
9331
|
end
|
9292
9332
|
|
9293
|
-
# Returns events related to DB instances, DB
|
9294
|
-
#
|
9295
|
-
# specific to a particular DB
|
9296
|
-
#
|
9297
|
-
#
|
9333
|
+
# Returns events related to DB instances, DB clusters, DB parameter
|
9334
|
+
# groups, DB security groups, DB snapshots, and DB cluster snapshots for
|
9335
|
+
# the past 14 days. Events specific to a particular DB instances, DB
|
9336
|
+
# clusters, DB parameter groups, DB security groups, DB snapshots, and
|
9337
|
+
# DB cluster snapshots group can be obtained by providing the name as a
|
9338
|
+
# parameter. By default, the past hour of events are returned.
|
9298
9339
|
#
|
9299
9340
|
# @option params [String] :source_identifier
|
9300
9341
|
# The identifier of the event source for which events are returned. If
|
@@ -9302,19 +9343,26 @@ module Aws::RDS
|
|
9302
9343
|
#
|
9303
9344
|
# Constraints:
|
9304
9345
|
#
|
9305
|
-
# * If SourceIdentifier is supplied, SourceType must also be
|
9346
|
+
# * If `SourceIdentifier` is supplied, `SourceType` must also be
|
9347
|
+
# provided.
|
9306
9348
|
#
|
9307
|
-
# * If the source type is
|
9349
|
+
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
9308
9350
|
# must be supplied.
|
9309
9351
|
#
|
9310
|
-
# * If the source type is
|
9352
|
+
# * If the source type is a DB cluster, a `DBClusterIdentifier` value
|
9311
9353
|
# must be supplied.
|
9312
9354
|
#
|
9313
|
-
# * If the source type is
|
9355
|
+
# * If the source type is a DB parameter group, a `DBParameterGroupName`
|
9356
|
+
# value must be supplied.
|
9357
|
+
#
|
9358
|
+
# * If the source type is a DB security group, a `DBSecurityGroupName`
|
9359
|
+
# value must be supplied.
|
9360
|
+
#
|
9361
|
+
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` value
|
9314
9362
|
# must be supplied.
|
9315
9363
|
#
|
9316
|
-
# * If the source type is
|
9317
|
-
# supplied.
|
9364
|
+
# * If the source type is a DB cluster snapshot, a
|
9365
|
+
# `DBClusterSnapshotIdentifier` value must be supplied.
|
9318
9366
|
#
|
9319
9367
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
9320
9368
|
#
|
@@ -10057,6 +10105,8 @@ module Aws::RDS
|
|
10057
10105
|
# resp.orderable_db_instance_options[0].supported_engine_modes[0] #=> String
|
10058
10106
|
# resp.orderable_db_instance_options[0].supports_storage_autoscaling #=> Boolean
|
10059
10107
|
# resp.orderable_db_instance_options[0].supports_kerberos_authentication #=> Boolean
|
10108
|
+
# resp.orderable_db_instance_options[0].outpost_capable #=> Boolean
|
10109
|
+
# resp.orderable_db_instance_options[0].supports_global_databases #=> Boolean
|
10060
10110
|
# resp.marker #=> String
|
10061
10111
|
#
|
10062
10112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
@@ -11437,6 +11487,13 @@ module Aws::RDS
|
|
11437
11487
|
# `none` to remove the cluster from its current domain. The domain must
|
11438
11488
|
# be created prior to this operation.
|
11439
11489
|
#
|
11490
|
+
# For more information, see [Kerberos Authentication][1] in the *Amazon
|
11491
|
+
# Aurora User Guide*.
|
11492
|
+
#
|
11493
|
+
#
|
11494
|
+
#
|
11495
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
11496
|
+
#
|
11440
11497
|
# @option params [String] :domain_iam_role_name
|
11441
11498
|
# Specify the name of the IAM role to be used when making API calls to
|
11442
11499
|
# the Directory Service.
|
@@ -12315,25 +12372,16 @@ module Aws::RDS
|
|
12315
12372
|
# @option params [String] :domain
|
12316
12373
|
# The Active Directory directory ID to move the DB instance to. Specify
|
12317
12374
|
# `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*.
|
12375
|
+
# be created prior to this operation. Currently, only MySQL, Microsoft
|
12376
|
+
# SQL Server, Oracle, and PostgreSQL DB instances can be created in an
|
12377
|
+
# Active Directory Domain.
|
12327
12378
|
#
|
12328
|
-
# For
|
12329
|
-
#
|
12330
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
12331
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
12379
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
12380
|
+
# RDS User Guide*.
|
12332
12381
|
#
|
12333
12382
|
#
|
12334
12383
|
#
|
12335
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
12336
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
12384
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
12337
12385
|
#
|
12338
12386
|
# @option params [Boolean] :copy_tags_to_snapshot
|
12339
12387
|
# A value that indicates whether to copy all tags from the DB instance
|
@@ -12553,6 +12601,26 @@ module Aws::RDS
|
|
12553
12601
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
12554
12602
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
12555
12603
|
#
|
12604
|
+
# @option params [String] :replica_mode
|
12605
|
+
# A value that sets the open mode of a replica database to either
|
12606
|
+
# mounted or read-only.
|
12607
|
+
#
|
12608
|
+
# <note markdown="1"> Currently, this parameter is only supported for Oracle DB instances.
|
12609
|
+
#
|
12610
|
+
# </note>
|
12611
|
+
#
|
12612
|
+
# Mounted DB replicas are included in Oracle Enterprise Edition. The
|
12613
|
+
# main use case for mounted replicas is cross-Region disaster recovery.
|
12614
|
+
# The primary database doesn't use Active Data Guard to transmit
|
12615
|
+
# information to the mounted replica. Because it doesn't accept user
|
12616
|
+
# connections, a mounted replica can't serve a read-only workload. For
|
12617
|
+
# more information, see [Working with Oracle Read Replicas for Amazon
|
12618
|
+
# RDS][1] in the *Amazon RDS User Guide*.
|
12619
|
+
#
|
12620
|
+
#
|
12621
|
+
#
|
12622
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
12623
|
+
#
|
12556
12624
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12557
12625
|
#
|
12558
12626
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -12632,6 +12700,7 @@ module Aws::RDS
|
|
12632
12700
|
# deletion_protection: false,
|
12633
12701
|
# max_allocated_storage: 1,
|
12634
12702
|
# certificate_rotation_restart: false,
|
12703
|
+
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
12635
12704
|
# })
|
12636
12705
|
#
|
12637
12706
|
# @example Response structure
|
@@ -12666,6 +12735,7 @@ module Aws::RDS
|
|
12666
12735
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
12667
12736
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
12668
12737
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
12738
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
12669
12739
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
12670
12740
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
12671
12741
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -12698,6 +12768,7 @@ module Aws::RDS
|
|
12698
12768
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
12699
12769
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
12700
12770
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
12771
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
12701
12772
|
# resp.db_instance.license_model #=> String
|
12702
12773
|
# resp.db_instance.iops #=> Integer
|
12703
12774
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -13301,6 +13372,7 @@ module Aws::RDS
|
|
13301
13372
|
# resp.db_subnet_group.subnets #=> Array
|
13302
13373
|
# resp.db_subnet_group.subnets[0].subnet_identifier #=> String
|
13303
13374
|
# resp.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
13375
|
+
# resp.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
13304
13376
|
# resp.db_subnet_group.subnets[0].subnet_status #=> String
|
13305
13377
|
# resp.db_subnet_group.db_subnet_group_arn #=> String
|
13306
13378
|
#
|
@@ -13319,9 +13391,9 @@ module Aws::RDS
|
|
13319
13391
|
# `AddSourceIdentifierToSubscription` and
|
13320
13392
|
# `RemoveSourceIdentifierFromSubscription` calls.
|
13321
13393
|
#
|
13322
|
-
# You can see a list of the event categories for a given
|
13323
|
-
#
|
13324
|
-
#
|
13394
|
+
# You can see a list of the event categories for a given source type
|
13395
|
+
# (`SourceType`) in [Events][1] in the *Amazon RDS User Guide* or by
|
13396
|
+
# using the `DescribeEventCategories` operation.
|
13325
13397
|
#
|
13326
13398
|
#
|
13327
13399
|
#
|
@@ -13341,14 +13413,14 @@ module Aws::RDS
|
|
13341
13413
|
# set this parameter to db-instance. If this value isn't specified, all
|
13342
13414
|
# events are returned.
|
13343
13415
|
#
|
13344
|
-
# Valid values: db-instance \| db-
|
13345
|
-
# \| db-snapshot
|
13416
|
+
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
13417
|
+
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
13346
13418
|
#
|
13347
13419
|
# @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
|
-
#
|
13420
|
+
# A list of event categories for a source type (`SourceType`) that you
|
13421
|
+
# want to subscribe to. You can see a list of the categories for a given
|
13422
|
+
# source type in [Events][1] in the *Amazon RDS User Guide* or by using
|
13423
|
+
# the `DescribeEventCategories` operation.
|
13352
13424
|
#
|
13353
13425
|
#
|
13354
13426
|
#
|
@@ -13747,6 +13819,7 @@ module Aws::RDS
|
|
13747
13819
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
13748
13820
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
13749
13821
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
13822
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
13750
13823
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
13751
13824
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
13752
13825
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -13779,6 +13852,7 @@ module Aws::RDS
|
|
13779
13852
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
13780
13853
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
13781
13854
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
13855
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
13782
13856
|
# resp.db_instance.license_model #=> String
|
13783
13857
|
# resp.db_instance.iops #=> Integer
|
13784
13858
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -14138,6 +14212,7 @@ module Aws::RDS
|
|
14138
14212
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
14139
14213
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
14140
14214
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
14215
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
14141
14216
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
14142
14217
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
14143
14218
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -14170,6 +14245,7 @@ module Aws::RDS
|
|
14170
14245
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
14171
14246
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
14172
14247
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
14248
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
14173
14249
|
# resp.db_instance.license_model #=> String
|
14174
14250
|
# resp.db_instance.iops #=> Integer
|
14175
14251
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -14725,11 +14801,11 @@ module Aws::RDS
|
|
14725
14801
|
req.send_request(options)
|
14726
14802
|
end
|
14727
14803
|
|
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*.
|
14804
|
+
# Creates an Amazon Aurora DB cluster from MySQL data stored in an
|
14805
|
+
# Amazon S3 bucket. Amazon RDS must be authorized to access the Amazon
|
14806
|
+
# S3 bucket and the data must be created using the Percona XtraBackup
|
14807
|
+
# utility as described in [ Migrating Data from MySQL by Using an Amazon
|
14808
|
+
# S3 Bucket][1] in the *Amazon Aurora User Guide*.
|
14733
14809
|
#
|
14734
14810
|
# <note markdown="1"> This action only restores the DB cluster, not the DB instances for
|
14735
14811
|
# that DB cluster. You must invoke the `CreateDBInstance` action to
|
@@ -14743,13 +14819,14 @@ module Aws::RDS
|
|
14743
14819
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
14744
14820
|
# Aurora?][2] in the *Amazon Aurora User Guide.*
|
14745
14821
|
#
|
14746
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
14822
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters. The source DB engine
|
14823
|
+
# must be MySQL.
|
14747
14824
|
#
|
14748
14825
|
# </note>
|
14749
14826
|
#
|
14750
14827
|
#
|
14751
14828
|
#
|
14752
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Migrating.html
|
14829
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Migrating.ExtMySQL.html#AuroraMySQL.Migrating.ExtMySQL.S3
|
14753
14830
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
14754
14831
|
#
|
14755
14832
|
# @option params [Array<String>] :availability_zones
|
@@ -14814,10 +14891,11 @@ module Aws::RDS
|
|
14814
14891
|
# Example: `mySubnetgroup`
|
14815
14892
|
#
|
14816
14893
|
# @option params [required, String] :engine
|
14817
|
-
# The name of the database engine to be used for
|
14818
|
-
# cluster.
|
14894
|
+
# The name of the database engine to be used for this DB cluster.
|
14819
14895
|
#
|
14820
|
-
# Valid Values: `aurora
|
14896
|
+
# Valid Values: `aurora` (for MySQL 5.6-compatible Aurora),
|
14897
|
+
# `aurora-mysql` (for MySQL 5.7-compatible Aurora), and
|
14898
|
+
# `aurora-postgresql`
|
14821
14899
|
#
|
14822
14900
|
# @option params [String] :engine_version
|
14823
14901
|
# The version number of the database engine to use.
|
@@ -14972,7 +15050,7 @@ module Aws::RDS
|
|
14972
15050
|
#
|
14973
15051
|
# MySQL versions 5.5, 5.6, and 5.7 are supported.
|
14974
15052
|
#
|
14975
|
-
# Example: `5.6.40`
|
15053
|
+
# Example: `5.6.40`, `5.7.28`
|
14976
15054
|
#
|
14977
15055
|
# @option params [required, String] :s3_bucket_name
|
14978
15056
|
# The name of the Amazon S3 bucket that contains the data used to create
|
@@ -15400,7 +15478,16 @@ module Aws::RDS
|
|
15400
15478
|
#
|
15401
15479
|
# @option params [String] :domain
|
15402
15480
|
# Specify the Active Directory directory ID to restore the DB cluster
|
15403
|
-
# in. The domain must be created prior to this operation.
|
15481
|
+
# in. The domain must be created prior to this operation. Currently,
|
15482
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances
|
15483
|
+
# can be created in an Active Directory Domain.
|
15484
|
+
#
|
15485
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
15486
|
+
# RDS User Guide*.
|
15487
|
+
#
|
15488
|
+
#
|
15489
|
+
#
|
15490
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
15404
15491
|
#
|
15405
15492
|
# @option params [String] :domain_iam_role_name
|
15406
15493
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -16150,24 +16237,15 @@ module Aws::RDS
|
|
16150
16237
|
# @option params [String] :domain
|
16151
16238
|
# Specify the Active Directory directory ID to restore the DB instance
|
16152
16239
|
# in. The domain must be created prior to this operation. Currently,
|
16153
|
-
# only Microsoft SQL Server and
|
16154
|
-
# Active Directory Domain.
|
16240
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances
|
16241
|
+
# can be created in an Active Directory Domain.
|
16155
16242
|
#
|
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
|
16243
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
16160
16244
|
# RDS User Guide*.
|
16161
16245
|
#
|
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
16246
|
#
|
16167
16247
|
#
|
16168
|
-
#
|
16169
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
16170
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
16248
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
16171
16249
|
#
|
16172
16250
|
# @option params [Boolean] :copy_tags_to_snapshot
|
16173
16251
|
# A value that indicates whether to copy all tags from the restored DB
|
@@ -16410,6 +16488,7 @@ module Aws::RDS
|
|
16410
16488
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
16411
16489
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
16412
16490
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
16491
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
16413
16492
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
16414
16493
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
16415
16494
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -16442,6 +16521,7 @@ module Aws::RDS
|
|
16442
16521
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
16443
16522
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
16444
16523
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
16524
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
16445
16525
|
# resp.db_instance.license_model #=> String
|
16446
16526
|
# resp.db_instance.iops #=> Integer
|
16447
16527
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -16967,6 +17047,7 @@ module Aws::RDS
|
|
16967
17047
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
16968
17048
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
16969
17049
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
17050
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
16970
17051
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
16971
17052
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
16972
17053
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -16999,6 +17080,7 @@ module Aws::RDS
|
|
16999
17080
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
17000
17081
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
17001
17082
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
17083
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
17002
17084
|
# resp.db_instance.license_model #=> String
|
17003
17085
|
# resp.db_instance.iops #=> Integer
|
17004
17086
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -17291,24 +17373,15 @@ module Aws::RDS
|
|
17291
17373
|
# @option params [String] :domain
|
17292
17374
|
# Specify the Active Directory directory ID to restore the DB instance
|
17293
17375
|
# in. The domain must be created prior to this operation. Currently,
|
17294
|
-
# only Microsoft SQL Server and
|
17295
|
-
# Active Directory Domain.
|
17376
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances
|
17377
|
+
# can be created in an Active Directory Domain.
|
17296
17378
|
#
|
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
|
17379
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
17301
17380
|
# RDS User Guide*.
|
17302
17381
|
#
|
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
17382
|
#
|
17308
17383
|
#
|
17309
|
-
#
|
17310
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
17311
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
17384
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
17312
17385
|
#
|
17313
17386
|
# @option params [String] :domain_iam_role_name
|
17314
17387
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -17553,6 +17626,7 @@ module Aws::RDS
|
|
17553
17626
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
17554
17627
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
17555
17628
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
17629
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
17556
17630
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
17557
17631
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
17558
17632
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -17585,6 +17659,7 @@ module Aws::RDS
|
|
17585
17659
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
17586
17660
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
17587
17661
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
17662
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
17588
17663
|
# resp.db_instance.license_model #=> String
|
17589
17664
|
# resp.db_instance.iops #=> Integer
|
17590
17665
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -17976,6 +18051,7 @@ module Aws::RDS
|
|
17976
18051
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
17977
18052
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
17978
18053
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
18054
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
17979
18055
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
17980
18056
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
17981
18057
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -18008,6 +18084,7 @@ module Aws::RDS
|
|
18008
18084
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
18009
18085
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
18010
18086
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
18087
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
18011
18088
|
# resp.db_instance.license_model #=> String
|
18012
18089
|
# resp.db_instance.iops #=> Integer
|
18013
18090
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -18091,8 +18168,26 @@ module Aws::RDS
|
|
18091
18168
|
# The ID of the AWS KMS key to use to encrypt the snapshot exported to
|
18092
18169
|
# Amazon S3. The KMS key ID is the Amazon Resource Name (ARN), the KMS
|
18093
18170
|
# key identifier, or the KMS key alias for the KMS encryption key. The
|
18094
|
-
#
|
18095
|
-
#
|
18171
|
+
# caller of this operation must be authorized to execute the following
|
18172
|
+
# operations. These can be set in the KMS key policy:
|
18173
|
+
#
|
18174
|
+
# * GrantOperation.Encrypt
|
18175
|
+
#
|
18176
|
+
# * GrantOperation.Decrypt
|
18177
|
+
#
|
18178
|
+
# * GrantOperation.GenerateDataKey
|
18179
|
+
#
|
18180
|
+
# * GrantOperation.GenerateDataKeyWithoutPlaintext
|
18181
|
+
#
|
18182
|
+
# * GrantOperation.ReEncryptFrom
|
18183
|
+
#
|
18184
|
+
# * GrantOperation.ReEncryptTo
|
18185
|
+
#
|
18186
|
+
# * GrantOperation.CreateGrant
|
18187
|
+
#
|
18188
|
+
# * GrantOperation.DescribeKey
|
18189
|
+
#
|
18190
|
+
# * GrantOperation.RetireGrant
|
18096
18191
|
#
|
18097
18192
|
# @option params [String] :s3_prefix
|
18098
18193
|
# The Amazon S3 bucket prefix to use as the file name and path of the
|
@@ -18411,6 +18506,7 @@ module Aws::RDS
|
|
18411
18506
|
# resp.db_instance.db_subnet_group.subnets #=> Array
|
18412
18507
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String
|
18413
18508
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
18509
|
+
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
18414
18510
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
18415
18511
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
18416
18512
|
# resp.db_instance.preferred_maintenance_window #=> String
|
@@ -18443,6 +18539,7 @@ module Aws::RDS
|
|
18443
18539
|
# resp.db_instance.read_replica_db_instance_identifiers[0] #=> String
|
18444
18540
|
# resp.db_instance.read_replica_db_cluster_identifiers #=> Array
|
18445
18541
|
# resp.db_instance.read_replica_db_cluster_identifiers[0] #=> String
|
18542
|
+
# resp.db_instance.replica_mode #=> String, one of "open-read-only", "mounted"
|
18446
18543
|
# resp.db_instance.license_model #=> String
|
18447
18544
|
# resp.db_instance.iops #=> Integer
|
18448
18545
|
# resp.db_instance.option_group_memberships #=> Array
|
@@ -18517,7 +18614,7 @@ module Aws::RDS
|
|
18517
18614
|
params: params,
|
18518
18615
|
config: config)
|
18519
18616
|
context[:gem_name] = 'aws-sdk-rds'
|
18520
|
-
context[:gem_version] = '1.
|
18617
|
+
context[:gem_version] = '1.96.0'
|
18521
18618
|
Seahorse::Client::Request.new(handlers, context)
|
18522
18619
|
end
|
18523
18620
|
|