aws-sdk-rds 1.131.0 → 1.132.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -217,6 +217,14 @@ module Aws::RDS
217
217
  #
218
218
  # Example: `aurora-postgresql9.6`
219
219
  #
220
+ # **RDS for MySQL**
221
+ #
222
+ # Example: `mysql8.0`
223
+ #
224
+ # **RDS for PostgreSQL**
225
+ #
226
+ # Example: `postgres12`
227
+ #
220
228
  # To list all of the available parameter group families for a DB engine,
221
229
  # use the following command:
222
230
  #
@@ -241,6 +249,10 @@ module Aws::RDS
241
249
  # * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
242
250
  #
243
251
  # * `aurora-postgresql`
252
+ #
253
+ # * `mysql`
254
+ #
255
+ # * `postgres`
244
256
  # @option options [required, String] :description
245
257
  # The description for the DB cluster parameter group.
246
258
  # @option options [Array<Types::Tag>] :tags
@@ -530,11 +530,17 @@ module Aws::RDS
530
530
  # copy_tags_to_snapshot: false,
531
531
  # domain: "String",
532
532
  # domain_iam_role_name: "String",
533
+ # db_cluster_instance_class: "String",
534
+ # storage_type: "String",
535
+ # iops: 1,
536
+ # publicly_accessible: false,
533
537
  # })
534
538
  # @param [Hash] options ({})
535
539
  # @option options [Array<String>] :availability_zones
536
540
  # Provides the list of Availability Zones (AZs) where instances in the
537
541
  # restored DB cluster can be created.
542
+ #
543
+ # Valid for: Aurora DB clusters only
538
544
  # @option options [required, String] :db_cluster_identifier
539
545
  # The name of the DB cluster to create from the DB snapshot or DB
540
546
  # cluster snapshot. This parameter isn't case-sensitive.
@@ -548,52 +554,84 @@ module Aws::RDS
548
554
  # * Can't end with a hyphen or contain two consecutive hyphens
549
555
  #
550
556
  # Example: `my-snapshot-id`
557
+ #
558
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
551
559
  # @option options [required, String] :engine
552
560
  # The database engine to use for the new DB cluster.
553
561
  #
554
562
  # Default: The same as source
555
563
  #
556
564
  # Constraint: Must be compatible with the engine of the source
565
+ #
566
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
557
567
  # @option options [String] :engine_version
558
568
  # The version of the database engine to use for the new DB cluster.
559
569
  #
560
- # To list all of the available engine versions for `aurora` (for MySQL
561
- # 5.6-compatible Aurora), use the following command:
570
+ # To list all of the available engine versions for MySQL 5.6-compatible
571
+ # Aurora, use the following command:
562
572
  #
563
573
  # `aws rds describe-db-engine-versions --engine aurora --query
564
574
  # "DBEngineVersions[].EngineVersion"`
565
575
  #
566
- # To list all of the available engine versions for `aurora-mysql` (for
567
- # MySQL 5.7-compatible Aurora), use the following command:
576
+ # To list all of the available engine versions for MySQL 5.7-compatible
577
+ # Aurora, use the following command:
568
578
  #
569
579
  # `aws rds describe-db-engine-versions --engine aurora-mysql --query
570
580
  # "DBEngineVersions[].EngineVersion"`
571
581
  #
572
- # To list all of the available engine versions for `aurora-postgresql`,
582
+ # To list all of the available engine versions for Aurora PostgreSQL,
573
583
  # use the following command:
574
584
  #
575
585
  # `aws rds describe-db-engine-versions --engine aurora-postgresql
576
586
  # --query "DBEngineVersions[].EngineVersion"`
577
587
  #
578
- # <note markdown="1"> If you aren't using the default engine version, then you must specify
579
- # the engine version.
588
+ # To list all of the available engine versions for RDS for MySQL, use
589
+ # the following command:
580
590
  #
581
- # </note>
591
+ # `aws rds describe-db-engine-versions --engine mysql --query
592
+ # "DBEngineVersions[].EngineVersion"`
593
+ #
594
+ # To list all of the available engine versions for RDS for PostgreSQL,
595
+ # use the following command:
596
+ #
597
+ # `aws rds describe-db-engine-versions --engine postgres --query
598
+ # "DBEngineVersions[].EngineVersion"`
582
599
  #
