aws-sdk-rds 1.0.0.rc5 → 1.0.0.rc6
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 +246 -223
- data/lib/aws-sdk-rds/client_api.rb +23 -8
- data/lib/aws-sdk-rds/customizations.rb +2 -7
- data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +63 -0
- data/lib/aws-sdk-rds/db_cluster.rb +34 -3
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +24 -0
- data/lib/aws-sdk-rds/db_instance.rb +120 -202
- data/lib/aws-sdk-rds/db_parameter_group.rb +5 -4
- data/lib/aws-sdk-rds/db_snapshot.rb +24 -2
- data/lib/aws-sdk-rds/resource.rb +66 -201
- data/lib/aws-sdk-rds/types.rb +275 -225
- metadata +3 -2
@@ -244,10 +244,11 @@ module Aws::RDS
|
|
244
244
|
#
|
245
245
|
# Default: `true`
|
246
246
|
# @option options [Array<Types::Parameter>] :parameters
|
247
|
-
#
|
248
|
-
#
|
249
|
-
#
|
250
|
-
# parameters can be modified in a single
|
247
|
+
# To reset the entire DB parameter group, specify the `DBParameterGroup`
|
248
|
+
# name and `ResetAllParameters` parameters. To reset specific
|
249
|
+
# parameters, provide a list of the following: `ParameterName` and
|
250
|
+
# `ApplyMethod`. A maximum of 20 parameters can be modified in a single
|
251
|
+
# request.
|
251
252
|
#
|
252
253
|
# **MySQL**
|
253
254
|
#
|
@@ -189,6 +189,13 @@ module Aws::RDS
|
|
189
189
|
data.timezone
|
190
190
|
end
|
191
191
|
|
192
|
+
# True if mapping of AWS Identity and Access Management (IAM) accounts
|
193
|
+
# to database accounts is enabled; otherwise false.
|
194
|
+
# @return [Boolean]
|
195
|
+
def iam_database_authentication_enabled
|
196
|
+
data.iam_database_authentication_enabled
|
197
|
+
end
|
198
|
+
|
192
199
|
# @!endgroup
|
193
200
|
|
194
201
|
# @return [Client]
|
@@ -347,8 +354,8 @@ module Aws::RDS
|
|
347
354
|
# encrypted snapshot to be copied. This identifier must be in the
|
348
355
|
# Amazon Resource Name (ARN) format for the source region. For
|
349
356
|
# example, if you are copying an encrypted DB snapshot from the
|
350
|
-
# us-west-2 region, then your `SourceDBSnapshotIdentifier`
|
351
|
-
#
|
357
|
+
# us-west-2 region, then your `SourceDBSnapshotIdentifier` looks like
|
358
|
+
# the following example:
|
352
359
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115`.
|
353
360
|
#
|
354
361
|
# To learn how to generate a Signature Version 4 signed request, see [
|
@@ -419,6 +426,7 @@ module Aws::RDS
|
|
419
426
|
# domain: "String",
|
420
427
|
# copy_tags_to_snapshot: false,
|
421
428
|
# domain_iam_role_name: "String",
|
429
|
+
# enable_iam_database_authentication: false,
|
422
430
|
# })
|
423
431
|
# @param [Hash] options ({})
|
424
432
|
# @option options [required, String] :db_instance_identifier
|
@@ -569,6 +577,20 @@ module Aws::RDS
|
|
569
577
|
# @option options [String] :domain_iam_role_name
|
570
578
|
# Specify the name of the IAM role to be used when making API calls to
|
571
579
|
# the Directory Service.
|
580
|
+
# @option options [Boolean] :enable_iam_database_authentication
|
581
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
582
|
+
# accounts to database accounts; otherwise false.
|
583
|
+
#
|
584
|
+
# You can enable IAM database authentication for the following database
|
585
|
+
# engines
|
586
|
+
#
|
587
|
+
# * For MySQL 5.6, minor version 5.6.34 or higher
|
588
|
+
#
|
589
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher
|
590
|
+
#
|
591
|
+
# * Aurora 5.6 or higher.
|
592
|
+
#
|
593
|
+
# Default: `false`
|
572
594
|
# @return [DBInstance]
|
573
595
|
def restore(options = {})
|
574
596
|
options = options.merge(db_snapshot_identifier: @snapshot_id)
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -50,6 +50,7 @@ module Aws::RDS
|
|
50
50
|
# storage_encrypted: false,
|
51
51
|
# kms_key_id: "String",
|
52
52
|
# pre_signed_url: "String",
|
53
|
+
# enable_iam_database_authentication: false,
|
53
54
|
# source_region: "String",
|
54
55
|
# })
|
55
56
|
# @param [Hash] options ({})
|
@@ -255,6 +256,12 @@ module Aws::RDS
|
|
255
256
|
#
|
256
257
|
# [1]: http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
257
258
|
# [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
259
|
+
# @option options [Boolean] :enable_iam_database_authentication
|
260
|
+
# A Boolean value that is true to enable mapping of AWS Identity and
|
261
|
+
# Access Management (IAM) accounts to database accounts, and otherwise
|
262
|
+
# false.
|
263
|
+
#
|
264
|
+
# Default: `false`
|
258
265
|
# @option options [String] :destination_region
|
259
266
|
# @option options [String] :source_region
|
260
267
|
# The source region of the snapshot. This is only needed when the
|
@@ -363,6 +370,7 @@ module Aws::RDS
|
|
363
370
|
# domain_iam_role_name: "String",
|
364
371
|
# promotion_tier: 1,
|
365
372
|
# timezone: "String",
|
373
|
+
# enable_iam_database_authentication: false,
|
366
374
|
# })
|
367
375
|
# @param [Hash] options ({})
|
368
376
|
# @option options [String] :db_name
|
@@ -457,6 +465,12 @@ module Aws::RDS
|
|
457
465
|
#
|
458
466
|
# Type: Integer
|
459
467
|
#
|
468
|
+
# **Amazon Aurora**
|
469
|
+
#
|
470
|
+
# Not applicable. Aurora cluster volumes automatically grow as the
|
471
|
+
# amount of data in your database increases, though you are only charged
|
472
|
+
# for the space that you use in an Aurora cluster volume.
|
473
|
+
#
|
460
474
|
# **MySQL**
|
461
475
|
#
|
462
476
|
# Constraints: Must be an integer from 5 to 6144.
|
@@ -498,43 +512,46 @@ module Aws::RDS
|
|
498
512
|
#
|
499
513
|
# Not every database engine is available for every AWS region.
|
500
514
|
# @option options [String] :master_username
|
501
|
-
# The name
|
515
|
+
# The name for the master database user.
|
502
516
|
#
|
503
|
-
# **
|
517
|
+
# **Amazon Aurora**
|
518
|
+
#
|
519
|
+
# Not applicable. You specify the name for the master database user when
|
520
|
+
# you create your DB cluster.
|
521
|
+
#
|
522
|
+
# **MariaDB**
|
504
523
|
#
|
505
524
|
# Constraints:
|
506
525
|
#
|
507
526
|
# * Must be 1 to 16 alphanumeric characters.
|
508
527
|
#
|
509
|
-
# * First character must be a letter.
|
510
|
-
#
|
511
528
|
# * Cannot be a reserved word for the chosen database engine.
|
512
529
|
#
|
513
|
-
# **
|
530
|
+
# **Microsoft SQL Server**
|
514
531
|
#
|
515
532
|
# Constraints:
|
516
533
|
#
|
517
|
-
# * Must be 1 to
|
534
|
+
# * Must be 1 to 128 alphanumeric characters.
|
518
535
|
#
|
519
|
-
# *
|
536
|
+
# * First character must be a letter.
|
520
537
|
#
|
521
|
-
#
|
538
|
+
# * Cannot be a reserved word for the chosen database engine.
|
522
539
|
#
|
523
|
-
# **
|
540
|
+
# **MySQL**
|
524
541
|
#
|
525
542
|
# Constraints:
|
526
543
|
#
|
527
|
-
# * Must be 1 to
|
544
|
+
# * Must be 1 to 16 alphanumeric characters.
|
528
545
|
#
|
529
546
|
# * First character must be a letter.
|
530
547
|
#
|
531
548
|
# * Cannot be a reserved word for the chosen database engine.
|
532
549
|
#
|
533
|
-
# **
|
550
|
+
# **Oracle**
|
534
551
|
#
|
535
552
|
# Constraints:
|
536
553
|
#
|
537
|
-
# * Must be 1 to
|
554
|
+
# * Must be 1 to 30 alphanumeric characters.
|
538
555
|
#
|
539
556
|
# * First character must be a letter.
|
540
557
|
#
|
@@ -553,13 +570,20 @@ module Aws::RDS
|
|
553
570
|
# The password for the master database user. Can be any printable ASCII
|
554
571
|
# character except "/", """, or "@".
|
555
572
|
#
|
556
|
-
#
|
573
|
+
# **Amazon Aurora**
|
557
574
|
#
|
558
|
-
#
|
575
|
+
# Not applicable. You specify the password for the master database user
|
576
|
+
# when you create your DB cluster.
|
577
|
+
#
|
578
|
+
# **MariaDB**
|
559
579
|
#
|
560
580
|
# Constraints: Must contain from 8 to 41 characters.
|
561
581
|
#
|
562
|
-
# **
|
582
|
+
# **Microsoft SQL Server**
|
583
|
+
#
|
584
|
+
# Constraints: Must contain from 8 to 128 characters.
|
585
|
+
#
|
586
|
+
# **MySQL**
|
563
587
|
#
|
564
588
|
# Constraints: Must contain from 8 to 41 characters.
|
565
589
|
#
|
@@ -567,17 +591,9 @@ module Aws::RDS
|
|
567
591
|
#
|
568
592
|
# Constraints: Must contain from 8 to 30 characters.
|
569
593
|
#
|
570
|
-
# **SQL Server**
|
571
|
-
#
|
572
|
-
# Constraints: Must contain from 8 to 128 characters.
|
573
|
-
#
|
574
594
|
# **PostgreSQL**
|
575
595
|
#
|
576
596
|
# Constraints: Must contain from 8 to 128 characters.
|
577
|
-
#
|
578
|
-
# **Amazon Aurora**
|
579
|
-
#
|
580
|
-
# Constraints: Must contain from 8 to 41 characters.
|
581
597
|
# @option options [Array<String>] :db_security_groups
|
582
598
|
# A list of DB security groups to associate with this DB instance.
|
583
599
|
#
|
@@ -659,7 +675,7 @@ module Aws::RDS
|
|
659
675
|
#
|
660
676
|
# Default: A 30-minute window selected at random from an 8-hour block of
|
661
677
|
# time per region. To see the time blocks available, see [ Adjusting the
|
662
|
-
# Preferred Maintenance Window][2]
|
678
|
+
# Preferred DB Instance Maintenance Window][2].
|
663
679
|
#
|
664
680
|
# Constraints:
|
665
681
|
#
|
@@ -674,7 +690,7 @@ module Aws::RDS
|
|
674
690
|
#
|
675
691
|
#
|
676
692
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.BackingUpAndRestoringAmazonRDSInstances.html
|
677
|
-
# [2]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
693
|
+
# [2]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow
|
678
694
|
# @option options [Integer] :port
|
679
695
|
# The port number on which the database accepts connections.
|
680
696
|
#
|
@@ -825,120 +841,11 @@ module Aws::RDS
|
|
825
841
|
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
826
842
|
# us-gov-west-1, us-west-1, us-west-2):** ` 5.1.73a | 5.1.73b`
|
827
843
|
#
|
828
|
-
# **Oracle Database Enterprise Edition (oracle-ee)**
|
829
|
-
#
|
830
|
-
# * **Version 12.1 (available in all AWS regions except ap-south-1,
|
831
|
-
# ap-northeast-2):** ` 12.1.0.1.v1 | 12.1.0.1.v2`
|
832
|
-
#
|
833
|
-
# * **Version 12.1 (only available in AWS regions ap-northeast-1,
|
834
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
835
|
-
# us-east-1, us-west-1, us-west-2):** ` 12.1.0.1.v3 | 12.1.0.1.v4 |
|
836
|
-
# 12.1.0.1.v5`
|
837
|
-
#
|
838
|
-
# * **Version 12.1 (available in all AWS regions):** ` 12.1.0.2.v1`
|
839
|
-
#
|
840
|
-
# * **Version 12.1 (available in all AWS regions except
|
841
|
-
# us-gov-west-1):** ` 12.1.0.2.v2 | 12.1.0.2.v3 | 12.1.0.2.v4`
|
842
|
-
#
|
843
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
844
|
-
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
845
|
-
# us-gov-west-1, us-west-1, us-west-2):** ` 11.2.0.2.v3 | 11.2.0.2.v4
|
846
|
-
# | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7`
|
847
|
-
#
|
848
|
-
# * **Version 11.2 (available in all AWS regions except ap-south-1,
|
849
|
-
# ap-northeast-2):** ` 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.3.v3`
|
850
|
-
#
|
851
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
852
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
853
|
-
# us-east-1, us-west-1, us-west-2):** ` 11.2.0.3.v4`
|
854
|
-
#
|
855
|
-
# * **Version 11.2 (available in all AWS regions):** ` 11.2.0.4.v1 |
|
856
|
-
# 11.2.0.4.v3 | 11.2.0.4.v4`
|
857
|
-
#
|
858
|
-
# * **Version 11.2 (available in all AWS regions except
|
859
|
-
# us-gov-west-1):** ` 11.2.0.4.v5 | 11.2.0.4.v6 | 11.2.0.4.v7 |
|
860
|
-
# 11.2.0.4.v8`
|
861
|
-
#
|
862
|
-
# **Oracle Database Standard Edition (oracle-se)**
|
863
|
-
#
|
864
|
-
# * **Version 12.1 (available in all AWS regions except ap-south-1,
|
865
|
-
# ap-northeast-2):** ` 12.1.0.1.v1 | 12.1.0.1.v2`
|
866
|
-
#
|
867
|
-
# * **Version 12.1 (only available in AWS regions ap-northeast-1,
|
868
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
869
|
-
# us-east-1, us-west-1, us-west-2):** ` 12.1.0.1.v3 | 12.1.0.1.v4 |
|
870
|
-
# 12.1.0.1.v5`
|
871
|
-
#
|
872
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
873
|
-
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
874
|
-
# us-gov-west-1, us-west-1, us-west-2):** ` 11.2.0.2.v3 | 11.2.0.2.v4
|
875
|
-
# | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7`
|
876
|
-
#
|
877
|
-
# * **Version 11.2 (available in all AWS regions except ap-south-1,
|
878
|
-
# ap-northeast-2):** ` 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.3.v3`
|
879
|
-
#
|
880
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
881
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
882
|
-
# us-east-1, us-west-1, us-west-2):** ` 11.2.0.3.v4`
|
883
|
-
#
|
884
|
-
# * **Version 11.2 (available in all AWS regions):** ` 11.2.0.4.v1 |
|
885
|
-
# 11.2.0.4.v3 | 11.2.0.4.v4`
|
886
|
-
#
|
887
|
-
# * **Version 11.2 (available in all AWS regions except
|
888
|
-
# us-gov-west-1):** ` 11.2.0.4.v5 | 11.2.0.4.v6 | 11.2.0.4.v7 |
|
889
|
-
# 11.2.0.4.v8`
|
890
|
-
#
|
891
|
-
# **Oracle Database Standard Edition One (oracle-se1)**
|
892
|
-
#
|
893
|
-
# * **Version 12.1 (available in all AWS regions except ap-south-1,
|
894
|
-
# ap-northeast-2):** ` 12.1.0.1.v1 | 12.1.0.1.v2`
|
895
|
-
#
|
896
|
-
# * **Version 12.1 (only available in AWS regions ap-northeast-1,
|
897
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
898
|
-
# us-east-1, us-west-1, us-west-2):** ` 12.1.0.1.v3 | 12.1.0.1.v4 |
|
899
|
-
# 12.1.0.1.v5`
|
900
|
-
#
|
901
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
902
|
-
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
903
|
-
# us-gov-west-1, us-west-1, us-west-2):** ` 11.2.0.2.v3 | 11.2.0.2.v4
|
904
|
-
# | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7`
|
905
|
-
#
|
906
|
-
# * **Version 11.2 (available in all AWS regions except ap-south-1,
|
907
|
-
# ap-northeast-2):** ` 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.3.v3`
|
908
|
-
#
|
909
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
910
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
911
|
-
# us-east-1, us-west-1, us-west-2):** ` 11.2.0.3.v4`
|
912
|
-
#
|
913
|
-
# * **Version 11.2 (available in all AWS regions):** ` 11.2.0.4.v1 |
|
914
|
-
# 11.2.0.4.v3 | 11.2.0.4.v4`
|
915
|
-
#
|
916
|
-
# * **Version 11.2 (available in all AWS regions except
|
917
|
-
# us-gov-west-1):** ` 11.2.0.4.v5 | 11.2.0.4.v6 | 11.2.0.4.v7 |
|
918
|
-
# 11.2.0.4.v8`
|
919
|
-
#
|
920
|
-
# **Oracle Database Standard Edition Two (oracle-se2)**
|
921
|
-
#
|
922
|
-
# * **Version 12.1 (available in all AWS regions except
|
923
|
-
# us-gov-west-1):** ` 12.1.0.2.v2 | 12.1.0.2.v3 | 12.1.0.2.v4`
|
924
|
-
#
|
925
|
-
# ^
|
926
|
-
#
|
927
|
-
# **PostgreSQL**
|
928
|
-
#
|
929
|
-
# * **Version 9.6:** ` 9.6.1`
|
930
|
-
#
|
931
|
-
# * **Version 9.5:** `9.5.4 | 9.5.2`
|
932
|
-
#
|
933
|
-
# * **Version 9.4:** ` 9.4.9 | 9.4.7 | 9.4.5 | 9.4.4 | 9.4.1`
|
934
|
-
#
|
935
|
-
# * **Version 9.3:** ` 9.3.14 | 9.3.12 | 9.3.10 | 9.3.9 | 9.3.6 | 9.3.5
|
936
|
-
# | 9.3.3 | 9.3.2 | 9.3.1`
|
937
|
-
#
|
938
|
-
#
|
939
|
-
#
|
940
844
|
# **Oracle 12c**
|
941
845
|
#
|
846
|
+
# * `12.1.0.2.v7` (supported for EE in all AWS regions, and SE2 in all
|
847
|
+
# AWS regions except us-gov-west-1)
|
848
|
+
#
|
942
849
|
# * `12.1.0.2.v6` (supported for EE in all AWS regions, and SE2 in all
|
943
850
|
# AWS regions except us-gov-west-1)
|
944
851
|
#
|
@@ -957,28 +864,10 @@ module Aws::RDS
|
|
957
864
|
# * `12.1.0.2.v1` (supported for EE in all AWS regions, and SE2 in all
|
958
865
|
# AWS regions except us-gov-west-1)
|
959
866
|
#
|
960
|
-
#
|
961
|
-
#
|
962
|
-
# * `12.1.0.1.v6` (supported for EE, SE1, and SE, in all AWS regions
|
963
|
-
# except ap-south-1, ap-northeast-2)
|
964
|
-
#
|
965
|
-
# * `12.1.0.1.v5` (supported for EE, SE1, and SE, in all AWS regions
|
966
|
-
# except ap-south-1, ap-northeast-2)
|
967
|
-
#
|
968
|
-
# * `12.1.0.1.v4` (supported for EE, SE1, and SE, in all AWS regions
|
969
|
-
# except ap-south-1, ap-northeast-2)
|
970
|
-
#
|
971
|
-
# * `12.1.0.1.v3` (supported for EE, SE1, and SE, in all AWS regions
|
972
|
-
# except ap-south-1, ap-northeast-2)
|
973
|
-
#
|
974
|
-
# * `12.1.0.1.v2` (supported for EE, SE1, and SE, in all AWS regions
|
975
|
-
# except ap-south-1, ap-northeast-2)
|
976
|
-
#
|
977
|
-
# * `12.1.0.1.v1` (supported for EE, SE1, and SE, in all AWS regions
|
978
|
-
# except ap-south-1, ap-northeast-2)
|
979
|
-
#
|
980
867
|
# **Oracle 11g**
|
981
868
|
#
|
869
|
+
# * `11.2.0.4.v11` (supported for EE, SE1, and SE, in all AWS regions)
|
870
|
+
#
|
982
871
|
# * `11.2.0.4.v10` (supported for EE, SE1, and SE, in all AWS regions)
|
983
872
|
#
|
984
873
|
# * `11.2.0.4.v9` (supported for EE, SE1, and SE, in all AWS regions)
|
@@ -999,50 +888,14 @@ module Aws::RDS
|
|
999
888
|
#
|
1000
889
|
# **PostgreSQL**
|
1001
890
|
#
|
1002
|
-
# * **Version 9.
|
1003
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1004
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1005
|
-
# us-west-2):** ` 9.5.4`
|
1006
|
-
#
|
1007
|
-
# * **Version 9.5 (available in these AWS regions: ap-northeast-1,
|
1008
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1009
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-east-2, us-west-1,
|
1010
|
-
# us-west-2):** ` 9.5.2`
|
1011
|
-
#
|
1012
|
-
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
1013
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1014
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1015
|
-
# us-west-2):** ` 9.4.9`
|
1016
|
-
#
|
1017
|
-
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
1018
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1019
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-east-2, us-west-1,
|
1020
|
-
# us-west-2):** ` 9.4.7`
|
1021
|
-
#
|
1022
|
-
# * **Version 9.4 (available in all AWS regions):** ` 9.4.5`
|
1023
|
-
#
|
1024
|
-
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
1025
|
-
# ap-northeast-2, ap-southeast-1, ap-southeast-2, eu-central-1,
|
1026
|
-
# eu-west-1, sa-east-1, us-east-1, us-gov-west-1, us-west-1,
|
1027
|
-
# us-west-2):** ` 9.4.4`
|
1028
|
-
#
|
1029
|
-
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
1030
|
-
# ap-northeast-2, ap-southeast-1, ap-southeast-2, eu-central-1,
|
1031
|
-
# eu-west-1, sa-east-1, us-east-1, us-east-2, us-gov-west-1,
|
1032
|
-
# us-west-1, us-west-2):** ` 9.4.1`
|
891
|
+
# * **Version 9.6:** ` 9.6.1`
|
1033
892
|
#
|
1034
|
-
# * **Version 9.
|
1035
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
1036
|
-
# us-east-1, us-gov-west-1, us-west-1, us-west-2):** ` 9.3.10 | 9.3.3
|
1037
|
-
# | 9.3.5 | 9.3.6 | 9.3.9`
|
893
|
+
# * **Version 9.5:** `9.5.4 | 9.5.2`
|
1038
894
|
#
|
1039
|
-
# * **Version 9.
|
1040
|
-
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
1041
|
-
# us-gov-west-1, us-west-1, us-west-2):** ` 9.3.1 | 9.3.2`
|
895
|
+
# * **Version 9.4:** ` 9.4.9 | 9.4.7 | 9.4.5 | 9.4.4 | 9.4.1`
|
1042
896
|
#
|
1043
|
-
# * **Version 9.3
|
1044
|
-
#
|
1045
|
-
# us-east-1, us-west-1, us-west-2):** ` 9.3.12 | 9.3.14`
|
897
|
+
# * **Version 9.3:** ` 9.3.14 | 9.3.12 | 9.3.10 | 9.3.9 | 9.3.6 | 9.3.5
|
898
|
+
# | 9.3.3 | 9.3.2 | 9.3.1`
|
1046
899
|
# @option options [Boolean] :auto_minor_version_upgrade
|
1047
900
|
# Indicates that minor engine upgrades will be applied automatically to
|
1048
901
|
# the DB instance during the maintenance window.
|
@@ -1152,15 +1005,15 @@ module Aws::RDS
|
|
1152
1005
|
# The ARN for the IAM role that permits RDS to send enhanced monitoring
|
1153
1006
|
# metrics to CloudWatch Logs. For example,
|
1154
1007
|
# `arn:aws:iam:123456789012:role/emaccess`. For information on creating
|
1155
|
-
# a monitoring role, go to [
|
1156
|
-
#
|
1008
|
+
# a monitoring role, go to [Setting Up and Enabling Enhanced
|
1009
|
+
# Monitoring][1].
|
1157
1010
|
#
|
1158
1011
|
# If `MonitoringInterval` is set to a value other than 0, then you must
|
1159
1012
|
# supply a `MonitoringRoleArn` value.
|
1160
1013
|
#
|
1161
1014
|
#
|
1162
1015
|
#
|
1163
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.
|
1016
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
1164
1017
|
# @option options [String] :domain_iam_role_name
|
1165
1018
|
# Specify the name of the IAM role to be used when making API calls to
|
1166
1019
|
# the Directory Service.
|
@@ -1184,6 +1037,18 @@ module Aws::RDS
|
|
1184
1037
|
#
|
1185
1038
|
#
|
1186
1039
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
|
1040
|
+
# @option options [Boolean] :enable_iam_database_authentication
|
1041
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
1042
|
+
# accounts to database accounts; otherwise false.
|
1043
|
+
#
|
1044
|
+
# You can enable IAM database authentication for the following database
|
1045
|
+
# engines
|
1046
|
+
#
|
1047
|
+
# * For MySQL 5.6, minor version 5.6.34 or higher
|
1048
|
+
#
|
1049
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher
|
1050
|
+
#
|
1051
|
+
# Default: `false`
|
1187
1052
|
# @return [DBInstance]
|
1188
1053
|
def create_db_instance(options = {})
|
1189
1054
|
resp = @client.create_db_instance(options)
|