aws-sdk-rds 1.4.0 → 1.5.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.
@@ -197,10 +197,14 @@ module Aws::RDS
197
197
  DescribeReservedDBInstancesMessage = Shapes::StructureShape.new(name: 'DescribeReservedDBInstancesMessage')
198
198
  DescribeReservedDBInstancesOfferingsMessage = Shapes::StructureShape.new(name: 'DescribeReservedDBInstancesOfferingsMessage')
199
199
  DescribeSourceRegionsMessage = Shapes::StructureShape.new(name: 'DescribeSourceRegionsMessage')
200
+ DescribeValidDBInstanceModificationsMessage = Shapes::StructureShape.new(name: 'DescribeValidDBInstanceModificationsMessage')
201
+ DescribeValidDBInstanceModificationsResult = Shapes::StructureShape.new(name: 'DescribeValidDBInstanceModificationsResult')
200
202
  DomainMembership = Shapes::StructureShape.new(name: 'DomainMembership')
201
203
  DomainMembershipList = Shapes::ListShape.new(name: 'DomainMembershipList')
202
204
  DomainNotFoundFault = Shapes::StructureShape.new(name: 'DomainNotFoundFault')
203
205
  Double = Shapes::FloatShape.new(name: 'Double')
206
+ DoubleRange = Shapes::StructureShape.new(name: 'DoubleRange')
207
+ DoubleRangeList = Shapes::ListShape.new(name: 'DoubleRangeList')
204
208
  DownloadDBLogFilePortionDetails = Shapes::StructureShape.new(name: 'DownloadDBLogFilePortionDetails')
205
209
  DownloadDBLogFilePortionMessage = Shapes::StructureShape.new(name: 'DownloadDBLogFilePortionMessage')
206
210
  EC2SecurityGroup = Shapes::StructureShape.new(name: 'EC2SecurityGroup')
@@ -311,6 +315,8 @@ module Aws::RDS
311
315
  ProvisionedIopsNotAvailableInAZFault = Shapes::StructureShape.new(name: 'ProvisionedIopsNotAvailableInAZFault')
312
316
  PurchaseReservedDBInstancesOfferingMessage = Shapes::StructureShape.new(name: 'PurchaseReservedDBInstancesOfferingMessage')
313
317
  PurchaseReservedDBInstancesOfferingResult = Shapes::StructureShape.new(name: 'PurchaseReservedDBInstancesOfferingResult')
318
+ Range = Shapes::StructureShape.new(name: 'Range')
319
+ RangeList = Shapes::ListShape.new(name: 'RangeList')
314
320
  ReadReplicaDBClusterIdentifierList = Shapes::ListShape.new(name: 'ReadReplicaDBClusterIdentifierList')
315
321
  ReadReplicaDBInstanceIdentifierList = Shapes::ListShape.new(name: 'ReadReplicaDBInstanceIdentifierList')
316
322
  ReadReplicaIdentifierList = Shapes::ListShape.new(name: 'ReadReplicaIdentifierList')
@@ -381,6 +387,9 @@ module Aws::RDS
381
387
  TagListMessage = Shapes::StructureShape.new(name: 'TagListMessage')
382
388
  Timezone = Shapes::StructureShape.new(name: 'Timezone')
383
389
  UpgradeTarget = Shapes::StructureShape.new(name: 'UpgradeTarget')
390
+ ValidDBInstanceModificationsMessage = Shapes::StructureShape.new(name: 'ValidDBInstanceModificationsMessage')
391
+ ValidStorageOptions = Shapes::StructureShape.new(name: 'ValidStorageOptions')
392
+ ValidStorageOptionsList = Shapes::ListShape.new(name: 'ValidStorageOptionsList')
384
393
  ValidUpgradeTargetList = Shapes::ListShape.new(name: 'ValidUpgradeTargetList')
385
394
  VpcSecurityGroupIdList = Shapes::ListShape.new(name: 'VpcSecurityGroupIdList')
386
395
  VpcSecurityGroupMembership = Shapes::StructureShape.new(name: 'VpcSecurityGroupMembership')
@@ -1264,6 +1273,12 @@ module Aws::RDS
1264
1273
  DescribeSourceRegionsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