583
600
  # **Aurora MySQL**
584
601
  #
585
- # Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`, `5.7.12`,
586
- # `5.7.mysql_aurora.2.04.5`
602
+ # See [MySQL on Amazon RDS Versions][1] in the *Amazon Aurora User
603
+ # Guide.*
587
604
  #
588
605
  # **Aurora PostgreSQL**
589
606
  #
590
- # Example: `9.6.3`, `10.7`
607
+ # See [Amazon Aurora PostgreSQL releases and engine versions][2] in the
608
+ # *Amazon Aurora User Guide.*
609
+ #
610
+ # **MySQL**
611
+ #
612
+ # See [MySQL on Amazon RDS Versions][3] in the *Amazon RDS User Guide.*
613
+ #
614
+ # **PostgreSQL**
615
+ #
616
+ # See [Amazon RDS for PostgreSQL versions and extensions][4] in the
617
+ # *Amazon RDS User Guide.*
618
+ #
619
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
620
+ #
621
+ #
622
+ #
623
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Updates.html
624
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Updates.20180305.html
625
+ # [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
626
+ # [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
591
627
  # @option options [Integer] :port
592
628
  # The port number on which the new DB cluster accepts connections.
593
629
  #
594
630
  # Constraints: This value must be `1150-65535`
595
631
  #
596
632
  # Default: The same port as the original DB cluster.
633
+ #
634
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
597
635
  # @option options [String] :db_subnet_group_name
598
636
  # The name of the DB subnet group to use for the new DB cluster.
599
637
  #
@@ -601,14 +639,25 @@ module Aws::RDS
601
639
  # group.
602
640
  #
603
641
  # Example: `mySubnetgroup`
642
+ #
643
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
604
644
  # @option options [String] :database_name
605
645
  # The database name for the restored DB cluster.
646
+ #
647
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
606
648
  # @option options [String] :option_group_name
607
649
  # The name of the option group to use for the restored DB cluster.
650
+ #
651
+ # DB clusters are associated with a default option group that can't be
652
+ # modified.
608
653
  # @option options [Array<String>] :vpc_security_group_ids
609
654
  # A list of VPC security groups that the new DB cluster will belong to.
655
+ #
656
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
610
657
  # @option options [Array<Types::Tag>] :tags
611
658
  # The tags to be assigned to the restored DB cluster.
659
+ #
660
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
612
661
  # @option options [String] :kms_key_id
613
662
  # The Amazon Web Services KMS key identifier to use when restoring an
614
663
  # encrypted DB cluster from a DB snapshot or DB cluster snapshot.
@@ -627,14 +676,18 @@ module Aws::RDS
627
676
  #
628
677
  # * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
629
678
  # isn't encrypted, then the restored DB cluster isn't encrypted.
679
+ #
680
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
630
681
  # @option options [Boolean] :enable_iam_database_authentication
631
682
  # A value that indicates whether to enable mapping of Amazon Web
632
683
  # Services Identity and Access Management (IAM) accounts to database
633
- # accounts. By default, mapping is disabled.
684
+ # accounts. By default, mapping isn't enabled.
634
685
  #
635
686
  # For more information, see [ IAM Database Authentication][1] in the
636
687
  # *Amazon Aurora User Guide.*
637
688
  #
689
+ # Valid for: Aurora DB clusters only
690
+ #
638
691
  #
639
692
  #
640
693
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html
@@ -654,12 +707,18 @@ module Aws::RDS
654
707
  # (72 hours).
655
708
  #
656
709
  # ^
710
+ #
711
+ # Valid for: Aurora DB clusters only
657
712
  # @option options [Array<String>] :enable_cloudwatch_logs_exports
658
713
  # The list of logs that the restored DB cluster is to export to Amazon
659
714
  # CloudWatch Logs. The values in the list depend on the DB engine being
660
- # used. For more information, see [Publishing Database Logs to Amazon
715
+ # used.
716
+ #
717
+ # For more information, see [Publishing Database Logs to Amazon
661
718
  # CloudWatch Logs ][1] in the *Amazon Aurora User Guide*.
662
719
  #
720
+ # Valid for: Aurora DB clusters only
721
+ #
663
722
  #
