aws-sdk-rds 1.120.0 → 1.124.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +896 -654
- data/lib/aws-sdk-rds/client_api.rb +12 -0
- data/lib/aws-sdk-rds/db_cluster.rb +111 -93
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +41 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +67 -57
- data/lib/aws-sdk-rds/db_instance.rb +241 -175
- data/lib/aws-sdk-rds/db_parameter_group.rb +54 -11
- data/lib/aws-sdk-rds/db_security_group.rb +12 -10
- data/lib/aws-sdk-rds/db_snapshot.rb +95 -74
- data/lib/aws-sdk-rds/db_snapshot_attribute.rb +15 -13
- data/lib/aws-sdk-rds/event_subscription.rb +2 -2
- data/lib/aws-sdk-rds/option_group.rb +3 -3
- data/lib/aws-sdk-rds/reserved_db_instance.rb +2 -2
- data/lib/aws-sdk-rds/resource.rb +203 -114
- data/lib/aws-sdk-rds/types.rb +984 -721
- metadata +4 -4
@@ -208,15 +208,51 @@ module Aws::RDS
|
|
208
208
|
# applied only to a DB instance running a database engine and engine
|
209
209
|
# version compatible with that DB parameter group family.
|
210
210
|
#
|
211
|
-
# To list all of the available parameter group families
|
212
|
-
# following command:
|
211
|
+
# To list all of the available parameter group families for a DB engine,
|
212
|
+
# use the following command:
|
213
213
|
#
|
214
214
|
# `aws rds describe-db-engine-versions --query
|
215
|
-
# "DBEngineVersions[].DBParameterGroupFamily"
|
215
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
216
|
+
#
|
217
|
+
# For example, to list all of the available parameter group families for
|
218
|
+
# the MySQL DB engine, use the following command:
|
219
|
+
#
|
220
|
+
# `aws rds describe-db-engine-versions --query
|
221
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine mysql`
|
216
222
|
#
|
217
223
|
# <note markdown="1"> The output contains duplicates.
|
218
224
|
#
|
219
225
|
# </note>
|
226
|
+
#
|
227
|
+
# The following are the valid DB engine values:
|
228
|
+
#
|
229
|
+
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
230
|
+
#
|
231
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
232
|
+
#
|
233
|
+
# * `aurora-postgresql`
|
234
|
+
#
|
235
|
+
# * `mariadb`
|
236
|
+
#
|
237
|
+
# * `mysql`
|
238
|
+
#
|
239
|
+
# * `oracle-ee`
|
240
|
+
#
|
241
|
+
# * `oracle-ee-cdb`
|
242
|
+
#
|
243
|
+
# * `oracle-se2`
|
244
|
+
#
|
245
|
+
# * `oracle-se2-cdb`
|
246
|
+
#
|
247
|
+
# * `postgres`
|
248
|
+
#
|
249
|
+
# * `sqlserver-ee`
|
250
|
+
#
|
251
|
+
# * `sqlserver-se`
|
252
|
+
#
|
253
|
+
# * `sqlserver-ex`
|
254
|
+
#
|
255
|
+
# * `sqlserver-web`
|
220
256
|
# @option options [required, String] :description
|
221
257
|
# The description for the DB parameter group.
|
222
258
|
# @option options [Array<Types::Tag>] :tags
|
@@ -311,18 +347,25 @@ module Aws::RDS
|
|
311
347
|
# })
|
312
348
|
# @param [Hash] options ({})
|
313
349
|
# @option options [required, Array<Types::Parameter>] :parameters
|
314
|
-
# An array of parameter names, values, and the
|
315
|
-
# parameter update. At least one parameter name, value, and
|
316
|
-
# must be supplied; later arguments are
|
317
|
-
# parameters can be modified in a single
|
350
|
+
# An array of parameter names, values, and the application methods for
|
351
|
+
# the parameter update. At least one parameter name, value, and
|
352
|
+
# application method method must be supplied; later arguments are
|
353
|
+
# optional. A maximum of 20 parameters can be modified in a single
|
354
|
+
# request.
|
318
355
|
#
|
319
356
|
# Valid Values (for the application method): `immediate |
|
320
357
|
# pending-reboot`
|
321
358
|
#
|
322
|
-
# <note markdown="1"> You can use the immediate value with dynamic parameters only. You
|
323
|
-
# use the pending-reboot value for both dynamic and static
|
324
|
-
#
|
325
|
-
#
|
359
|
+
# <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
|
360
|
+
# can use the `pending-reboot` value for both dynamic and static
|
361
|
+
# parameters.
|
362
|
+
#
|
363
|
+
# When the application method is `immediate`, changes to dynamic
|
364
|
+
# parameters are applied immediately to the DB instances associated with
|
365
|
+
# the parameter group. When the application method is `pending-reboot`,
|
366
|
+
# changes to dynamic and static parameters are applied after a reboot
|
367
|
+
# without failover to the DB instances associated with the parameter
|
368
|
+
# group.
|
326
369
|
#
|
327
370
|
# </note>
|
328
371
|
# @return [DBParameterGroup]
|
@@ -35,7 +35,8 @@ module Aws::RDS
|
|
35
35
|
end
|
36
36
|
alias :db_security_group_name :name
|
37
37
|
|
38
|
-
# Provides the
|
38
|
+
# Provides the Amazon Web Services ID of the owner of a specific DB
|
39
|
+
# security group.
|
39
40
|
# @return [String]
|
40
41
|
def owner_id
|
41
42
|
data[:owner_id]
|
@@ -227,11 +228,12 @@ module Aws::RDS
|
|
227
228
|
# `EC2SecurityGroupOwnerId` and either `EC2SecurityGroupName` or
|
228
229
|
# `EC2SecurityGroupId` must be provided.
|
229
230
|
# @option options [String] :ec2_security_group_owner_id
|
230
|
-
#
|
231
|
-
# the `EC2SecurityGroupName` parameter. The
|
232
|
-
# acceptable value. For VPC DB
|
233
|
-
# must be provided. Otherwise,
|
234
|
-
# `
|
231
|
+
# Amazon Web Services account number of the owner of the EC2 security
|
232
|
+
# group specified in the `EC2SecurityGroupName` parameter. The Amazon
|
233
|
+
# Web Services access key ID isn't an acceptable value. For VPC DB
|
234
|
+
# security groups, `EC2SecurityGroupId` must be provided. Otherwise,
|
235
|
+
# `EC2SecurityGroupOwnerId` and either `EC2SecurityGroupName` or
|
236
|
+
# `EC2SecurityGroupId` must be provided.
|
235
237
|
# @return [DBSecurityGroup]
|
236
238
|
def authorize_ingress(options = {})
|
237
239
|
options = options.merge(db_security_group_name: @name)
|
@@ -305,10 +307,10 @@ module Aws::RDS
|
|
305
307
|
# EC2SecurityGroupOwnerId and either `EC2SecurityGroupName` or
|
306
308
|
# `EC2SecurityGroupId` must be provided.
|
307
309
|
# @option options [String] :ec2_security_group_owner_id
|
308
|
-
# The
|
309
|
-
# specified in the `EC2SecurityGroupName` parameter. The
|
310
|
-
# ID isn't an acceptable value. For VPC
|
311
|
-
# `EC2SecurityGroupId` must be provided. Otherwise,
|
310
|
+
# The Amazon Web Services account number of the owner of the EC2
|
311
|
+
# security group specified in the `EC2SecurityGroupName` parameter. The
|
312
|
+
# Amazon Web Services access key ID isn't an acceptable value. For VPC
|
313
|
+
# DB security groups, `EC2SecurityGroupId` must be provided. Otherwise,
|
312
314
|
# EC2SecurityGroupOwnerId and either `EC2SecurityGroupName` or
|
313
315
|
# `EC2SecurityGroupId` must be provided.
|
314
316
|
# @return [DBSecurityGroup]
|
@@ -45,7 +45,7 @@ module Aws::RDS
|
|
45
45
|
alias :db_snapshot_identifier :snapshot_id
|
46
46
|
|
47
47
|
# Specifies when the snapshot was taken in Coordinated Universal Time
|
48
|
-
# (UTC).
|
48
|
+
# (UTC). Changes for the copy when the snapshot is copied.
|
49
49
|
# @return [Time]
|
50
50
|
def snapshot_create_time
|
51
51
|
data[:snapshot_create_time]
|
@@ -139,15 +139,16 @@ module Aws::RDS
|
|
139
139
|
data[:percent_progress]
|
140
140
|
end
|
141
141
|
|
142
|
-
# The
|
142
|
+
# The Amazon Web Services Region that the DB snapshot was created in or
|
143
|
+
# copied from.
|
143
144
|
# @return [String]
|
144
145
|
def source_region
|
145
146
|
data[:source_region]
|
146
147
|
end
|
147
148
|
|
148
149
|
# The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was
|
149
|
-
# copied from. It only has value in case of cross-
|
150
|
-
# cross-
|
150
|
+
# copied from. It only has a value in the case of a cross-account or
|
151
|
+
# cross-Region copy.
|
151
152
|
# @return [String]
|
152
153
|
def source_db_snapshot_identifier
|
153
154
|
data[:source_db_snapshot_identifier]
|
@@ -172,11 +173,12 @@ module Aws::RDS
|
|
172
173
|
data[:encrypted]
|
173
174
|
end
|
174
175
|
|
175
|
-
# If `Encrypted` is true, the
|
176
|
-
# DB snapshot.
|
176
|
+
# If `Encrypted` is true, the Amazon Web Services KMS key identifier for
|
177
|
+
# the encrypted DB snapshot.
|
177
178
|
#
|
178
|
-
# The
|
179
|
-
# name for the
|
179
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
180
|
+
# alias ARN, or alias name for the Amazon Web Services KMS customer
|
181
|
+
# master key (CMK).
|
180
182
|
# @return [String]
|
181
183
|
def kms_key_id
|
182
184
|
data[:kms_key_id]
|
@@ -197,8 +199,8 @@ module Aws::RDS
|
|
197
199
|
data[:timezone]
|
198
200
|
end
|
199
201
|
|
200
|
-
# True if mapping of
|
201
|
-
# to database accounts is enabled, and otherwise false.
|
202
|
+
# True if mapping of Amazon Web Services Identity and Access Management
|
203
|
+
# (IAM) accounts to database accounts is enabled, and otherwise false.
|
202
204
|
# @return [Boolean]
|
203
205
|
def iam_database_authentication_enabled
|
204
206
|
data[:iam_database_authentication_enabled]
|
@@ -212,7 +214,7 @@ module Aws::RDS
|
|
212
214
|
end
|
213
215
|
|
214
216
|
# The identifier for the source DB instance, which can't be changed and
|
215
|
-
# which is unique to an
|
217
|
+
# which is unique to an Amazon Web Services Region.
|
216
218
|
# @return [String]
|
217
219
|
def dbi_resource_id
|
218
220
|
data[:dbi_resource_id]
|
@@ -229,6 +231,13 @@ module Aws::RDS
|
|
229
231
|
data[:tag_list]
|
230
232
|
end
|
231
233
|
|
234
|
+
# Specifies the time of the CreateDBSnapshot operation in Coordinated
|
235
|
+
# Universal Time (UTC). Doesn't change when the snapshot is copied.
|
236
|
+
# @return [Time]
|
237
|
+
def original_snapshot_create_time
|
238
|
+
data[:original_snapshot_create_time]
|
239
|
+
end
|
240
|
+
|
232
241
|
# @!endgroup
|
233
242
|
|
234
243
|
# @return [Client]
|
@@ -429,26 +438,31 @@ module Aws::RDS
|
|
429
438
|
#
|
430
439
|
# Example: `my-db-snapshot`
|
431
440
|
# @option options [String] :kms_key_id
|
432
|
-
# The
|
433
|
-
# key identifier is the key ARN,
|
434
|
-
#
|
435
|
-
#
|
436
|
-
#
|
437
|
-
#
|
438
|
-
#
|
439
|
-
# copy
|
440
|
-
#
|
441
|
+
# The Amazon Web Services KMS key identifier for an encrypted DB
|
442
|
+
# snapshot. The Amazon Web Services KMS key identifier is the key ARN,
|
443
|
+
# key ID, alias ARN, or alias name for the Amazon Web Services KMS
|
444
|
+
# customer master key (CMK).
|
445
|
+
#
|
446
|
+
# If you copy an encrypted DB snapshot from your Amazon Web Services
|
447
|
+
# account, you can specify a value for this parameter to encrypt the
|
448
|
+
# copy with a new Amazon Web Services KMS CMK. If you don't specify a
|
449
|
+
# value for this parameter, then the copy of the DB snapshot is
|
450
|
+
# encrypted with the same Amazon Web Services KMS key as the source DB
|
451
|
+
# snapshot.
|
441
452
|
#
|
442
|
-
# If you copy an encrypted DB snapshot that is shared from another
|
443
|
-
# account, then you must specify a value for this
|
453
|
+
# If you copy an encrypted DB snapshot that is shared from another
|
454
|
+
# Amazon Web Services account, then you must specify a value for this
|
455
|
+
# parameter.
|
444
456
|
#
|
445
457
|
# If you specify this parameter when you copy an unencrypted snapshot,
|
446
458
|
# the copy is encrypted.
|
447
459
|
#
|
448
|
-
# If you copy an encrypted snapshot to a different
|
449
|
-
# must specify a
|
450
|
-
#
|
451
|
-
#
|
460
|
+
# If you copy an encrypted snapshot to a different Amazon Web Services
|
461
|
+
# Region, then you must specify a Amazon Web Services KMS key identifier
|
462
|
+
# for the destination Amazon Web Services Region. Amazon Web Services
|
463
|
+
# KMS CMKs are specific to the Amazon Web Services Region that they are
|
464
|
+
# created in, and you can't use CMKs from one Amazon Web Services
|
465
|
+
# Region in another Amazon Web Services Region.
|
452
466
|
# @option options [Array<Types::Tag>] :tags
|
453
467
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
454
468
|
# Resources][1] in the *Amazon RDS User Guide.*
|
@@ -461,53 +475,58 @@ module Aws::RDS
|
|
461
475
|
# snapshot to the target DB snapshot. By default, tags are not copied.
|
462
476
|
# @option options [String] :pre_signed_url
|
463
477
|
# The URL that contains a Signature Version 4 signed request for the
|
464
|
-
# `CopyDBSnapshot` API action in the source
|
465
|
-
# source DB snapshot to copy.
|
478
|
+
# `CopyDBSnapshot` API action in the source Amazon Web Services Region
|
479
|
+
# that contains the source DB snapshot to copy.
|
466
480
|
#
|
467
481
|
# You must specify this parameter when you copy an encrypted DB snapshot
|
468
|
-
# from another
|
469
|
-
# `PreSignedUrl` when you are copying an encrypted DB
|
470
|
-
# same
|
482
|
+
# from another Amazon Web Services Region by using the Amazon RDS API.
|
483
|
+
# Don't specify `PreSignedUrl` when you are copying an encrypted DB
|
484
|
+
# snapshot in the same Amazon Web Services Region.
|
471
485
|
#
|
472
486
|
# The presigned URL must be a valid request for the `CopyDBSnapshot` API
|
473
|
-
# action that can be executed in the source
|
474
|
-
# encrypted DB snapshot to be copied. The presigned
|
475
|
-
# contain the following parameter values:
|
487
|
+
# action that can be executed in the source Amazon Web Services Region
|
488
|
+
# that contains the encrypted DB snapshot to be copied. The presigned
|
489
|
+
# URL request must contain the following parameter values:
|
476
490
|
#
|
477
|
-
# * `DestinationRegion` - The
|
478
|
-
# is copied to. This
|
479
|
-
# `CopyDBSnapshot` action is called that
|
491
|
+
# * `DestinationRegion` - The Amazon Web Services Region that the
|
492
|
+
# encrypted DB snapshot is copied to. This Amazon Web Services Region
|
493
|
+
# is the same one where the `CopyDBSnapshot` action is called that
|
494
|
+
# contains this presigned URL.
|
480
495
|
#
|
481
496
|
# For example, if you copy an encrypted DB snapshot from the us-west-2
|
482
|
-
#
|
483
|
-
# `CopyDBSnapshot` action in the us-east-1
|
484
|
-
#
|
485
|
-
# the us-west-2
|
486
|
-
#
|
487
|
-
#
|
488
|
-
#
|
489
|
-
#
|
490
|
-
#
|
491
|
-
#
|
492
|
-
#
|
497
|
+
# Amazon Web Services Region to the us-east-1 Amazon Web Services
|
498
|
+
# Region, then you call the `CopyDBSnapshot` action in the us-east-1
|
499
|
+
# Amazon Web Services Region and provide a presigned URL that contains
|
500
|
+
# a call to the `CopyDBSnapshot` action in the us-west-2 Amazon Web
|
501
|
+
# Services Region. For this example, the `DestinationRegion` in the
|
502
|
+
# presigned URL must be set to the us-east-1 Amazon Web Services
|
503
|
+
# Region.
|
504
|
+
#
|
505
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
506
|
+
# customer master key (CMK) to use to encrypt the copy of the DB
|
507
|
+
# snapshot in the destination Amazon Web Services Region. This is the
|
508
|
+
# same identifier for both the `CopyDBSnapshot` action that is called
|
509
|
+
# in the destination Amazon Web Services Region, and the action
|
510
|
+
# contained in the presigned URL.
|
493
511
|
#
|
494
512
|
# * `SourceDBSnapshotIdentifier` - The DB snapshot identifier for the
|
495
513
|
# encrypted snapshot to be copied. This identifier must be in the
|
496
|
-
# Amazon Resource Name (ARN) format for the source
|
497
|
-
# example, if you are copying an encrypted DB snapshot
|
498
|
-
# us-west-2
|
499
|
-
# like the following example:
|
514
|
+
# Amazon Resource Name (ARN) format for the source Amazon Web Services
|
515
|
+
# Region. For example, if you are copying an encrypted DB snapshot
|
516
|
+
# from the us-west-2 Amazon Web Services Region, then your
|
517
|
+
# `SourceDBSnapshotIdentifier` looks like the following example:
|
500
518
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115`.
|
501
519
|
#
|
502
520
|
# To learn how to generate a Signature Version 4 signed request, see
|
503
|
-
# [Authenticating Requests: Using Query Parameters (
|
504
|
-
# Version 4)][1] and [Signature Version 4 Signing Process][2].
|
521
|
+
# [Authenticating Requests: Using Query Parameters (Amazon Web Services
|
522
|
+
# Signature Version 4)][1] and [Signature Version 4 Signing Process][2].
|
505
523
|
#
|
506
|
-
# <note markdown="1"> If you are using an
|
507
|
-
# `SourceRegion` (or `--source-region` for the
|
524
|
+
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
525
|
+
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
508
526
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
509
527
|
# autogenerates a pre-signed URL that is a valid request for the
|
510
|
-
# operation that can be executed in the source
|
528
|
+
# operation that can be executed in the source Amazon Web Services
|
529
|
+
# Region.
|
511
530
|
#
|
512
531
|
# </note>
|
513
532
|
#
|
@@ -519,12 +538,13 @@ module Aws::RDS
|
|
519
538
|
# The name of an option group to associate with the copy of the
|
520
539
|
# snapshot.
|
521
540
|
#
|
522
|
-
# Specify this option if you are copying a snapshot from one
|
523
|
-
# to another, and your DB instance uses a nondefault
|
524
|
-
# your source DB instance uses Transparent Data
|
525
|
-
# Microsoft SQL Server, you must specify this
|
526
|
-
#
|
527
|
-
# considerations][1] in the *Amazon RDS
|
541
|
+
# Specify this option if you are copying a snapshot from one Amazon Web
|
542
|
+
# Services Region to another, and your DB instance uses a nondefault
|
543
|
+
# option group. If your source DB instance uses Transparent Data
|
544
|
+
# Encryption for Oracle or Microsoft SQL Server, you must specify this
|
545
|
+
# option when copying across Amazon Web Services Regions. For more
|
546
|
+
# information, see [Option group considerations][1] in the *Amazon RDS
|
547
|
+
# User Guide.*
|
528
548
|
#
|
529
549
|
#
|
530
550
|
#
|
@@ -624,9 +644,9 @@ module Aws::RDS
|
|
624
644
|
# @option options [String] :db_instance_class
|
625
645
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
626
646
|
# example, `db.m4.large`. Not all DB instance classes are available in
|
627
|
-
# all
|
628
|
-
# instance classes, and availability for your engine,
|
629
|
-
# Class][1] in the *Amazon RDS User Guide.*
|
647
|
+
# all Amazon Web Services Regions, or for all database engines. For the
|
648
|
+
# full list of DB instance classes, and availability for your engine,
|
649
|
+
# see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
630
650
|
#
|
631
651
|
# Default: The same DBInstanceClass as the original DB instance.
|
632
652
|
#
|
@@ -709,11 +729,11 @@ module Aws::RDS
|
|
709
729
|
#
|
710
730
|
# * `oracle-ee`
|
711
731
|
#
|
712
|
-
# * `oracle-
|
732
|
+
# * `oracle-ee-cdb`
|
713
733
|
#
|
714
|
-
# * `oracle-
|
734
|
+
# * `oracle-se2`
|
715
735
|
#
|
716
|
-
# * `oracle-
|
736
|
+
# * `oracle-se2-cdb`
|
717
737
|
#
|
718
738
|
# * `postgres`
|
719
739
|
#
|
@@ -796,9 +816,9 @@ module Aws::RDS
|
|
796
816
|
# Specify the name of the IAM role to be used when making API calls to
|
797
817
|
# the Directory Service.
|
798
818
|
# @option options [Boolean] :enable_iam_database_authentication
|
799
|
-
# A value that indicates whether to enable mapping of
|
800
|
-
# Access Management (IAM) accounts to database
|
801
|
-
# mapping is disabled.
|
819
|
+
# A value that indicates whether to enable mapping of Amazon Web
|
820
|
+
# Services Identity and Access Management (IAM) accounts to database
|
821
|
+
# accounts. By default, mapping is disabled.
|
802
822
|
#
|
803
823
|
# For more information about IAM database authentication, see [ IAM
|
804
824
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -856,10 +876,11 @@ module Aws::RDS
|
|
856
876
|
# from outside of its virtual private cloud (VPC) on your local network.
|
857
877
|
#
|
858
878
|
# For more information about RDS on Outposts, see [Working with Amazon
|
859
|
-
# RDS on
|
879
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
880
|
+
# Guide*.
|
860
881
|
#
|
861
882
|
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
862
|
-
# in the *
|
883
|
+
# in the *Amazon Web Services Outposts User Guide*.
|
863
884
|
#
|
864
885
|
#
|
865
886
|
#
|
@@ -46,10 +46,10 @@ module Aws::RDS
|
|
46
46
|
# The value or values for the manual DB snapshot attribute.
|
47
47
|
#
|
48
48
|
# If the `AttributeName` field is set to `restore`, then this element
|
49
|
-
# returns a list of IDs of the
|
50
|
-
# or restore the manual DB snapshot. If a value of
|
51
|
-
# then the manual DB snapshot is public and
|
52
|
-
# account to copy or restore.
|
49
|
+
# returns a list of IDs of the Amazon Web Services accounts that are
|
50
|
+
# authorized to copy or restore the manual DB snapshot. If a value of
|
51
|
+
# `all` is in the list, then the manual DB snapshot is public and
|
52
|
+
# available for any Amazon Web Services account to copy or restore.
|
53
53
|
# @return [Array<String>]
|
54
54
|
def attribute_values
|
55
55
|
data[:attribute_values]
|
@@ -195,19 +195,21 @@ module Aws::RDS
|
|
195
195
|
# A list of DB snapshot attributes to add to the attribute specified by
|
196
196
|
# `AttributeName`.
|
197
197
|
#
|
198
|
-
# To authorize other
|
199
|
-
# set this list to include one or more
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
198
|
+
# To authorize other Amazon Web Services accounts to copy or restore a
|
199
|
+
# manual snapshot, set this list to include one or more Amazon Web
|
200
|
+
# Services account IDs, or `all` to make the manual DB snapshot
|
201
|
+
# restorable by any Amazon Web Services account. Do not add the `all`
|
202
|
+
# value for any manual DB snapshots that contain private information
|
203
|
+
# that you don't want available to all Amazon Web Services accounts.
|
203
204
|
# @option options [Array<String>] :values_to_remove
|
204
205
|
# A list of DB snapshot attributes to remove from the attribute
|
205
206
|
# specified by `AttributeName`.
|
206
207
|
#
|
207
|
-
# To remove authorization for other
|
208
|
-
# manual snapshot, set this list to include one or more
|
209
|
-
# identifiers, or `all` to remove
|
210
|
-
#
|
208
|
+
# To remove authorization for other Amazon Web Services accounts to copy
|
209
|
+
# or restore a manual snapshot, set this list to include one or more
|
210
|
+
# Amazon Web Services account identifiers, or `all` to remove
|
211
|
+
# authorization for any Amazon Web Services account to copy or restore
|
212
|
+
# the DB snapshot. If you specify `all`, an Amazon Web Services account
|
211
213
|
# whose account ID is explicitly added to the `restore` attribute can
|
212
214
|
# still copy or restore the manual DB snapshot.
|
213
215
|
# @return [Types::ModifyDBSnapshotAttributeResult]
|