1265
1274
  DescribeSourceRegionsMessage.struct_class = Types::DescribeSourceRegionsMessage
1266
1275
 
1276
+ DescribeValidDBInstanceModificationsMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
1277
+ DescribeValidDBInstanceModificationsMessage.struct_class = Types::DescribeValidDBInstanceModificationsMessage
1278
+
1279
+ DescribeValidDBInstanceModificationsResult.add_member(:valid_db_instance_modifications_message, Shapes::ShapeRef.new(shape: ValidDBInstanceModificationsMessage, location_name: "ValidDBInstanceModificationsMessage"))
1280
+ DescribeValidDBInstanceModificationsResult.struct_class = Types::DescribeValidDBInstanceModificationsResult
1281
+
1267
1282
  DomainMembership.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
1268
1283
  DomainMembership.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
1269
1284
  DomainMembership.add_member(:fqdn, Shapes::ShapeRef.new(shape: String, location_name: "FQDN"))
@@ -1272,6 +1287,12 @@ module Aws::RDS
1272
1287
 
1273
1288
  DomainMembershipList.member = Shapes::ShapeRef.new(shape: DomainMembership, location_name: "DomainMembership")
1274
1289
 
1290
+ DoubleRange.add_member(:from, Shapes::ShapeRef.new(shape: Double, location_name: "From"))
1291
+ DoubleRange.add_member(:to, Shapes::ShapeRef.new(shape: Double, location_name: "To"))
1292
+ DoubleRange.struct_class = Types::DoubleRange
1293
+
1294
+ DoubleRangeList.member = Shapes::ShapeRef.new(shape: DoubleRange, location_name: "DoubleRange")
1295
+
1275
1296
  DownloadDBLogFilePortionDetails.add_member(:log_file_data, Shapes::ShapeRef.new(shape: String, location_name: "LogFileData"))
1276
1297
  DownloadDBLogFilePortionDetails.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
1277
1298
  DownloadDBLogFilePortionDetails.add_member(:additional_data_pending, Shapes::ShapeRef.new(shape: Boolean, location_name: "AdditionalDataPending"))
@@ -1685,6 +1706,13 @@ module Aws::RDS
1685
1706
  PurchaseReservedDBInstancesOfferingResult.add_member(:reserved_db_instance, Shapes::ShapeRef.new(shape: ReservedDBInstance, location_name: "ReservedDBInstance"))
1686
1707
  PurchaseReservedDBInstancesOfferingResult.struct_class = Types::PurchaseReservedDBInstancesOfferingResult
1687
1708
 