664
723
  #
665
724
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
@@ -669,12 +728,16 @@ module Aws::RDS
669
728
  #
670
729
  # For more information, see [ CreateDBCluster][1].
671
730
  #
731
+ # Valid for: Aurora DB clusters only
732
+ #
672
733
  #
673
734
  #
674
735
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html
675
736
  # @option options [Types::ScalingConfiguration] :scaling_configuration
676
737
  # For DB clusters in `serverless` DB engine mode, the scaling properties
677
738
  # of the DB cluster.
739
+ #
740
+ # Valid for: Aurora DB clusters only
678
741
  # @option options [String] :db_cluster_parameter_group_name
679
742
  # The name of the DB cluster parameter group to associate with this DB
680
743
  # cluster. If this argument is omitted, the default DB cluster parameter
@@ -690,14 +753,20 @@ module Aws::RDS
690
753
  # * First character must be a letter.
691
754
  #
692
755
  # * Can't end with a hyphen or contain two consecutive hyphens.
756
+ #
757
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
693
758
  # @option options [Boolean] :deletion_protection
694
759
  # A value that indicates whether the DB cluster has deletion protection
695
760
  # enabled. The database can't be deleted when deletion protection is
696
- # enabled. By default, deletion protection is disabled.
761
+ # enabled. By default, deletion protection isn't enabled.
762
+ #
763
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
697
764
  # @option options [Boolean] :copy_tags_to_snapshot
698
765
  # A value that indicates whether to copy all tags from the restored DB
699
766
  # cluster to snapshots of the restored DB cluster. The default is not to
700
767
  # copy them.
768
+ #
769
+ # Valid for: Aurora DB clusters only
701
770
  # @option options [String] :domain
702
771
  # Specify the Active Directory directory ID to restore the DB cluster
703
772
  # in. The domain must be created prior to this operation. Currently,
@@ -707,12 +776,95 @@ module Aws::RDS
707
776
  # For more information, see [ Kerberos Authentication][1] in the *Amazon
708
777
  # RDS User Guide*.
709
778
  #
779
+ # Valid for: Aurora DB clusters only
780
+ #
710
781
  #
711
782
  #
712
783
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
713
784
  # @option options [String] :domain_iam_role_name
714
785
  # Specify the name of the IAM role to be used when making API calls to
715
786
  # the Directory Service.
787
+ #
788
+ # Valid for: Aurora DB clusters only
789
+ # @option options [String] :db_cluster_instance_class
790
+ # The compute and memory capacity of the each DB instance in the
791
+ # Multi-AZ DB cluster, for example db.m6g.xlarge. Not all DB instance
792
+ # classes are available in all Amazon Web Services Regions, or for all
793
+ # database engines.
794
+ #
795
+ # For the full list of DB instance classes, and availability for your
796
+ # engine, see [DB Instance Class][1] in the *Amazon RDS User Guide.*
797
+ #
798
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
799
+ #
800
+ #
801
+ #
802
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
803
+ # @option options [String] :storage_type
804
+ # Specifies the storage type to be associated with the each DB instance
805
+ # in the Multi-AZ DB cluster.
806
+ #
807
+ # Valid values: `standard | gp2 | io1`
808
+ #
809
+ # If you specify `io1`, you must also include a value for the `Iops`
810
+ # parameter.
811
+ #
812
+ # Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
813
+ #
814
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
815
+ # @option options [Integer] :iops
816
+ # The amount of Provisioned IOPS (input/output operations per second) to
817
+ # be initially allocated for each DB instance in the Multi-AZ DB
818
+ # cluster.
819
+ #
820
+ # For information about valid Iops values, see [Amazon RDS Provisioned
821
+ # IOPS Storage to Improve Performance][1] in the *Amazon RDS User
822
+ # Guide*.
823
+ #
824
+ # Constraints: Must be a multiple between .5 and 50 of the storage
825
+ # amount for the DB instance.
826
+ #
827
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
828
+ #
829
+ #
830
+ #
831
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
832
+ # @option options [Boolean] :publicly_accessible
833
+ # A value that indicates whether the DB cluster is publicly accessible.
834
+ #
835
+ # When the DB cluster is publicly accessible, its Domain Name System
836
+ # (DNS) endpoint resolves to the private IP address from within the DB
837
+ # cluster's virtual private cloud (VPC). It resolves to the public IP
838
+ # address from outside of the DB cluster's VPC. Access to the DB
839
+ # cluster is ultimately controlled by the security group it uses. That
840
+ # public access is not permitted if the security group assigned to the
841
+ # DB cluster doesn't permit it.
842
+ #
843
+ # When the DB cluster isn't publicly accessible, it is an internal DB
844
+ # cluster with a DNS name that resolves to a private IP address.
845
+ #
846
+ # Default: The default behavior varies depending on whether
847
+ # `DBSubnetGroupName` is specified.
848
+ #
849
+ # If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
850
+ # isn't specified, the following applies:
851
+ #
852
+ # * If the default VPC in the target Region doesn’t have an internet
853
+ # gateway attached to it, the DB cluster is private.
854
+ #
855
+ # * If the default VPC in the target Region has an internet gateway
856
+ # attached to it, the DB cluster is public.
857
+ #
858
+ # If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
859
+ # specified, the following applies:
860
+ #
861
+ # * If the subnets are part of a VPC that doesn’t have an internet
862
+ # gateway attached to it, the DB cluster is private.
863
+ #
864
+ # * If the subnets are part of a VPC that has an internet gateway
865
+ # attached to it, the DB cluster is public.
866
+ #
867
+ # Valid for: Aurora DB clusters and Multi-AZ DB clusters
716
868
  # @return [DBCluster]
