aws-sdk-rds 1.43.0 → 1.44.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 +364 -152
- data/lib/aws-sdk-rds/client_api.rb +6 -0
- data/lib/aws-sdk-rds/db_cluster.rb +35 -16
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +1 -1
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +8 -4
- data/lib/aws-sdk-rds/db_instance.rb +78 -48
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_security_group.rb +1 -1
- data/lib/aws-sdk-rds/db_snapshot.rb +11 -11
- data/lib/aws-sdk-rds/db_subnet_group.rb +1 -1
- data/lib/aws-sdk-rds/event_subscription.rb +3 -3
- data/lib/aws-sdk-rds/option_group.rb +2 -2
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +60 -38
- data/lib/aws-sdk-rds/types.rb +201 -128
- metadata +2 -2
@@ -219,7 +219,7 @@ module Aws::RDS
|
|
219
219
|
#
|
220
220
|
#
|
221
221
|
#
|
222
|
-
# [1]:
|
222
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
223
223
|
# @return [DBParameterGroup]
|
224
224
|
def create(options = {})
|
225
225
|
options = options.merge(db_parameter_group_name: @name)
|
@@ -266,7 +266,7 @@ module Aws::RDS
|
|
266
266
|
#
|
267
267
|
#
|
268
268
|
#
|
269
|
-
# [1]:
|
269
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
270
270
|
# @return [DBParameterGroup]
|
271
271
|
def copy(options = {})
|
272
272
|
options = options.merge(source_db_parameter_group_identifier: @name)
|
@@ -257,7 +257,7 @@ module Aws::RDS
|
|
257
257
|
#
|
258
258
|
#
|
259
259
|
#
|
260
|
-
# [1]:
|
260
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
261
261
|
# @return [DBSecurityGroup]
|
262
262
|
def create(options = {})
|
263
263
|
options = options.merge(db_security_group_name: @name)
|
@@ -360,7 +360,7 @@ module Aws::RDS
|
|
360
360
|
#
|
361
361
|
#
|
362
362
|
#
|
363
|
-
# [1]:
|
363
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
364
364
|
# @return [DBSnapshot]
|
365
365
|
def create(options = {})
|
366
366
|
options = options.merge(
|
@@ -434,7 +434,7 @@ module Aws::RDS
|
|
434
434
|
#
|
435
435
|
#
|
436
436
|
#
|
437
|
-
# [1]:
|
437
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
438
438
|
# @option options [Boolean] :copy_tags
|
439
439
|
# True to copy all tags from the source DB snapshot to the target DB
|
440
440
|
# snapshot, and otherwise false. The default is false.
|
@@ -484,8 +484,8 @@ module Aws::RDS
|
|
484
484
|
#
|
485
485
|
#
|
486
486
|
#
|
487
|
-
# [1]:
|
488
|
-
# [2]:
|
487
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
488
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
489
489
|
# @option options [String] :option_group_name
|
490
490
|
# The name of an option group to associate with the copy of the
|
491
491
|
# snapshot.
|
@@ -499,7 +499,7 @@ module Aws::RDS
|
|
499
499
|
#
|
500
500
|
#
|
501
501
|
#
|
502
|
-
# [1]:
|
502
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopySnapshot.Options
|
503
503
|
# @option options [String] :destination_region
|
504
504
|
# @option options [String] :source_region
|
505
505
|
# The source region of the snapshot. This is only needed when the
|
@@ -598,7 +598,7 @@ module Aws::RDS
|
|
598
598
|
#
|
599
599
|
#
|
600
600
|
#
|
601
|
-
# [1]:
|
601
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
602
602
|
# @option options [Integer] :port
|
603
603
|
# The port number on which the database accepts connections.
|
604
604
|
#
|
@@ -698,7 +698,7 @@ module Aws::RDS
|
|
698
698
|
#
|
699
699
|
#
|
700
700
|
#
|
701
|
-
# [1]:
|
701
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
702
702
|
# @option options [String] :option_group_name
|
703
703
|
# The name of the option group to be used for the restored DB instance.
|
704
704
|
#
|
@@ -712,7 +712,7 @@ module Aws::RDS
|
|
712
712
|
#
|
713
713
|
#
|
714
714
|
#
|
715
|
-
# [1]:
|
715
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
716
716
|
# @option options [String] :storage_type
|
717
717
|
# Specifies the storage type to be associated with the DB instance.
|
718
718
|
#
|
@@ -738,7 +738,7 @@ module Aws::RDS
|
|
738
738
|
# Specify the Active Directory Domain to restore the instance in.
|
739
739
|
# @option options [Boolean] :copy_tags_to_snapshot
|
740
740
|
# True to copy all tags from the restored DB instance to snapshots of
|
741
|
-
# the DB instance, and otherwise false. The default is false.
|
741
|
+
# the restored DB instance, and otherwise false. The default is false.
|
742
742
|
# @option options [String] :domain_iam_role_name
|
743
743
|
# Specify the name of the IAM role to be used when making API calls to
|
744
744
|
# the Directory Service.
|
@@ -762,7 +762,7 @@ module Aws::RDS
|
|
762
762
|
#
|
763
763
|
#
|
764
764
|
#
|
765
|
-
# [1]:
|
765
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
766
766
|
# @option options [Array<Types::ProcessorFeature>] :processor_features
|
767
767
|
# The number of CPU cores and the number of threads per core for the DB
|
768
768
|
# instance class of the DB instance.
|
@@ -791,7 +791,7 @@ module Aws::RDS
|
|
791
791
|
#
|
792
792
|
#
|
793
793
|
#
|
794
|
-
# [1]:
|
794
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
795
795
|
# @return [DBInstance]
|
796
796
|
def restore(options = {})
|
797
797
|
options = options.merge(db_snapshot_identifier: @snapshot_id)
|
@@ -216,7 +216,7 @@ module Aws::RDS
|
|
216
216
|
#
|
217
217
|
#
|
218
218
|
#
|
219
|
-
# [1]:
|
219
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
220
220
|
# @return [DBSubnetGroup]
|
221
221
|
def create(options = {})
|
222
222
|
options = options.merge(db_subnet_group_name: @name)
|
@@ -299,7 +299,7 @@ module Aws::RDS
|
|
299
299
|
#
|
300
300
|
#
|
301
301
|
#
|
302
|
-
# [1]:
|
302
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
|
303
303
|
# @option options [Array<String>] :source_ids
|
304
304
|
# The list of identifiers of the event sources for which events are
|
305
305
|
# returned. If not specified, then all sources are included in the
|
@@ -331,7 +331,7 @@ module Aws::RDS
|
|
331
331
|
#
|
332
332
|
#
|
333
333
|
#
|
334
|
-
# [1]:
|
334
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
335
335
|
# @return [EventSubscription]
|
336
336
|
def create(options = {})
|
337
337
|
options = options.merge(subscription_name: @name)
|
@@ -387,7 +387,7 @@ module Aws::RDS
|
|
387
387
|
#
|
388
388
|
#
|
389
389
|
#
|
390
|
-
# [1]:
|
390
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
|
391
391
|
# @option options [Boolean] :enabled
|
392
392
|
# A Boolean value; set to **true** to activate the subscription.
|
393
393
|
# @return [EventSubscription]
|
@@ -241,7 +241,7 @@ module Aws::RDS
|
|
241
241
|
#
|
242
242
|
#
|
243
243
|
#
|
244
|
-
# [1]:
|
244
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
245
245
|
# @return [OptionGroup]
|
246
246
|
def create(options = {})
|
247
247
|
options = options.merge(option_group_name: @name)
|
@@ -288,7 +288,7 @@ module Aws::RDS
|
|
288
288
|
#
|
289
289
|
#
|
290
290
|
#
|
291
|
-
# [1]:
|
291
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
292
292
|
# @return [OptionGroup]
|
293
293
|
def copy(options = {})
|
294
294
|
options = options.merge(source_option_group_identifier: @name)
|
@@ -244,7 +244,7 @@ module Aws::RDS
|
|
244
244
|
#
|
245
245
|
#
|
246
246
|
#
|
247
|
-
# [1]:
|
247
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
248
248
|
# @return [ReservedDBInstance]
|
249
249
|
def purchase(options = {})
|
250
250
|
options = options.merge(reserved_db_instances_offering_id: @id)
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -62,6 +62,7 @@ module Aws::RDS
|
|
62
62
|
# },
|
63
63
|
# deletion_protection: false,
|
64
64
|
# global_cluster_identifier: "String",
|
65
|
+
# copy_tags_to_snapshot: false,
|
65
66
|
# source_region: "String",
|
66
67
|
# })
|
67
68
|
# @param [Hash] options ({})
|
@@ -73,7 +74,7 @@ module Aws::RDS
|
|
73
74
|
#
|
74
75
|
#
|
75
76
|
#
|
76
|
-
# [1]:
|
77
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.RegionsAndAvailabilityZones.html
|
77
78
|
# @option options [Integer] :backup_retention_period
|
78
79
|
# The number of days for which automated backups are retained. You must
|
79
80
|
# specify a minimum value of 1.
|
@@ -190,7 +191,7 @@ module Aws::RDS
|
|
190
191
|
#
|
191
192
|
#
|
192
193
|
#
|
193
|
-
# [1]:
|
194
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
194
195
|
# @option options [String] :preferred_maintenance_window
|
195
196
|
# The weekly time range during which system maintenance can occur, in
|
196
197
|
# Universal Coordinated Time (UTC).
|
@@ -208,7 +209,7 @@ module Aws::RDS
|
|
208
209
|
#
|
209
210
|
#
|
210
211
|
#
|
211
|
-
# [1]:
|
212
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow.Aurora
|
212
213
|
# @option options [String] :replication_source_identifier
|
213
214
|
# The Amazon Resource Name (ARN) of the source DB instance or DB cluster
|
214
215
|
# if this DB cluster is created as a Read Replica.
|
@@ -218,7 +219,7 @@ module Aws::RDS
|
|
218
219
|
#
|
219
220
|
#
|
220
221
|
#
|
221
|
-
# [1]:
|
222
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
222
223
|
# @option options [Boolean] :storage_encrypted
|
223
224
|
# Specifies whether the DB cluster is encrypted.
|
224
225
|
# @option options [String] :kms_key_id
|
@@ -285,8 +286,8 @@ module Aws::RDS
|
|
285
286
|
#
|
286
287
|
#
|
287
288
|
#
|
288
|
-
# [1]:
|
289
|
-
# [2]:
|
289
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
290
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
290
291
|
# @option options [Boolean] :enable_iam_database_authentication
|
291
292
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
292
293
|
# accounts to database accounts, and otherwise false.
|
@@ -312,7 +313,7 @@ module Aws::RDS
|
|
312
313
|
#
|
313
314
|
#
|
314
315
|
#
|
315
|
-
# [1]:
|
316
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
316
317
|
# @option options [String] :engine_mode
|
317
318
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
318
319
|
# `serverless`, `parallelquery`, or `global`.
|
@@ -326,6 +327,9 @@ module Aws::RDS
|
|
326
327
|
# @option options [String] :global_cluster_identifier
|
327
328
|
# The global cluster ID of an Aurora cluster that becomes the primary
|
328
329
|
# cluster in the new global database cluster.
|
330
|
+
# @option options [Boolean] :copy_tags_to_snapshot
|
331
|
+
# True to copy all tags from the DB cluster to snapshots of the DB
|
332
|
+
# cluster, and otherwise false. The default is false.
|
329
333
|
# @option options [String] :destination_region
|
330
334
|
# @option options [String] :source_region
|
331
335
|
# The source region of the snapshot. This is only needed when the
|
@@ -388,7 +392,7 @@ module Aws::RDS
|
|
388
392
|
#
|
389
393
|
#
|
390
394
|
#
|
391
|
-
# [1]:
|
395
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
392
396
|
# @return [DBClusterParameterGroup]
|
393
397
|
def create_db_cluster_parameter_group(options = {})
|
394
398
|
resp = @client.create_db_cluster_parameter_group(options)
|
@@ -563,10 +567,10 @@ module Aws::RDS
|
|
563
567
|
# following:
|
564
568
|
#
|
565
569
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
566
|
-
#
|
570
|
+
# 32768.
|
567
571
|
#
|
568
572
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
569
|
-
#
|
573
|
+
# 32768.
|
570
574
|
#
|
571
575
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
572
576
|
#
|
@@ -576,10 +580,10 @@ module Aws::RDS
|
|
576
580
|
# following:
|
577
581
|
#
|
578
582
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
579
|
-
#
|
583
|
+
# 32768.
|
580
584
|
#
|
581
585
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
582
|
-
#
|
586
|
+
# 32768.
|
583
587
|
#
|
584
588
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
585
589
|
#
|
@@ -589,10 +593,10 @@ module Aws::RDS
|
|
589
593
|
# following:
|
590
594
|
#
|
591
595
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
592
|
-
#
|
596
|
+
# 32768.
|
593
597
|
#
|
594
598
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
595
|
-
#
|
599
|
+
# 32768.
|
596
600
|
#
|
597
601
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
598
602
|
#
|
@@ -643,7 +647,7 @@ module Aws::RDS
|
|
643
647
|
#
|
644
648
|
#
|
645
649
|
#
|
646
|
-
# [1]:
|
650
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
647
651
|
# @option options [required, String] :engine
|
648
652
|
# The name of the database engine to be used for this instance.
|
649
653
|
#
|
@@ -802,7 +806,7 @@ module Aws::RDS
|
|
802
806
|
#
|
803
807
|
#
|
804
808
|
#
|
805
|
-
# [1]:
|
809
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html
|
806
810
|
# @option options [String] :db_subnet_group_name
|
807
811
|
# A DB subnet group to associate with this DB instance.
|
808
812
|
#
|
@@ -824,7 +828,7 @@ module Aws::RDS
|
|
824
828
|
#
|
825
829
|
#
|
826
830
|
#
|
827
|
-
# [1]:
|
831
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
828
832
|
# @option options [String] :db_parameter_group_name
|
829
833
|
# The name of the DB parameter group to associate with this DB instance.
|
830
834
|
# If this argument is omitted, the default DBParameterGroup for the
|
@@ -882,8 +886,8 @@ module Aws::RDS
|
|
882
886
|
#
|
883
887
|
#
|
884
888
|
#
|
885
|
-
# [1]:
|
886
|
-
# [2]:
|
889
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
890
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow
|
887
891
|
# @option options [Integer] :port
|
888
892
|
# The port number on which the database accepts connections.
|
889
893
|
#
|
@@ -976,11 +980,11 @@ module Aws::RDS
|
|
976
980
|
#
|
977
981
|
#
|
978
982
|
#
|
979
|
-
# [1]:
|
980
|
-
# [2]:
|
981
|
-
# [3]:
|
982
|
-
# [4]:
|
983
|
-
# [5]:
|
983
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
|
984
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.FeatureSupport
|
985
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
986
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
987
|
+
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts.General.DBVersions
|
984
988
|
# @option options [Boolean] :auto_minor_version_upgrade
|
985
989
|
# Indicates that minor engine upgrades are applied automatically to the
|
986
990
|
# DB instance during the maintenance window.
|
@@ -1002,7 +1006,7 @@ module Aws::RDS
|
|
1002
1006
|
#
|
1003
1007
|
#
|
1004
1008
|
#
|
1005
|
-
# [1]:
|
1009
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
1006
1010
|
# @option options [String] :option_group_name
|
1007
1011
|
# Indicates that the DB instance should be associated with the specified
|
1008
1012
|
# option group.
|
@@ -1052,7 +1056,7 @@ module Aws::RDS
|
|
1052
1056
|
#
|
1053
1057
|
#
|
1054
1058
|
#
|
1055
|
-
# [1]:
|
1059
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1056
1060
|
# @option options [String] :db_cluster_identifier
|
1057
1061
|
# The identifier of the DB cluster that the instance will belong to.
|
1058
1062
|
#
|
@@ -1108,6 +1112,12 @@ module Aws::RDS
|
|
1108
1112
|
# @option options [Boolean] :copy_tags_to_snapshot
|
1109
1113
|
# True to copy all tags from the DB instance to snapshots of the DB
|
1110
1114
|
# instance, and otherwise false. The default is false.
|
1115
|
+
#
|
1116
|
+
# **Amazon Aurora**
|
1117
|
+
#
|
1118
|
+
# Not applicable. Copying tags to snapshots is managed by the DB
|
1119
|
+
# cluster. Setting this value for an Aurora DB instance has no effect on
|
1120
|
+
# the DB cluster setting. For more information, see CreateDBCluster.
|
1111
1121
|
# @option options [Integer] :monitoring_interval
|
1112
1122
|
# The interval, in seconds, between points when Enhanced Monitoring
|
1113
1123
|
# metrics are collected for the DB instance. To disable collecting
|
@@ -1129,7 +1139,7 @@ module Aws::RDS
|
|
1129
1139
|
#
|
1130
1140
|
#
|
1131
1141
|
#
|
1132
|
-
# [1]:
|
1142
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
1133
1143
|
# @option options [String] :domain_iam_role_name
|
1134
1144
|
# Specify the name of the IAM role to be used when making API calls to
|
1135
1145
|
# the Directory Service.
|
@@ -1145,14 +1155,14 @@ module Aws::RDS
|
|
1145
1155
|
#
|
1146
1156
|
#
|
1147
1157
|
#
|
1148
|
-
# [1]:
|
1158
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.FaultTolerance
|
1149
1159
|
# @option options [String] :timezone
|
1150
1160
|
# The time zone of the DB instance. The time zone parameter is currently
|
1151
1161
|
# supported only by [Microsoft SQL Server][1].
|
1152
1162
|
#
|
1153
1163
|
#
|
1154
1164
|
#
|
1155
|
-
# [1]:
|
1165
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
|
1156
1166
|
# @option options [Boolean] :enable_iam_database_authentication
|
1157
1167
|
# True to enable mapping of AWS Identity and Access Management (IAM)
|
1158
1168
|
# accounts to database accounts, and otherwise false.
|
@@ -1181,7 +1191,7 @@ module Aws::RDS
|
|
1181
1191
|
#
|
1182
1192
|
#
|
1183
1193
|
#
|
1184
|
-
# [1]:
|
1194
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
1185
1195
|
# @option options [String] :performance_insights_kms_key_id
|
1186
1196
|
# The AWS KMS key identifier for encryption of Performance Insights
|
1187
1197
|
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
@@ -1198,7 +1208,7 @@ module Aws::RDS
|
|
1198
1208
|
#
|
1199
1209
|
#
|
1200
1210
|
#
|
1201
|
-
# [1]:
|
1211
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
1202
1212
|
# @option options [Array<Types::ProcessorFeature>] :processor_features
|
1203
1213
|
# The number of CPU cores and the number of threads per core for the DB
|
1204
1214
|
# instance class of the DB instance.
|
@@ -1210,7 +1220,7 @@ module Aws::RDS
|
|
1210
1220
|
#
|
1211
1221
|
#
|
1212
1222
|
#
|
1213
|
-
# [1]:
|
1223
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
1214
1224
|
# @return [DBInstance]
|
1215
1225
|
def create_db_instance(options = {})
|
1216
1226
|
resp = @client.create_db_instance(options)
|
@@ -1272,7 +1282,7 @@ module Aws::RDS
|
|
1272
1282
|
#
|
1273
1283
|
#
|
1274
1284
|
#
|
1275
|
-
# [1]:
|
1285
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1276
1286
|
# @return [DBParameterGroup]
|
1277
1287
|
def create_db_parameter_group(options = {})
|
1278
1288
|
resp = @client.create_db_parameter_group(options)
|
@@ -1319,7 +1329,7 @@ module Aws::RDS
|
|
1319
1329
|
#
|
1320
1330
|
#
|
1321
1331
|
#
|
1322
|
-
# [1]:
|
1332
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1323
1333
|
# @return [DBSecurityGroup]
|
1324
1334
|
def create_db_security_group(options = {})
|
1325
1335
|
resp = @client.create_db_security_group(options)
|
@@ -1362,7 +1372,7 @@ module Aws::RDS
|
|
1362
1372
|
#
|
1363
1373
|
#
|
1364
1374
|
#
|
1365
|
-
# [1]:
|
1375
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1366
1376
|
# @return [DBSubnetGroup]
|
1367
1377
|
def create_db_subnet_group(options = {})
|
1368
1378
|
resp = @client.create_db_subnet_group(options)
|
@@ -1414,7 +1424,7 @@ module Aws::RDS
|
|
1414
1424
|
#
|
1415
1425
|
#
|
1416
1426
|
#
|
1417
|
-
# [1]:
|
1427
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
|
1418
1428
|
# @option options [Array<String>] :source_ids
|
1419
1429
|
# The list of identifiers of the event sources for which events are
|
1420
1430
|
# returned. If not specified, then all sources are included in the
|
@@ -1446,7 +1456,7 @@ module Aws::RDS
|
|
1446
1456
|
#
|
1447
1457
|
#
|
1448
1458
|
#
|
1449
|
-
# [1]:
|
1459
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1450
1460
|
# @return [EventSubscription]
|
1451
1461
|
def create_event_subscription(options = {})
|
1452
1462
|
resp = @client.create_event_subscription(options)
|
@@ -1498,7 +1508,7 @@ module Aws::RDS
|
|
1498
1508
|
#
|
1499
1509
|
#
|
1500
1510
|
#
|
1501
|
-
# [1]:
|
1511
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
1502
1512
|
# @return [OptionGroup]
|
1503
1513
|
def create_option_group(options = {})
|
1504
1514
|
resp = @client.create_option_group(options)
|
@@ -2029,6 +2039,14 @@ module Aws::RDS
|
|
2029
2039
|
#
|
2030
2040
|
# * `public` - Return all DB snapshots that have been marked as public.
|
2031
2041
|
#
|
2042
|
+
# * `awsbackup` - Return the DB snapshots managed by the AWS Backup
|
2043
|
+
# service.
|
2044
|
+
#
|
2045
|
+
# For information about AWS Backup, see the [ *AWS Backup Developer
|
2046
|
+
# Guide.* ][1]
|
2047
|
+
#
|
2048
|
+
# The `awsbackup` type does not apply to Aurora.
|
2049
|
+
#
|
2032
2050
|
# If you don't specify a `SnapshotType` value, then both automated and
|
2033
2051
|
# manual snapshots are returned. Shared and public DB snapshots are not
|
2034
2052
|
# included in the returned results by default. You can include shared
|
@@ -2041,6 +2059,10 @@ module Aws::RDS
|
|
2041
2059
|
# parameter doesn't apply when `SnapshotType` is set to `shared`. The
|
2042
2060
|
# `IncludeShared` parameter doesn't apply when `SnapshotType` is set to
|
2043
2061
|
# `public`.
|
2062
|
+
#
|
2063
|
+
#
|
2064
|
+
#
|
2065
|
+
# [1]: https://docs.aws.amazon.com/aws-backup/latest/devguide/whatisbackup.html
|
2044
2066
|
# @option options [Array<Types::Filter>] :filters
|
2045
2067
|
# This parameter is not currently supported.
|
2046
2068
|
# @option options [Boolean] :include_shared
|