aws-sdk-rds 1.51.0 → 1.52.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 +506 -511
- data/lib/aws-sdk-rds/db_cluster.rb +85 -90
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +6 -11
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +16 -15
- data/lib/aws-sdk-rds/db_engine.rb +10 -4
- data/lib/aws-sdk-rds/db_instance.rb +247 -234
- data/lib/aws-sdk-rds/db_parameter_group.rb +4 -10
- data/lib/aws-sdk-rds/db_security_group.rb +3 -8
- data/lib/aws-sdk-rds/db_snapshot.rb +30 -29
- data/lib/aws-sdk-rds/db_subnet_group.rb +2 -7
- data/lib/aws-sdk-rds/event_subscription.rb +4 -3
- data/lib/aws-sdk-rds/option_group.rb +4 -9
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +113 -136
- data/lib/aws-sdk-rds/types.rb +771 -704
- metadata +4 -4
@@ -40,8 +40,8 @@ module Aws::RDS
|
|
40
40
|
data[:allocated_storage]
|
41
41
|
end
|
42
42
|
|
43
|
-
# Provides the list of
|
44
|
-
# cluster can be created
|
43
|
+
# Provides the list of Availability Zones (AZs) where instances in the
|
44
|
+
# DB cluster can be created.
|
45
45
|
# @return [Array<String>]
|
46
46
|
def availability_zones
|
47
47
|
data[:availability_zones]
|
@@ -231,7 +231,7 @@ module Aws::RDS
|
|
231
231
|
data[:storage_encrypted]
|
232
232
|
end
|
233
233
|
|
234
|
-
# If `StorageEncrypted` is
|
234
|
+
# If `StorageEncrypted` is enabled, the AWS KMS key identifier for the
|
235
235
|
# encrypted DB cluster.
|
236
236
|
# @return [String]
|
237
237
|
def kms_key_id
|
@@ -261,8 +261,8 @@ module Aws::RDS
|
|
261
261
|
data[:associated_roles]
|
262
262
|
end
|
263
263
|
|
264
|
-
#
|
265
|
-
# to database accounts is enabled
|
264
|
+
# A value that indicates whether the mapping of AWS Identity and Access
|
265
|
+
# Management (IAM) accounts to database accounts is enabled.
|
266
266
|
# @return [Boolean]
|
267
267
|
def iam_database_authentication_enabled
|
268
268
|
data[:iam_database_authentication_enabled]
|
@@ -352,7 +352,7 @@ module Aws::RDS
|
|
352
352
|
end
|
353
353
|
|
354
354
|
# Indicates if the DB cluster has deletion protection enabled. The
|
355
|
-
# database can't be deleted when
|
355
|
+
# database can't be deleted when deletion protection is enabled.
|
356
356
|
# @return [Boolean]
|
357
357
|
def deletion_protection
|
358
358
|
data[:deletion_protection]
|
@@ -363,8 +363,8 @@ module Aws::RDS
|
|
363
363
|
#
|
364
364
|
# </note>
|
365
365
|
#
|
366
|
-
#
|
367
|
-
# cluster is enabled
|
366
|
+
# A value that indicates whether the HTTP endpoint for an Aurora
|
367
|
+
# Serverless DB cluster is enabled.
|
368
368
|
#
|
369
369
|
# When enabled, the HTTP endpoint provides a connectionless web service
|
370
370
|
# API for running SQL queries on the Aurora Serverless DB cluster. You
|
@@ -567,8 +567,8 @@ module Aws::RDS
|
|
567
567
|
# })
|
568
568
|
# @param [Hash] options ({})
|
569
569
|
# @option options [Array<String>] :availability_zones
|
570
|
-
# A list of
|
571
|
-
# be created
|
570
|
+
# A list of Availability Zones (AZs) where instances in the DB cluster
|
571
|
+
# can be created. For information on AWS Regions and Availability Zones,
|
572
572
|
# see [Choosing the Regions and Availability Zones][1] in the *Amazon
|
573
573
|
# Aurora User Guide*.
|
574
574
|
#
|
@@ -576,8 +576,7 @@ module Aws::RDS
|
|
576
576
|
#
|
577
577
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html
|
578
578
|
# @option options [Integer] :backup_retention_period
|
579
|
-
# The number of days for which automated backups are retained.
|
580
|
-
# specify a minimum value of 1.
|
579
|
+
# The number of days for which automated backups are retained.
|
581
580
|
#
|
582
581
|
# Default: 1
|
583
582
|
#
|
@@ -701,14 +700,9 @@ module Aws::RDS
|
|
701
700
|
# The Amazon Resource Name (ARN) of the source DB instance or DB cluster
|
702
701
|
# if this DB cluster is created as a Read Replica.
|
703
702
|
# @option options [Array<Types::Tag>] :tags
|
704
|
-
#
|
705
|
-
# Resources][1] in the *Amazon RDS User Guide.*
|
706
|
-
#
|
707
|
-
#
|
708
|
-
#
|
709
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
703
|
+
# Tags to assign to the DB cluster.
|
710
704
|
# @option options [Boolean] :storage_encrypted
|
711
|
-
#
|
705
|
+
# A value that indicates whether the DB cluster is encrypted.
|
712
706
|
# @option options [String] :kms_key_id
|
713
707
|
# The AWS KMS key identifier for an encrypted DB cluster.
|
714
708
|
#
|
@@ -724,7 +718,7 @@ module Aws::RDS
|
|
724
718
|
# then Amazon RDS will use the encryption key used to encrypt the
|
725
719
|
# source. Otherwise, Amazon RDS will use your default encryption key.
|
726
720
|
#
|
727
|
-
# * If the `StorageEncrypted` parameter is
|
721
|
+
# * If the `StorageEncrypted` parameter is enabled and
|
728
722
|
# `ReplicationSourceIdentifier` is not specified, then Amazon RDS will
|
729
723
|
# use your default encryption key.
|
730
724
|
#
|
@@ -776,10 +770,9 @@ module Aws::RDS
|
|
776
770
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
777
771
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
778
772
|
# @option options [Boolean] :enable_iam_database_authentication
|
779
|
-
#
|
780
|
-
# accounts to database accounts
|
781
|
-
#
|
782
|
-
# Default: `false`
|
773
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
774
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
775
|
+
# mapping is disabled.
|
783
776
|
# @option options [Integer] :backtrack_window
|
784
777
|
# The target backtrack window, in seconds. To disable backtracking, set
|
785
778
|
# this value to 0.
|
@@ -808,15 +801,15 @@ module Aws::RDS
|
|
808
801
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
809
802
|
# of the DB cluster.
|
810
803
|
# @option options [Boolean] :deletion_protection
|
811
|
-
#
|
812
|
-
# The database can't be deleted when
|
813
|
-
# default is
|
804
|
+
# A value that indicates whether the DB cluster has deletion protection
|
805
|
+
# enabled. The database can't be deleted when deletion protection is
|
806
|
+
# enabled. By default, deletion protection is disabled.
|
814
807
|
# @option options [String] :global_cluster_identifier
|
815
808
|
# The global cluster ID of an Aurora cluster that becomes the primary
|
816
809
|
# cluster in the new global database cluster.
|
817
810
|
# @option options [Boolean] :copy_tags_to_snapshot
|
818
|
-
#
|
819
|
-
#
|
811
|
+
# A value that indicates whether to copy all tags from the DB cluster to
|
812
|
+
# snapshots of the DB cluster. The default is not to copy them.
|
820
813
|
# @option options [String] :destination_region
|
821
814
|
# @option options [String] :source_region
|
822
815
|
# The source region of the snapshot. This is only needed when the
|
@@ -879,23 +872,24 @@ module Aws::RDS
|
|
879
872
|
# })
|
880
873
|
# @param [Hash] options ({})
|
881
874
|
# @option options [Boolean] :skip_final_snapshot
|
882
|
-
#
|
883
|
-
# DB cluster is deleted. If
|
884
|
-
#
|
885
|
-
# before the DB cluster is
|
875
|
+
# A value that indicates whether to skip the creation of a final DB
|
876
|
+
# cluster snapshot before the DB cluster is deleted. If skip is
|
877
|
+
# specified, no DB cluster snapshot is created. If skip is not
|
878
|
+
# specified, a DB cluster snapshot is created before the DB cluster is
|
879
|
+
# deleted. By default, skip is not specified, and the DB cluster
|
880
|
+
# snapshot is created. By default, this parameter is disabled.
|
886
881
|
#
|
887
882
|
# <note markdown="1"> You must specify a `FinalDBSnapshotIdentifier` parameter if
|
888
|
-
# `SkipFinalSnapshot` is
|
883
|
+
# `SkipFinalSnapshot` is disabled.
|
889
884
|
#
|
890
885
|
# </note>
|
891
|
-
#
|
892
|
-
# Default: `false`
|
893
886
|
# @option options [String] :final_db_snapshot_identifier
|
894
887
|
# The DB cluster snapshot identifier of the new DB cluster snapshot
|
895
|
-
# created when `SkipFinalSnapshot` is
|
888
|
+
# created when `SkipFinalSnapshot` is disabled.
|
896
889
|
#
|
897
|
-
# <note markdown="1"> Specifying this parameter and also
|
898
|
-
#
|
890
|
+
# <note markdown="1"> Specifying this parameter and also skipping the creation of a final DB
|
891
|
+
# cluster snapshot with the `SkipFinalShapshot` parameter results in an
|
892
|
+
# error.
|
899
893
|
#
|
900
894
|
# </note>
|
901
895
|
#
|
@@ -985,22 +979,22 @@ module Aws::RDS
|
|
985
979
|
#
|
986
980
|
# Example: `my-cluster2`
|
987
981
|
# @option options [Boolean] :apply_immediately
|
988
|
-
# A value that
|
982
|
+
# A value that indicates whether the modifications in this request and
|
989
983
|
# any pending modifications are asynchronously applied as soon as
|
990
984
|
# possible, regardless of the `PreferredMaintenanceWindow` setting for
|
991
|
-
# the DB cluster. If this parameter is
|
985
|
+
# the DB cluster. If this parameter is disabled, changes to the DB
|
992
986
|
# cluster are applied during the next maintenance window.
|
993
987
|
#
|
994
988
|
# The `ApplyImmediately` parameter only affects the
|
995
989
|
# `EnableIAMDatabaseAuthentication`, `MasterUserPassword`, and
|
996
|
-
# `NewDBClusterIdentifier` values. If
|
997
|
-
#
|
998
|
-
# `
|
999
|
-
#
|
1000
|
-
#
|
1001
|
-
#
|
990
|
+
# `NewDBClusterIdentifier` values. If the `ApplyImmediately` parameter
|
991
|
+
# is disabled, then changes to the `EnableIAMDatabaseAuthentication`,
|
992
|
+
# `MasterUserPassword`, and `NewDBClusterIdentifier` values are applied
|
993
|
+
# during the next maintenance window. All other changes are applied
|
994
|
+
# immediately, regardless of the value of the `ApplyImmediately`
|
995
|
+
# parameter.
|
1002
996
|
#
|
1003
|
-
#
|
997
|
+
# By default, this parameter is disabled.
|
1004
998
|
# @option options [Integer] :backup_retention_period
|
1005
999
|
# The number of days for which automated backups are retained. You must
|
1006
1000
|
# specify a minimum value of 1.
|
@@ -1031,11 +1025,11 @@ module Aws::RDS
|
|
1031
1025
|
# A value that indicates that the DB cluster should be associated with
|
1032
1026
|
# the specified option group. Changing this parameter doesn't result in
|
1033
1027
|
# an outage except in the following case, and the change is applied
|
1034
|
-
# during the next maintenance window unless the `ApplyImmediately`
|
1035
|
-
#
|
1036
|
-
#
|
1037
|
-
#
|
1038
|
-
#
|
1028
|
+
# during the next maintenance window unless the `ApplyImmediately` is
|
1029
|
+
# enabled for this request. If the parameter change results in an option
|
1030
|
+
# group that enables OEM, this change can cause a brief (sub-second)
|
1031
|
+
# period during which new connections are rejected but existing
|
1032
|
+
# connections are not interrupted.
|
1039
1033
|
#
|
1040
1034
|
# Permanent options can't be removed from an option group. The option
|
1041
1035
|
# group can't be removed from a DB cluster once it is associated with a
|
@@ -1082,10 +1076,9 @@ module Aws::RDS
|
|
1082
1076
|
#
|
1083
1077
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
1084
1078
|
# @option options [Boolean] :enable_iam_database_authentication
|
1085
|
-
#
|
1086
|
-
# accounts to database accounts
|
1087
|
-
#
|
1088
|
-
# Default: `false`
|
1079
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
1080
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
1081
|
+
# mapping is disabled.
|
1089
1082
|
# @option options [Integer] :backtrack_window
|
1090
1083
|
# The target backtrack window, in seconds. To disable backtracking, set
|
1091
1084
|
# this value to 0.
|
@@ -1104,17 +1097,17 @@ module Aws::RDS
|
|
1104
1097
|
# @option options [String] :engine_version
|
1105
1098
|
# The version number of the database engine to which you want to
|
1106
1099
|
# upgrade. Changing this parameter results in an outage. The change is
|
1107
|
-
# applied during the next maintenance window unless
|
1108
|
-
#
|
1100
|
+
# applied during the next maintenance window unless `ApplyImmediately`
|
1101
|
+
# is enabled.
|
1109
1102
|
#
|
1110
|
-
# For a list of valid engine versions,
|
1111
|
-
# DescribeDBEngineVersions.
|
1103
|
+
# For a list of valid engine versions, use DescribeDBEngineVersions.
|
1112
1104
|
# @option options [Types::ScalingConfiguration] :scaling_configuration
|
1113
1105
|
# The scaling properties of the DB cluster. You can only modify scaling
|
1114
1106
|
# properties for DB clusters in `serverless` DB engine mode.
|
1115
1107
|
# @option options [Boolean] :deletion_protection
|
1116
|
-
#
|
1117
|
-
# database can't be deleted when
|
1108
|
+
# A value that indicates whether the DB cluster has deletion protection
|
1109
|
+
# enabled. The database can't be deleted when deletion protection is
|
1110
|
+
# enabled. By default, deletion protection is disabled.
|
1118
1111
|
# @option options [Boolean] :enable_http_endpoint
|
1119
1112
|
# <note markdown="1"> HTTP endpoint functionality is in beta for Aurora Serverless and is
|
1120
1113
|
# subject to change.
|
@@ -1137,8 +1130,8 @@ module Aws::RDS
|
|
1137
1130
|
#
|
1138
1131
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
1139
1132
|
# @option options [Boolean] :copy_tags_to_snapshot
|
1140
|
-
#
|
1141
|
-
#
|
1133
|
+
# A value that indicates whether to copy all tags from the DB cluster to
|
1134
|
+
# snapshots of the DB cluster. The default is not to copy them.
|
1142
1135
|
# @return [DBCluster]
|
1143
1136
|
def modify(options = {})
|
1144
1137
|
options = options.merge(db_cluster_identifier: @id)
|
@@ -1214,16 +1207,17 @@ module Aws::RDS
|
|
1214
1207
|
# * Must be specified if `UseLatestRestorableTime` parameter is not
|
1215
1208
|
# provided
|
1216
1209
|
#
|
1217
|
-
# * Can't be specified if `UseLatestRestorableTime` parameter is
|
1210
|
+
# * Can't be specified if the `UseLatestRestorableTime` parameter is
|
1211
|
+
# enabled
|
1218
1212
|
#
|
1219
|
-
# * Can't be specified if `RestoreType` parameter is
|
1213
|
+
# * Can't be specified if the `RestoreType` parameter is
|
1214
|
+
# `copy-on-write`
|
1220
1215
|
#
|
1221
1216
|
# Example: `2015-03-07T23:45:00Z`
|
1222
1217
|
# @option options [Boolean] :use_latest_restorable_time
|
1223
|
-
# A value that
|
1224
|
-
# restorable backup time,
|
1225
|
-
#
|
1226
|
-
# Default: `false`
|
1218
|
+
# A value that indicates whether to restore the DB cluster to the latest
|
1219
|
+
# restorable backup time. By default, the DB cluster is not restored to
|
1220
|
+
# the latest restorable backup time.
|
1227
1221
|
#
|
1228
1222
|
# Constraints: Can't be specified if `RestoreToTime` parameter is
|
1229
1223
|
# provided.
|
@@ -1279,10 +1273,9 @@ module Aws::RDS
|
|
1279
1273
|
# If `DBClusterIdentifier` refers to a DB cluster that is not encrypted,
|
1280
1274
|
# then the restore request is rejected.
|
1281
1275
|
# @option options [Boolean] :enable_iam_database_authentication
|
1282
|
-
#
|
1283
|
-
# accounts to database accounts
|
1284
|
-
#
|
1285
|
-
# Default: `false`
|
1276
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
1277
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
1278
|
+
# mapping is disabled.
|
1286
1279
|
# @option options [Integer] :backtrack_window
|
1287
1280
|
# The target backtrack window, in seconds. To disable backtracking, set
|
1288
1281
|
# this value to 0.
|
@@ -1320,12 +1313,13 @@ module Aws::RDS
|
|
1320
1313
|
#
|
1321
1314
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
1322
1315
|
# @option options [Boolean] :deletion_protection
|
1323
|
-
#
|
1324
|
-
# The database can't be deleted when
|
1325
|
-
# default is
|
1316
|
+
# A value that indicates whether the DB cluster has deletion protection
|
1317
|
+
# enabled. The database can't be deleted when deletion protection is
|
1318
|
+
# enabled. By default, deletion protection is disabled.
|
1326
1319
|
# @option options [Boolean] :copy_tags_to_snapshot
|
1327
|
-
#
|
1328
|
-
# restored DB cluster
|
1320
|
+
# A value that indicates whether to copy all tags from the restored DB
|
1321
|
+
# cluster to snapshots of the restored DB cluster. The default is not to
|
1322
|
+
# copy them.
|
1329
1323
|
# @return [DBCluster]
|
1330
1324
|
def restore(options = {})
|
1331
1325
|
options = options.merge(source_db_cluster_identifier: @id)
|
@@ -1492,9 +1486,9 @@ module Aws::RDS
|
|
1492
1486
|
#
|
1493
1487
|
# If you don't specify a `SnapshotType` value, then both automated and
|
1494
1488
|
# manual DB cluster snapshots are returned. You can include shared DB
|
1495
|
-
# cluster snapshots with these results by
|
1496
|
-
# parameter
|
1497
|
-
#
|
1489
|
+
# cluster snapshots with these results by enabling the `IncludeShared`
|
1490
|
+
# parameter. You can include public DB cluster snapshots with these
|
1491
|
+
# results by enabling the `IncludePublic` parameter.
|
1498
1492
|
#
|
1499
1493
|
# The `IncludeShared` and `IncludePublic` parameters don't apply for
|
1500
1494
|
# `SnapshotType` values of `manual` or `automated`. The `IncludePublic`
|
@@ -1518,17 +1512,18 @@ module Aws::RDS
|
|
1518
1512
|
# the response includes only records beyond the marker, up to the value
|
1519
1513
|
# specified by `MaxRecords`.
|
1520
1514
|
# @option options [Boolean] :include_shared
|
1521
|
-
#
|
1522
|
-
# accounts that this AWS account has been given
|
1523
|
-
#
|
1515
|
+
# A value that indicates whether to include shared manual DB cluster
|
1516
|
+
# snapshots from other AWS accounts that this AWS account has been given
|
1517
|
+
# permission to copy or restore. By default, these snapshots are not
|
1518
|
+
# included.
|
1524
1519
|
#
|
1525
1520
|
# You can give an AWS account permission to restore a manual DB cluster
|
1526
1521
|
# snapshot from another AWS account by the
|
1527
|
-
# ModifyDBClusterSnapshotAttribute API action.
|
1522
|
+
# `ModifyDBClusterSnapshotAttribute` API action.
|
1528
1523
|
# @option options [Boolean] :include_public
|
1529
|
-
#
|
1530
|
-
# copied or restored by any AWS account
|
1531
|
-
# default
|
1524
|
+
# A value that indicates whether to include manual DB cluster snapshots
|
1525
|
+
# that are public and can be copied or restored by any AWS account. By
|
1526
|
+
# default, the public snapshots are not included.
|
1532
1527
|
#
|
1533
1528
|
# You can share a manual DB cluster snapshot as public by using the
|
1534
1529
|
# ModifyDBClusterSnapshotAttribute API action.
|
@@ -213,12 +213,7 @@ module Aws::RDS
|
|
213
213
|
# @option options [required, String] :description
|
214
214
|
# The description for the DB cluster parameter group.
|
215
215
|
# @option options [Array<Types::Tag>] :tags
|
216
|
-
#
|
217
|
-
# Resources][1] in the *Amazon RDS User Guide.*
|
218
|
-
#
|
219
|
-
#
|
220
|
-
#
|
221
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
216
|
+
# Tags to assign to the DB cluster parameter group.
|
222
217
|
# @return [DBClusterParameterGroup]
|
223
218
|
def create(options = {})
|
224
219
|
options = options.merge(db_cluster_parameter_group_name: @name)
|
@@ -295,14 +290,14 @@ module Aws::RDS
|
|
295
290
|
# })
|
296
291
|
# @param [Hash] options ({})
|
297
292
|
# @option options [Boolean] :reset_all_parameters
|
298
|
-
# A value that
|
299
|
-
# cluster parameter group to their default values
|
300
|
-
#
|
301
|
-
#
|
293
|
+
# A value that indicates whether to reset all parameters in the DB
|
294
|
+
# cluster parameter group to their default values. You can't use this
|
295
|
+
# parameter if there is a list of parameter names specified for the
|
296
|
+
# `Parameters` parameter.
|
302
297
|
# @option options [Array<Types::Parameter>] :parameters
|
303
298
|
# A list of parameter names in the DB cluster parameter group to reset
|
304
299
|
# to the default values. You can't use this parameter if the
|
305
|
-
# `ResetAllParameters` parameter is
|
300
|
+
# `ResetAllParameters` parameter is enabled.
|
306
301
|
# @return [DBClusterParameterGroup]
|
307
302
|
def reset(options = {})
|
308
303
|
options = options.merge(db_cluster_parameter_group_name: @name)
|
@@ -40,8 +40,8 @@ module Aws::RDS
|
|
40
40
|
end
|
41
41
|
alias :db_cluster_snapshot_identifier :snapshot_id
|
42
42
|
|
43
|
-
# Provides the list of
|
44
|
-
# cluster snapshot can be restored
|
43
|
+
# Provides the list of Availability Zones (AZs) where instances in the
|
44
|
+
# DB cluster snapshot can be restored.
|
45
45
|
# @return [Array<String>]
|
46
46
|
def availability_zones
|
47
47
|
data[:availability_zones]
|
@@ -410,8 +410,9 @@ module Aws::RDS
|
|
410
410
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
411
411
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
412
412
|
# @option options [Boolean] :copy_tags
|
413
|
-
#
|
414
|
-
# target DB cluster snapshot
|
413
|
+
# A value that indicates whether to copy all tags from the source DB
|
414
|
+
# cluster snapshot to the target DB cluster snapshot. By default, tags
|
415
|
+
# are not copied.
|
415
416
|
# @option options [Array<Types::Tag>] :tags
|
416
417
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
417
418
|
# Resources][1] in the *Amazon RDS User Guide.*
|
@@ -487,8 +488,8 @@ module Aws::RDS
|
|
487
488
|
# })
|
488
489
|
# @param [Hash] options ({})
|
489
490
|
# @option options [Array<String>] :availability_zones
|
490
|
-
# Provides the list of
|
491
|
-
#
|
491
|
+
# Provides the list of Availability Zones (AZs) where instances in the
|
492
|
+
# restored DB cluster can be created.
|
492
493
|
# @option options [required, String] :db_cluster_identifier
|
493
494
|
# The name of the DB cluster to create from the DB snapshot or DB
|
494
495
|
# cluster snapshot. This parameter isn't case-sensitive.
|
@@ -551,10 +552,9 @@ module Aws::RDS
|
|
551
552
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier` is
|
552
553
|
# not encrypted, then the restored DB cluster is not encrypted.
|
553
554
|
# @option options [Boolean] :enable_iam_database_authentication
|
554
|
-
#
|
555
|
-
# accounts to database accounts
|
556
|
-
#
|
557
|
-
# Default: `false`
|
555
|
+
# A value that indicates whether to enable mapping of AWS Identity and
|
556
|
+
# Access Management (IAM) accounts to database accounts. By default,
|
557
|
+
# mapping is disabled.
|
558
558
|
# @option options [Integer] :backtrack_window
|
559
559
|
# The target backtrack window, in seconds. To disable backtracking, set
|
560
560
|
# this value to 0.
|
@@ -598,12 +598,13 @@ module Aws::RDS
|
|
598
598
|
#
|
599
599
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
600
600
|
# @option options [Boolean] :deletion_protection
|
601
|
-
#
|
602
|
-
# The database can't be deleted when
|
603
|
-
# default is
|
601
|
+
# A value that indicates whether the DB cluster has deletion protection
|
602
|
+
# enabled. The database can't be deleted when deletion protection is
|
603
|
+
# enabled. By default, deletion protection is disabled.
|
604
604
|
# @option options [Boolean] :copy_tags_to_snapshot
|
605
|
-
#
|
606
|
-
# restored DB cluster
|
605
|
+
# A value that indicates whether to copy all tags from the restored DB
|
606
|
+
# cluster to snapshots of the restored DB cluster. The default is not to
|
607
|
+
# copy them.
|
607
608
|
# @return [DBCluster]
|
608
609
|
def restore(options = {})
|
609
610
|
options = options.merge(snapshot_identifier: @snapshot_id)
|
@@ -276,14 +276,20 @@ module Aws::RDS
|
|
276
276
|
# @option options [Array<Types::Filter>] :filters
|
277
277
|
# This parameter is not currently supported.
|
278
278
|
# @option options [Boolean] :default_only
|
279
|
-
#
|
280
|
-
# engine and major version combination is returned.
|
279
|
+
# A value that indicates whether only the default version of the
|
280
|
+
# specified engine or engine and major version combination is returned.
|
281
281
|
# @option options [Boolean] :list_supported_character_sets
|
282
|
-
#
|
282
|
+
# A value that indicates whether to list the supported character sets
|
283
|
+
# for each engine version.
|
284
|
+
#
|
285
|
+
# If this parameter is enabled and the requested engine supports the
|
283
286
|
# `CharacterSetName` parameter for `CreateDBInstance`, the response
|
284
287
|
# includes a list of supported character sets for each engine version.
|
285
288
|
# @option options [Boolean] :list_supported_timezones
|
286
|
-
#
|
289
|
+
# A value that indicates whether to list the supported time zones for
|
290
|
+
# each engine version.
|
291
|
+
#
|
292
|
+
# If this parameter is enabled and the requested engine supports the
|
287
293
|
# `TimeZone` parameter for `CreateDBInstance`, the response includes a
|
288
294
|
# list of supported time zones for each engine version.
|
289
295
|
# @return [DBEngineVersion::Collection]
|