717
869
  def restore(options = {})
718
870
  options = options.merge(snapshot_identifier: @snapshot_id)
@@ -225,9 +225,10 @@ module Aws::RDS
225
225
 
226
226
  # Contains one or more identifiers of Aurora DB clusters to which the
227
227
  # RDS DB instance is replicated as a read replica. For example, when you
228
- # create an Aurora read replica of an RDS MySQL DB instance, the Aurora
229
- # MySQL DB cluster for the Aurora read replica is shown. This output
230
- # does not contain information about cross region Aurora read replicas.
228
+ # create an Aurora read replica of an RDS for MySQL DB instance, the
229
+ # Aurora MySQL DB cluster for the Aurora read replica is shown. This
230
+ # output doesn't contain information about cross-Region Aurora read
231
+ # replicas.
231
232
  #
232
233
  # <note markdown="1"> Currently, each RDS DB instance can have only one Aurora read replica.
233
234
  #
@@ -296,12 +297,13 @@ module Aws::RDS
296
297
 
297
298
  # Specifies the accessibility options for the DB instance.
298
299
  #
299
- # When the DB instance is publicly accessible, its DNS endpoint resolves
300
- # to the private IP address from within the DB instance's VPC, and to
301
- # the public IP address from outside of the DB instance's VPC. Access
302
- # to the DB instance is ultimately controlled by the security group it
303
- # uses, and that public access is not permitted if the security group
304
- # assigned to the DB instance doesn't permit it.
300
+ # When the DB cluster is publicly accessible, its Domain Name System
301
+ # (DNS) endpoint resolves to the private IP address from within the DB
302
+ # cluster's virtual private cloud (VPC). It resolves to the public IP
303
+ # address from outside of the DB cluster's VPC. Access to the DB
304
+ # cluster is ultimately controlled by the security group it uses. That
305
+ # public access isn't permitted if the security group assigned to the
306
+ # DB cluster doesn't permit it.
305
307
  #
306
308
  # When the DB instance isn't publicly accessible, it is an internal DB
307
309
  # instance with a DNS name that resolves to a private IP address.
@@ -1085,8 +1087,8 @@ module Aws::RDS
1085
1087
  #
1086
1088
  # * Web and Express editions: Must be an integer from 20 to 1024.
1087
1089
  # @option options [required, String] :db_instance_class
1088
- # The compute and memory capacity of the DB instance, for example,
1089
- # `db.m4.large`. Not all DB instance classes are available in all Amazon
1090
+ # The compute and memory capacity of the DB instance, for example
1091
+ # db.m4.large. Not all DB instance classes are available in all Amazon
1090
1092
  # Web Services Regions, or for all database engines. For the full list
1091
1093
  # of DB instance classes, and availability for your engine, see [DB