1709
+ Range.add_member(:from, Shapes::ShapeRef.new(shape: Integer, location_name: "From"))
1710
+ Range.add_member(:to, Shapes::ShapeRef.new(shape: Integer, location_name: "To"))
1711
+ Range.add_member(:step, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Step"))
1712
+ Range.struct_class = Types::Range
1713
+
1714
+ RangeList.member = Shapes::ShapeRef.new(shape: Range, location_name: "Range")
1715
+
1688
1716
  ReadReplicaDBClusterIdentifierList.member = Shapes::ShapeRef.new(shape: String, location_name: "ReadReplicaDBClusterIdentifier")
1689
1717
 
1690
1718
  ReadReplicaDBInstanceIdentifierList.member = Shapes::ShapeRef.new(shape: String, location_name: "ReadReplicaDBInstanceIdentifier")
@@ -1963,6 +1991,17 @@ module Aws::RDS
1963
1991
  UpgradeTarget.add_member(:is_major_version_upgrade, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsMajorVersionUpgrade"))
1964
1992
  UpgradeTarget.struct_class = Types::UpgradeTarget
1965
1993
 
1994
+ ValidDBInstanceModificationsMessage.add_member(:storage, Shapes::ShapeRef.new(shape: ValidStorageOptionsList, location_name: "Storage"))
1995
+ ValidDBInstanceModificationsMessage.struct_class = Types::ValidDBInstanceModificationsMessage
1996
+
1997
+ ValidStorageOptions.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
1998
+ ValidStorageOptions.add_member(:storage_size, Shapes::ShapeRef.new(shape: RangeList, location_name: "StorageSize"))
1999
+ ValidStorageOptions.add_member(:provisioned_iops, Shapes::ShapeRef.new(shape: RangeList, location_name: "ProvisionedIops"))
2000
+ ValidStorageOptions.add_member(:iops_to_storage_ratio, Shapes::ShapeRef.new(shape: DoubleRangeList, location_name: "IopsToStorageRatio"))
2001
+ ValidStorageOptions.struct_class = Types::ValidStorageOptions
2002
+
2003
+ ValidStorageOptionsList.member = Shapes::ShapeRef.new(shape: ValidStorageOptions, location_name: "ValidStorageOptions")
2004
+
1966
2005
  ValidUpgradeTargetList.member = Shapes::ShapeRef.new(shape: UpgradeTarget, location_name: "UpgradeTarget")
1967
2006
 
1968
2007
  VpcSecurityGroupIdList.member = Shapes::ShapeRef.new(shape: String, location_name: "VpcSecurityGroupId")
@@ -2716,6 +2755,16 @@ module Aws::RDS
2716
2755
  o.output = Shapes::ShapeRef.new(shape: SourceRegionMessage)
2717
2756
  end)
2718
2757
 
2758
+ api.add_operation(:describe_valid_db_instance_modifications, Seahorse::Model::Operation.new.tap do |o|
2759
+ o.name = "DescribeValidDBInstanceModifications"
2760
+ o.http_method = "POST"
2761
+ o.http_request_uri = "/"
2762
+ o.input = Shapes::ShapeRef.new(shape: DescribeValidDBInstanceModificationsMessage)
2763
+ o.output = Shapes::ShapeRef.new(shape: DescribeValidDBInstanceModificationsResult)
2764
+ o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
2765
+ o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
2766
+ end)
2767
+
2719
2768
  api.add_operation(:download_db_log_file_portion, Seahorse::Model::Operation.new.tap do |o|
2720
2769
  o.name = "DownloadDBLogFilePortion"
2721
2770
  o.http_method = "POST"
@@ -473,18 +473,17 @@ module Aws::RDS
473
473
  #
474
474
  # Constraints:
475
475
  #
476
- # * Must be 1 to 255 alphanumeric characters
476
+ # * If supplied, must match the name of an existing
477
+ # DBClusterParameterGroup.
477
478
  #
478
- # * First character must be a letter
479
- #
480
- # * Cannot end with a hyphen or contain two consecutive hyphens
479
+ # ^
481
480
  # @option options [Array<String>] :vpc_security_group_ids
482
481
  # A list of EC2 VPC security groups to associate with this DB cluster.
483
482
  # @option options [String] :db_subnet_group_name
484
483
  # A DB subnet group to associate with this DB cluster.
485
484
  #
486
- # Constraints: Must contain no more than 255 alphanumeric characters,
487
- # periods, underscores, spaces, or hyphens. Must not be default.
485
+ # Constraints: Must match the name of an existing DBSubnetGroup. Must
486
+ # not be default.
488
487
  #
489
488
  # Example: `mySubnetgroup`
490
489
  # @option options [required, String] :engine
@@ -507,7 +506,7 @@ module Aws::RDS
507
506
  #
508
507
  # Constraints:
509
508
  #
510
- # * Must be 1 to 16 alphanumeric characters.
509
+ # * Must be 1 to 16 letters or numbers.
511
510
  #
512
511
  # * First character must be a letter.
513
512
  #
@@ -676,7 +675,7 @@ module Aws::RDS
676
675
  #
677
676
  # Constraints:
678
677
  #
679
- # * Must contain from 1 to 63 alphanumeric characters or hyphens.
678
+ # * Must contain from 1 to 63 letters, numbers, or hyphens.
680
679
  #
681
680
  # * First character must be a letter.
682
681
  #
@@ -727,7 +726,7 @@ module Aws::RDS
727
726
  #
728
727
  # Constraints:
729
728
  #
730
- # * Must be 1 to 255 alphanumeric characters
729
+ # * Must be 1 to 255 letters, numbers, or hyphens.
731
730
  #
732
731
  # * First character must be a letter
733
732
  #
@@ -787,9 +786,9 @@ module Aws::RDS
787
786
  #
788
787
  # Constraints:
789
788
  #
790
- # * Must contain from 1 to 63 alphanumeric characters or hyphens
789
+ # * Must contain from 1 to 63 letters, numbers, or hyphens
791
790
  #
792
- # * First character must be a letter
791
+ # * The first character must be a letter
793
792
  #
794
793
  # * Cannot end with a hyphen or contain two consecutive hyphens
795
794
  #
@@ -932,7 +931,7 @@ module Aws::RDS
932
931
  #
933
932
  # Constraints:
934
933
  #
935
- # * Must contain from 1 to 63 alphanumeric characters or hyphens
934
+ # * Must contain from 1 to 63 letters, numbers, or hyphens
936
935
  #
937
936
  # * First character must be a letter
938
937
  #
@@ -987,8 +986,8 @@ module Aws::RDS
987
986
  # @option options [String] :db_subnet_group_name
988
987
  # The DB subnet group name to use for the new DB cluster.
989
988
  #
990
- # Constraints: Must contain no more than 255 alphanumeric characters,
991
- # periods, underscores, spaces, or hyphens. Must not be default.
989
+ # Constraints: If supplied, must match the name of an existing
990
+ # DBSubnetGroup.
992
991
  #
993
992
  # Example: `mySubnetgroup`
994
993
  # @option options [String] :option_group_name
@@ -1173,11 +1172,8 @@ module Aws::RDS
1173
1172
  #
1174
1173
  # Constraints:
1175
1174
  #
1176
- # * Must be 1 to 255 alphanumeric characters
1177
- #
1178
- # * First character must be a letter
1179
- #
1180
- # * Cannot end with a hyphen or contain two consecutive hyphens
1175
+ # * If supplied, must match the identifier of an existing
1176
+ # DBClusterSnapshot.
1181
1177
  #
1182
1178
  # * If this identifier is for an automated snapshot, the `SnapshotType`
1183
1179
  # parameter must also be specified.
@@ -340,7 +340,7 @@ module Aws::RDS
340
340
  #
341
341
  # Constraints:
342
342
  #
343
- # * Must contain from 1 to 63 alphanumeric characters or hyphens.
343
+ # * Must contain from 1 to 63 letters, numbers, or hyphens.
344
344
  #
345
345
  # * First character must be a letter.
346
346
  #
@@ -478,7 +478,7 @@ module Aws::RDS
478
478
  #
479
479
  # Constraints:
480
480
  #
481
- # * Must contain from 1 to 255 alphanumeric characters or hyphens
481
+ # * Must contain from 1 to 255 letters, numbers, or hyphens
482
482
  #
483
483
  # * First character must be a letter
484
484
  #
@@ -502,8 +502,8 @@ module Aws::RDS
502
502
  # @option options [String] :db_subnet_group_name
503
503
  # The name of the DB subnet group to use for the new DB cluster.
504
504
  #
505
- # Constraints: Must contain no more than 255 alphanumeric characters,
506
- # periods, underscores, spaces, or hyphens. Must not be default.
505
+ # Constraints: If supplied, must match the name of an existing
506
+ # DBSubnetGroup.
507
507
  #
508
508
  # Example: `mySubnetgroup`
509
509
  # @option options [String] :database_name
@@ -270,11 +270,9 @@ module Aws::RDS
270
270
  #
271
271
  # Constraints:
272
272
  #
273
- # * Must be 1 to 255 alphanumeric characters
273
+ # * If supplied, must match an existing DBParameterGroupFamily.
274
274
  #
275
- # * First character must be a letter
276
- #
277
- # * Cannot end with a hyphen or contain two consecutive hyphens
275
+ # ^
278
276
  # @option options [Array<Types::Filter>] :filters
279
277
  # Not currently supported.
280
278
  # @option options [Boolean] :default_only
@@ -613,7 +613,7 @@ module Aws::RDS
613
613
  #
614
614
  # Constraints:
615
615
  #
616
- # * Must contain 1 to 64 alphanumeric characters
616
+ # * Must contain 1 to 64 letters or numbers.
617
617
  #
618
618
  # * Cannot be a word reserved by the specified database engine
619
619
  #
@@ -625,7 +625,7 @@ module Aws::RDS
625
625
  #
626
626
  # Constraints:
627
627
  #
628
- # * Must contain 1 to 64 alphanumeric characters
628
+ # * Must contain 1 to 64 letters or numbers.
629
629
  #
630
630
  # * Cannot be a word reserved by the specified database engine
631
631
  #
@@ -637,7 +637,7 @@ module Aws::RDS
637
637
  #
638
638
  # Constraints:
639
639
  #
640
- # * Must contain 1 to 63 alphanumeric characters
640
+ # * Must contain 1 to 63 letters, numbers, or underscores.
641
641
  #
642
642
  # * Must begin with a letter or an underscore. Subsequent characters can
643
643
  # be letters, underscores, or digits (0-9).
@@ -670,7 +670,7 @@ module Aws::RDS
670
670
  #
671
671
  # Constraints:
672
672
  #
673
- # * Must contain 1 to 64 alphanumeric characters
673
+ # * Must contain 1 to 64 letters or numbers.
674
674
  #
675
675
  # * Cannot be a word reserved by the specified database engine
676
676
  # @option options [Integer] :allocated_storage
@@ -811,7 +811,9 @@ module Aws::RDS
811
811
  #
812
812
  # Constraints:
813
813
  #
814
- # * Must be 1 to 16 alphanumeric characters.
814
+ # * Required for MariaDB.
815
+ #
816
+ # * Must be 1 to 16 letters or numbers.
815
817
  #
816
818
  # * Cannot be a reserved word for the chosen database engine.
817
819
  #
@@ -819,9 +821,11 @@ module Aws::RDS
819
821
  #
820
822
  # Constraints:
821
823
  #
822
- # * Must be 1 to 128 alphanumeric characters.
824
+ # * Required for SQL Server.
823
825
  #
824
- # * First character must be a letter.
826
+ # * Must be 1 to 128 letters or numbers.
827
+ #
828
+ # * The first character must be a letter.
825
829
  #
826
830
  # * Cannot be a reserved word for the chosen database engine.
827
831
  #
@@ -829,7 +833,9 @@ module Aws::RDS
829
833
  #
830
834
  # Constraints:
831
835
  #
832
- # * Must be 1 to 16 alphanumeric characters.
836
+ # * Required for MySQL.
837
+ #
838
+ # * Must be 1 to 16 letters or numbers.
833
839
  #
834
840
  # * First character must be a letter.
835
841
  #
@@ -839,7 +845,9 @@ module Aws::RDS
839
845
  #
840
846
  # Constraints:
841
847
  #
842
- # * Must be 1 to 30 alphanumeric characters.
848
+ # * Required for Oracle.
849
+ #
850
+ # * Must be 1 to 30 letters or numbers.
843
851
  #
844
852
  # * First character must be a letter.
845
853
  #
@@ -849,7 +857,9 @@ module Aws::RDS
849
857
  #
850
858
  # Constraints:
851
859
  #
852
- # * Must be 1 to 63 alphanumeric characters.
860
+ # * Required for PostgreSQL.
861
+ #
862
+ # * Must be 1 to 63 letters or numbers.
853
863
  #
854
864
  # * First character must be a letter.
855
865
  #
@@ -944,7 +954,7 @@ module Aws::RDS
944
954
  #
945
955
  # Constraints:
946
956
  #
947
- # * Must be 1 to 255 alphanumeric characters
957
+ # * Must be 1 to 255 letters, numbers, or hyphens.
948
958
  #
949
959
  # * First character must be a letter
950
960
  #
@@ -1494,6 +1504,8 @@ module Aws::RDS
1494
1504
  # * Can only be specified if the source DB instance identifier specifies
1495
1505
  # a DB instance in another AWS Region.
1496
1506
  #
1507
+ # * If supplied, must match the name of an existing DBSubnetGroup.
1508
+ #
1497
1509
  # * The specified DB subnet group must be in the same AWS Region in
1498
1510
  # which the operation is running.
1499
1511
  #
@@ -1506,9 +1518,6 @@ module Aws::RDS
1506
1518
  # * Not specify a DB subnet group. All these Read Replicas will be
1507
1519
  # created outside of any VPC.
1508
1520
  #
1509
- # Constraints: Must contain no more than 255 alphanumeric characters,
1510
- # periods, underscores, spaces, or hyphens. Must not be default.
1511
- #
1512
1521
  # Example: `mySubnetgroup`
1513
1522
  # @option options [String] :storage_type
1514
1523
  # Specifies the storage type to be associated with the Read Replica.
@@ -1664,7 +1673,7 @@ module Aws::RDS
1664
1673
  #
1665
1674
  # * Cannot be null, empty, or blank
1666
1675
  #
1667
- # * Must contain from 1 to 255 alphanumeric characters or hyphens
1676
+ # * Must contain from 1 to 255 letters, numbers, or hyphens
1668
1677
  #
1669
1678
  # * First character must be a letter
1670
1679
  #
@@ -1722,7 +1731,7 @@ module Aws::RDS
1722
1731
  #
1723
1732
  # Constraints:
1724
1733
  #
1725
- # * Must be 1 to 255 alphanumeric characters
1734
+ # * Must be 1 to 255 letters or numbers.
1726
1735
  #
1727
1736
  # * First character must be a letter
1728
1737
  #
@@ -1884,8 +1893,8 @@ module Aws::RDS
1884
1893
  # change is applied during the next maintenance window, unless you
1885
1894
  # specify `true` for the `ApplyImmediately` parameter.
1886
1895
  #
1887
- # Constraints: Must contain no more than 255 alphanumeric characters,
1888
- # periods, underscores, spaces, or hyphens.
1896
+ # Constraints: If supplied, must match the name of an existing
1897
+ # DBSubnetGroup.
1889
1898
  #
1890
1899
  # Example: `mySubnetGroup`
1891
1900
  #
@@ -1899,11 +1908,9 @@ module Aws::RDS
1899
1908
  #
1900
1909
  # Constraints:
1901
1910
  #
1902
- # * Must be 1 to 255 alphanumeric characters
1911
+ # * If supplied, must match existing DBSecurityGroups.
1903
1912
  #
1904
- # * First character must be a letter
1905
- #
1906
- # * Cannot end with a hyphen or contain two consecutive hyphens
1913
+ # ^
1907
1914
  # @option options [Array<String>] :vpc_security_group_ids
1908
1915
  # A list of EC2 VPC security groups to authorize on this DB instance.
1909
1916
  # This change is asynchronously applied as soon as possible.
@@ -1915,11 +1922,9 @@ module Aws::RDS
1915
1922
  #
1916
1923
  # Constraints:
1917
1924
  #
1918
- # * Must be 1 to 255 alphanumeric characters
1919
- #
1920
- # * First character must be a letter
1925
+ # * If supplied, must match existing VpcSecurityGroupIds.
1921
1926
  #
1922
- # * Cannot end with a hyphen or contain two consecutive hyphens
1927
+ # ^
1923
1928
  # @option options [Boolean] :apply_immediately
1924
1929
  # Specifies whether the modifications in this request and any pending
1925
1930
  # modifications are asynchronously applied as soon as possible,
@@ -1957,9 +1962,25 @@ module Aws::RDS
1957
1962
  #
1958
1963
  # Default: Uses existing setting
1959
1964
  #
1960
- # Constraints: Must be 8 to 41 alphanumeric characters (MySQL, MariaDB,
1961
- # and Amazon Aurora), 8 to 30 alphanumeric characters (Oracle), or 8 to
1962
- # 128 alphanumeric characters (SQL Server).
1965
+ # **MariaDB**
1966
+ #
1967
+ # Constraints: Must contain from 8 to 41 characters.
1968
+ #
1969
+ # **Microsoft SQL Server**
1970
+ #
1971
+ # Constraints: Must contain from 8 to 128 characters.
1972
+ #
1973
+ # **MySQL**
1974
+ #
1975
+ # Constraints: Must contain from 8 to 41 characters.
1976
+ #
1977
+ # **Oracle**
1978
+ #
1979
+ # Constraints: Must contain from 8 to 30 characters.
1980
+ #
1981
+ # **PostgreSQL**
1982
+ #
1983
+ # Constraints: Must contain from 8 to 128 characters.
1963
1984
  #
1964
1985
  # <note markdown="1"> Amazon RDS API actions never return the password, so this action
1965
1986
  # provides a way to regain access to a primary instance user if the
@@ -2149,11 +2170,13 @@ module Aws::RDS
2149
2170
  #
2150
2171
  # Constraints:
2151
2172
  #
2152
- # * Must contain from 1 to 63 alphanumeric characters or hyphens
2173
+ # * Must contain from 1 to 63 letters, numbers, or hyphens.
2153
2174
  #
2154
- # * First character must be a letter
2175
+ # * The first character must be a letter.
2155
2176
  #
2156
- # * Cannot end with a hyphen or contain two consecutive hyphens
2177
+ # * Cannot end with a hyphen or contain two consecutive hyphens.
2178
+ #
2179
+ # Example: `mydbinstance`
2157
2180
  # @option options [String] :storage_type
2158
2181
  # Specifies the storage type to be associated with the DB instance.
2159
2182
  #
@@ -2426,7 +2449,7 @@ module Aws::RDS
2426
2449
  #
2427
2450
  # Constraints:
2428
2451
  #
2429
- # * Must contain from 1 to 63 alphanumeric characters or hyphens
2452
+ # * Must contain from 1 to 63 letters, numbers, or hyphens
2430
2453
  #
2431
2454
  # * First character must be a letter
2432
2455
  #
@@ -2482,8 +2505,8 @@ module Aws::RDS
2482
2505
  # @option options [String] :db_subnet_group_name
2483
2506
  # The DB subnet group name to use for the new instance.
2484
2507
  #
2485
- # Constraints: Must contain no more than 255 alphanumeric characters,
2486
- # periods, underscores, spaces, or hyphens. Must not be default.
2508
+ # Constraints: If supplied, must match the name of an existing
2509
+ # DBSubnetGroup.
2487
2510
  #
2488
2511
  # Example: `mySubnetgroup`
2489
2512
  # @option options [Boolean] :multi_az
@@ -2534,9 +2557,31 @@ module Aws::RDS
2534
2557
  #
2535
2558
  # Constraint: Must be compatible with the engine of the source
2536
2559
  #
2537
- # Valid Values: `MySQL` \| `mariadb` \| `oracle-se1` \| `oracle-se` \|
2538
- # `oracle-ee` \| `sqlserver-ee` \| `sqlserver-se` \| `sqlserver-ex` \|
2539
- # `sqlserver-web` \| `postgres` \| `aurora`
2560
+ # Valid Values:
2561
+ #
2562
+ # * `aurora`
2563
+ #
2564
+ # * `mariadb`
2565
+ #
2566
+ # * `mysql`
2567
+ #
2568
+ # * `oracle-ee`
2569
+ #
2570
+ # * `oracle-se2`
2571
+ #
2572
+ # * `oracle-se1`
2573
+ #
2574
+ # * `oracle-se`
2575
+ #
2576
+ # * `postgres`
2577
+ #
2578
+ # * `sqlserver-ee`
2579
+ #
2580
+ # * `sqlserver-se`
2581
+ #
2582
+ # * `sqlserver-ex`
2583
+ #
2584
+ # * `sqlserver-web`
2540
2585
  # @option options [Integer] :iops
2541
2586
  # The amount of Provisioned IOPS (input/output operations per second) to
2542
2587
  # be initially allocated for the DB instance.
@@ -2921,11 +2966,7 @@ module Aws::RDS
2921
2966
  #
2922
2967
  # Constraints:
2923
2968
  #
2924
- # * Must be 1 to 255 alphanumeric characters.
2925
- #
2926
- # * First character must be a letter.
2927
- #
2928
- # * Cannot end with a hyphen or contain two consecutive hyphens.
2969
+ # * If supplied, must match the identifier of an existing DBSnapshot.
2929
2970
  #
2930
2971
  # * If this identifier is for an automated snapshot, the `SnapshotType`
2931
2972
  # parameter must also be specified.