1092
1094
  # Instance Class][1] in the *Amazon RDS User Guide.*
@@ -1380,27 +1382,28 @@ module Aws::RDS
1380
1382
  #
1381
1383
  # **MariaDB**
1382
1384
  #
1383
- # See [MariaDB on Amazon RDS Versions][2] in the *Amazon RDS User
1384
- # Guide.*
1385
+ # For information, see [MariaDB on Amazon RDS Versions][2] in the
1386
+ # *Amazon RDS User Guide.*
1385
1387
  #
1386
1388
  # **Microsoft SQL Server**
1387
1389
  #
1388
- # See [Microsoft SQL Server Versions on Amazon RDS][3] in the *Amazon
1389
- # RDS User Guide.*
1390
+ # For information, see [Microsoft SQL Server Versions on Amazon RDS][3]
1391
+ # in the *Amazon RDS User Guide.*
1390
1392
  #
1391
1393
  # **MySQL**
1392
1394
  #
1393
- # See [MySQL on Amazon RDS Versions][4] in the *Amazon RDS User Guide.*
1395
+ # For information, see [MySQL on Amazon RDS Versions][4] in the *Amazon
1396
+ # RDS User Guide.*
1394
1397
  #
1395
1398
  # **Oracle**
1396
1399
  #
1397
- # See [Oracle Database Engine Release Notes][5] in the *Amazon RDS User
1398
- # Guide.*
1400
+ # For information, see [Oracle Database Engine Release Notes][5] in the
1401
+ # *Amazon RDS User Guide.*
1399
1402
  #
1400
1403
  # **PostgreSQL**
1401
1404
  #
1402
- # See [Amazon RDS for PostgreSQL versions and extensions][6] in the
1403
- # *Amazon RDS User Guide.*
1405
+ # For information, see [Amazon RDS for PostgreSQL versions and
1406
+ # extensions][6] in the *Amazon RDS User Guide.*
1404
1407
  #
1405
1408
  #
1406
1409
  #
@@ -1427,8 +1430,8 @@ module Aws::RDS
1427
1430
  # @option options [Integer] :iops
1428
1431
  # The amount of Provisioned IOPS (input/output operations per second) to
1429
1432
  # be initially allocated for the DB instance. For information about
1430
- # valid Iops values, see [Amazon RDS Provisioned IOPS Storage to Improve
1431
- # Performance][1] in the *Amazon RDS User Guide*.
1433
+ # valid `Iops` values, see [Amazon RDS Provisioned IOPS storage to
1434
+ # improve performance][1] in the *Amazon RDS User Guide*.
1432
1435
  #
1433
1436
  # Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL DB instances,
1434
1437
  # must be a multiple between .5 and 50 of the storage amount for the DB
@@ -1466,12 +1469,13 @@ module Aws::RDS
1466
1469
  # @option options [Boolean] :publicly_accessible
1467
1470
  # A value that indicates whether the DB instance is publicly accessible.
1468
1471
  #
1469
- # When the DB instance is publicly accessible, its DNS endpoint resolves
1470
- # to the private IP address from within the DB instance's VPC, and to
1471
- # the public IP address from outside of the DB instance's VPC. Access
1472
- # to the DB instance is ultimately controlled by the security group it
1473
- # uses, and that public access is not permitted if the security group
1474
- # assigned to the DB instance doesn't permit it.
1472
+ # When the DB instance is publicly accessible, its Domain Name System
1473
+ # (DNS) endpoint resolves to the private IP address from within the DB
1474
+ # instance's virtual private cloud (VPC). It resolves to the public IP
1475
+ # address from outside of the DB instance's VPC. Access to the DB
1476
+ # instance is ultimately controlled by the security group it uses. That
1477
+ # public access is not permitted if the security group assigned to the
1478
+ # DB instance doesn't permit it.
1475
1479
  #
1476
1480
  # When the DB instance isn't publicly accessible, it is an internal DB
1477
1481
  # instance with a DNS name that resolves to a private IP address.
@@ -1482,19 +1486,19 @@ module Aws::RDS
1482
1486
  # If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
1483
1487
  # isn't specified, the following applies:
1484
1488
  #
1485
- # * If the default VPC in the target region doesn’t have an Internet
1489
+ # * If the default VPC in the target Region doesn’t have an internet
1486
1490
  # gateway attached to it, the DB instance is private.
1487
1491
  #
1488
- # * If the default VPC in the target region has an Internet gateway
1492
+ # * If the default VPC in the target Region has an internet gateway
1489
1493
  # attached to it, the DB instance is public.
1490
1494
  #
1491
1495
  # If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
1492
1496
  # specified, the following applies:
1493
1497
  #
1494
- # * If the subnets are part of a VPC that doesn’t have an Internet
1498
+ # * If the subnets are part of a VPC that doesn’t have an internet
1495
1499
  # gateway attached to it, the DB instance is private.
1496
1500
  #
1497
- # * If the subnets are part of a VPC that has an Internet gateway
1501
+ # * If the subnets are part of a VPC that has an internet gateway
1498
1502
  # attached to it, the DB instance is public.
1499
1503
  # @option options [Array<Types::Tag>] :tags
1500
1504
  # Tags to assign to the DB instance.
@@ -1638,7 +1642,7 @@ module Aws::RDS
1638
1642
  # @option options [Boolean] :enable_iam_database_authentication
1639
1643
  # A value that indicates whether to enable mapping of Amazon Web
1640
1644
  # Services Identity and Access Management (IAM) accounts to database
1641
- # accounts. By default, mapping is disabled.
1645
+ # accounts. By default, mapping isn't enabled.
1642
1646
  #
1643
1647
  # This setting doesn't apply to RDS Custom or Amazon Aurora. In Aurora,
1644
1648
  # mapping Amazon Web Services IAM accounts to database accounts is
@@ -1724,7 +1728,7 @@ module Aws::RDS
1724
1728
  # @option options [Boolean] :deletion_protection
1725
1729
  # A value that indicates whether the DB instance has deletion protection
1726
1730
  # enabled. The database can't be deleted when deletion protection is
1727
- # enabled. By default, deletion protection is disabled. For more
1731
+ # enabled. By default, deletion protection isn't enabled. For more
1728
1732
  # information, see [ Deleting a DB Instance][1].
1729
1733
  #
1730
1734
  # **Amazon Aurora**
@@ -1868,8 +1872,8 @@ module Aws::RDS
1868
1872
  # unique key that identifies a DB instance. This parameter is stored as
1869
1873
  # a lowercase string.
1870
1874
  # @option options [String] :db_instance_class
1871
- # The compute and memory capacity of the read replica, for example,
1872
- # `db.m4.large`. Not all DB instance classes are available in all Amazon
1875
+ # The compute and memory capacity of the read replica, for example
1876
+ # db.m4.large. Not all DB instance classes are available in all Amazon
1873
1877
  # Web Services Regions, or for all database engines. For the full list
1874
1878
  # of DB instance classes, and availability for your engine, see [DB
1875
1879
  # Instance Class][1] in the *Amazon RDS User Guide.*
@@ -1928,8 +1932,8 @@ module Aws::RDS
1928
1932
  #
1929
1933
  # If you do not specify a value for `DBParameterGroupName`, then Amazon
1930
1934
  # RDS uses the `DBParameterGroup` of source DB instance for a same
1931
- # region read replica, or the default `DBParameterGroup` for the
1932
- # specified DB engine for a cross region read replica.
1935
+ # Region read replica, or the default `DBParameterGroup` for the
1936
+ # specified DB engine for a cross-Region read replica.
1933
1937
  #
1934
1938
  # Specifying a parameter group for this operation is only supported for
1935
1939
  # Oracle DB instances. It isn't supported for RDS Custom.
@@ -1944,12 +1948,13 @@ module Aws::RDS
1944
1948
  # @option options [Boolean] :publicly_accessible
1945
1949
  # A value that indicates whether the DB instance is publicly accessible.
1946
1950
  #
1947
- # When the DB instance is publicly accessible, its DNS endpoint resolves
1948
- # to the private IP address from within the DB instance's VPC, and to
1949
- # the public IP address from outside of the DB instance's VPC. Access
1950
- # to the DB instance is ultimately controlled by the security group it
1951
- # uses, and that public access is not permitted if the security group
1952
- # assigned to the DB instance doesn't permit it.
1951
+ # When the DB cluster is publicly accessible, its Domain Name System
1952
+ # (DNS) endpoint resolves to the private IP address from within the DB
1953
+ # cluster's virtual private cloud (VPC). It resolves to the public IP
1954
+ # address from outside of the DB cluster's VPC. Access to the DB
1955
+ # cluster is ultimately controlled by the security group it uses. That
1956
+ # public access isn't permitted if the security group assigned to the
1957
+ # DB cluster doesn't permit it.
1953
1958
  #
1954
1959
  # When the DB instance isn't publicly accessible, it is an internal DB
1955
1960
  # instance with a DNS name that resolves to a private IP address.
@@ -2118,7 +2123,7 @@ module Aws::RDS
2118
2123
  # Region.
2119
2124
  #
2120
2125
  # `SourceRegion` isn't supported for SQL Server, because SQL Server on
2121
- # Amazon RDS doesn't support cross-region read replicas.
2126
+ # Amazon RDS doesn't support cross-Region read replicas.
2122
2127
  #
2123
2128
  # </note>
2124
2129
  #
@@ -2131,7 +2136,7 @@ module Aws::RDS
2131
2136
  # @option options [Boolean] :enable_iam_database_authentication
2132
2137
  # A value that indicates whether to enable mapping of Amazon Web
2133
2138
  # Services Identity and Access Management (IAM) accounts to database
2134
- # accounts. By default, mapping is disabled.
2139
+ # accounts. By default, mapping isn't enabled.
2135
2140
  #
2136
2141
  # For more information about IAM database authentication, see [ IAM
2137
2142
  # Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
@@ -2196,7 +2201,7 @@ module Aws::RDS
2196
2201
  # @option options [Boolean] :deletion_protection
2197
2202
  # A value that indicates whether the DB instance has deletion protection
2198
2203
  # enabled. The database can't be deleted when deletion protection is
2199
- # enabled. By default, deletion protection is disabled. For more
2204
+ # enabled. By default, deletion protection isn't enabled. For more
2200
2205
  # information, see [ Deleting a DB Instance][1].
2201
2206
  #
2202
2207
  #
@@ -2474,8 +2479,8 @@ module Aws::RDS
2474
2479
  # For the valid values for allocated storage for each engine, see
2475
2480
  # `CreateDBInstance`.
2476
2481
  # @option options [String] :db_instance_class
2477
- # The new compute and memory capacity of the DB instance, for example,
2478
- # `db.m4.large`. Not all DB instance classes are available in all Amazon
2482
+ # The new compute and memory capacity of the DB instance, for example
2483
+ # db.m4.large. Not all DB instance classes are available in all Amazon
2479
2484
  # Web Services Regions, or for all database engines. For the full list
2480
2485
  # of DB instance classes, and availability for your engine, see [DB
2481
2486
  # Instance Class][1] in the *Amazon RDS User Guide*.
@@ -2961,12 +2966,13 @@ module Aws::RDS
2961
2966
  # @option options [Boolean] :publicly_accessible
2962
2967
  # A value that indicates whether the DB instance is publicly accessible.
2963
2968
  #
2964
- # When the DB instance is publicly accessible, its DNS endpoint resolves
2965
- # to the private IP address from within the DB instance's VPC, and to
2966
- # the public IP address from outside of the DB instance's VPC. Access
2967
- # to the DB instance is ultimately controlled by the security group it
2968
- # uses, and that public access is not permitted if the security group
2969
- # assigned to the DB instance doesn't permit it.
2969
+ # When the DB cluster is publicly accessible, its Domain Name System
2970
+ # (DNS) endpoint resolves to the private IP address from within the DB
2971
+ # cluster's virtual private cloud (VPC). It resolves to the public IP
2972
+ # address from outside of the DB cluster's VPC. Access to the DB
2973
+ # cluster is ultimately controlled by the security group it uses. That
2974
+ # public access isn't permitted if the security group assigned to the
2975
+ # DB cluster doesn't permit it.
2970
2976
  #
2971
2977
  # When the DB instance isn't publicly accessible, it is an internal DB
2972
2978
  # instance with a DNS name that resolves to a private IP address.
@@ -3017,7 +3023,7 @@ module Aws::RDS
3017
3023
  # @option options [Boolean] :enable_iam_database_authentication
3018
3024
  # A value that indicates whether to enable mapping of Amazon Web
3019
3025
  # Services Identity and Access Management (IAM) accounts to database
3020
- # accounts. By default, mapping is disabled.
3026
+ # accounts. By default, mapping isn't enabled.
3021
3027
  #
3022
3028
  # This setting doesn't apply to Amazon Aurora. Mapping Amazon Web
3023
3029
  # Services IAM accounts to database accounts is managed by the DB
@@ -3084,7 +3090,7 @@ module Aws::RDS
3084
3090
  # @option options [Boolean] :deletion_protection
3085
3091
  # A value that indicates whether the DB instance has deletion protection
3086
3092
  # enabled. The database can't be deleted when deletion protection is
3087
- # enabled. By default, deletion protection is disabled. For more
3093
+ # enabled. By default, deletion protection isn't enabled. For more
3088
3094
  # information, see [ Deleting a DB Instance][1].
3089
3095
  #
3090
3096
  #
@@ -3357,10 +3363,10 @@ module Aws::RDS
3357
3363
  # provided.
3358
3364
  # @option options [String] :db_instance_class
3359
3365
  # The compute and memory capacity of the Amazon RDS DB instance, for
3360
- # example, `db.m4.large`. Not all DB instance classes are available in
3361
- # all Amazon Web Services Regions, or for all database engines. For the
3362
- # full list of DB instance classes, and availability for your engine,
3363
- # see [DB Instance Class][1] in the *Amazon RDS User Guide.*
3366
+ # example db.m4.large. Not all DB instance classes are available in all
3367
+ # Amazon Web Services Regions, or for all database engines. For the full
3368
+ # list of DB instance classes, and availability for your engine, see [DB
3369
+ # Instance Class][1] in the *Amazon RDS User Guide.*
3364
3370
  #
3365
3371
  # Default: The same DBInstanceClass as the original DB instance.
3366
3372
  #
@@ -3400,12 +3406,13 @@ module Aws::RDS
3400
3406
  # @option options [Boolean] :publicly_accessible
3401
3407
  # A value that indicates whether the DB instance is publicly accessible.
3402
3408
  #
3403
- # When the DB instance is publicly accessible, its DNS endpoint resolves
3404
- # to the private IP address from within the DB instance's VPC, and to
3405
- # the public IP address from outside of the DB instance's VPC. Access
3406
- # to the DB instance is ultimately controlled by the security group it
3407
- # uses, and that public access is not permitted if the security group
3408
- # assigned to the DB instance doesn't permit it.
3409
+ # When the DB cluster is publicly accessible, its Domain Name System
3410
+ # (DNS) endpoint resolves to the private IP address from within the DB
3411
+ # cluster's virtual private cloud (VPC). It resolves to the public IP
3412
+ # address from outside of the DB cluster's VPC. Access to the DB
3413
+ # cluster is ultimately controlled by the security group it uses. That
3414
+ # public access isn't permitted if the security group assigned to the
3415
+ # DB cluster doesn't permit it.
3409
3416
  #
3410
3417
  # When the DB instance isn't publicly accessible, it is an internal DB
3411
3418
  # instance with a DNS name that resolves to a private IP address.
@@ -3540,7 +3547,7 @@ module Aws::RDS
3540
3547
  # @option options [Boolean] :enable_iam_database_authentication
3541
3548
  # A value that indicates whether to enable mapping of Amazon Web
3542
3549
  # Services Identity and Access Management (IAM) accounts to database
3543
- # accounts. By default, mapping is disabled.
3550
+ # accounts. By default, mapping isn't enabled.
3544
3551
  #
3545
3552
  # This setting doesn't apply to RDS Custom.
3546
3553
  #
@@ -3592,7 +3599,7 @@ module Aws::RDS
3592
3599
  # @option options [Boolean] :deletion_protection
3593
3600
  # A value that indicates whether the DB instance has deletion protection
3594
3601
  # enabled. The database can't be deleted when deletion protection is
3595
- # enabled. By default, deletion protection is disabled. For more
3602
+ # enabled. By default, deletion protection isn't enabled. For more
3596
3603
  # information, see [ Deleting a DB Instance][1].
3597
3604
  #
3598
3605
  #