All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.rds.model.CreateDBInstanceRequest Maven / Gradle / Ivy

/*
 * Copyright 2013-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.rds.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateDBInstanceRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The meaning of this parameter differs according to the database engine you use. *

*

* Type: String *

*

* MySQL *

*

* The name of the database to create when the DB instance is created. If this parameter is not specified, no * database is created in the DB instance. *

*

* Constraints: *

*
    *
  • *

    * Must contain 1 to 64 letters or numbers. *

    *
  • *
  • *

    * Cannot be a word reserved by the specified database engine *

    *
  • *
*

* MariaDB *

*

* The name of the database to create when the DB instance is created. If this parameter is not specified, no * database is created in the DB instance. *

*

* Constraints: *

*
    *
  • *

    * Must contain 1 to 64 letters or numbers. *

    *
  • *
  • *

    * Cannot be a word reserved by the specified database engine *

    *
  • *
*

* PostgreSQL *

*

* The name of the database to create when the DB instance is created. If this parameter is not specified, the * default "postgres" database is created in the DB instance. *

*

* Constraints: *

*
    *
  • *

    * Must contain 1 to 63 letters, numbers, or underscores. *

    *
  • *
  • *

    * Must begin with a letter or an underscore. Subsequent characters can be letters, underscores, or digits (0-9). *

    *
  • *
  • *

    * Cannot be a word reserved by the specified database engine *

    *
  • *
*

* Oracle *

*

* The Oracle System ID (SID) of the created DB instance. If you specify null, the default value * ORCL is used. You can't specify the string NULL, or any other reserved word, for DBName * . *

*

* Default: ORCL *

*

* Constraints: *

*
    *
  • *

    * Cannot be longer than 8 characters *

    *
  • *
*

* SQL Server *

*

* Not applicable. Must be null. *

*

* Amazon Aurora *

*

* The name of the database to create when the primary instance of the DB cluster is created. If this parameter is * not specified, no database is created in the DB instance. *

*

* Constraints: *

*
    *
  • *

    * Must contain 1 to 64 letters or numbers. *

    *
  • *
  • *

    * Cannot be a word reserved by the specified database engine *

    *
  • *
*/ private String dBName; /** *

* The DB instance identifier. This parameter is stored as a lowercase string. *

*

* Constraints: *

*
    *
  • *

    * Must contain from 1 to 63 letters, numbers, or hyphens. *

    *
  • *
  • *

    * First character must be a letter. *

    *
  • *
  • *

    * Cannot end with a hyphen or contain two consecutive hyphens. *

    *
  • *
*

* Example: mydbinstance *

*/ private String dBInstanceIdentifier; /** *

* The amount of storage (in gibibytes) to allocate for the DB instance. *

*

* Type: Integer *

*

* Amazon Aurora *

*

* Not applicable. Aurora cluster volumes automatically grow as the amount of data in your database increases, * though you are only charged for the space that you use in an Aurora cluster volume. *

*

* MySQL *

*

* Constraints to the amount of storage for each storage type are the following: *

*
    *
  • *

    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

    *
  • *
  • *

    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

    *
  • *
  • *

    * Magnetic storage (standard): Must be an integer from 5 to 3072. *

    *
  • *
*

* MariaDB *

*

* Constraints to the amount of storage for each storage type are the following: *

*
    *
  • *

    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

    *
  • *
  • *

    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

    *
  • *
  • *

    * Magnetic storage (standard): Must be an integer from 5 to 3072. *

    *
  • *
*

* PostgreSQL *

*

* Constraints to the amount of storage for each storage type are the following: *

*
    *
  • *

    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

    *
  • *
  • *

    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

    *
  • *
  • *

    * Magnetic storage (standard): Must be an integer from 5 to 3072. *

    *
  • *
*

* Oracle *

*

* Constraints to the amount of storage for each storage type are the following: *

*
    *
  • *

    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

    *
  • *
  • *

    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

    *
  • *
  • *

    * Magnetic storage (standard): Must be an integer from 10 to 3072. *

    *
  • *
*

* SQL Server *

*

* Constraints to the amount of storage for each storage type are the following: *

*
    *
  • *

    * General Purpose (SSD) storage (gp2): *

    *
      *
    • *

      * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

      *
    • *
    • *

      * Web and Express editions: Must be an integer from 20 to 16384. *

      *
    • *
    *
  • *
  • *

    * Provisioned IOPS storage (io1): *

    *
      *
    • *

      * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

      *
    • *
    • *

      * Web and Express editions: Must be an integer from 100 to 16384. *

      *
    • *
    *
  • *
  • *

    * Magnetic storage (standard): *

    *
      *
    • *

      * Enterprise and Standard editions: Must be an integer from 200 to 1024. *

      *
    • *
    • *

      * Web and Express editions: Must be an integer from 20 to 1024. *

      *
    • *
    *
  • *
*/ private Integer allocatedStorage; /** *

* The compute and memory capacity of the DB instance, for example, db.m4.large. Not all DB instance * classes are available in all AWS Regions, or for all database engines. For the full list of DB instance classes, * and availability for your engine, see DB Instance Class * in the Amazon RDS User Guide. *

*/ private String dBInstanceClass; /** *

* The name of the database engine to be used for this instance. *

*

* Not every database engine is available for every AWS Region. *

*

* Valid Values: *

*
    *
  • *

    * aurora *

    *
  • *
  • *

    * aurora-postgresql *

    *
  • *
  • *

    * mariadb *

    *
  • *
  • *

    * mysql *

    *
  • *
  • *

    * oracle-ee *

    *
  • *
  • *

    * oracle-se2 *

    *
  • *
  • *

    * oracle-se1 *

    *
  • *
  • *

    * oracle-se *

    *
  • *
  • *

    * postgres *

    *
  • *
  • *

    * sqlserver-ee *

    *
  • *
  • *

    * sqlserver-se *

    *
  • *
  • *

    * sqlserver-ex *

    *
  • *
  • *

    * sqlserver-web *

    *
  • *
*/ private String engine; /** *

* The name for the master user. *

*

* Amazon Aurora *

*

* Not applicable. The name for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

*

* MariaDB *

*

* Constraints: *

*
    *
  • *

    * Required for MariaDB. *

    *
  • *
  • *

    * Must be 1 to 16 letters or numbers. *

    *
  • *
  • *

    * Cannot be a reserved word for the chosen database engine. *

    *
  • *
*

* Microsoft SQL Server *

*

* Constraints: *

*
    *
  • *

    * Required for SQL Server. *

    *
  • *
  • *

    * Must be 1 to 128 letters or numbers. *

    *
  • *
  • *

    * The first character must be a letter. *

    *
  • *
  • *

    * Cannot be a reserved word for the chosen database engine. *

    *
  • *
*

* MySQL *

*

* Constraints: *

*
    *
  • *

    * Required for MySQL. *

    *
  • *
  • *

    * Must be 1 to 16 letters or numbers. *

    *
  • *
  • *

    * First character must be a letter. *

    *
  • *
  • *

    * Cannot be a reserved word for the chosen database engine. *

    *
  • *
*

* Oracle *

*

* Constraints: *

*
    *
  • *

    * Required for Oracle. *

    *
  • *
  • *

    * Must be 1 to 30 letters or numbers. *

    *
  • *
  • *

    * First character must be a letter. *

    *
  • *
  • *

    * Cannot be a reserved word for the chosen database engine. *

    *
  • *
*

* PostgreSQL *

*

* Constraints: *

*
    *
  • *

    * Required for PostgreSQL. *

    *
  • *
  • *

    * Must be 1 to 63 letters or numbers. *

    *
  • *
  • *

    * First character must be a letter. *

    *
  • *
  • *

    * Cannot be a reserved word for the chosen database engine. *

    *
  • *
*/ private String masterUsername; /** *

* The password for the master user. The password can include any printable ASCII character except "/", """, or "@". *

*

* Amazon Aurora *

*

* Not applicable. The password for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

*

* MariaDB *

*

* Constraints: Must contain from 8 to 41 characters. *

*

* Microsoft SQL Server *

*

* Constraints: Must contain from 8 to 128 characters. *

*

* MySQL *

*

* Constraints: Must contain from 8 to 41 characters. *

*

* Oracle *

*

* Constraints: Must contain from 8 to 30 characters. *

*

* PostgreSQL *

*

* Constraints: Must contain from 8 to 128 characters. *

*/ private String masterUserPassword; /** *

* A list of DB security groups to associate with this DB instance. *

*

* Default: The default DB security group for the database engine. *

*/ private com.amazonaws.internal.SdkInternalList dBSecurityGroups; /** *

* A list of EC2 VPC security groups to associate with this DB instance. *

*

* Amazon Aurora *

*

* Not applicable. The associated list of EC2 VPC security groups is managed by the DB cluster. For more * information, see CreateDBCluster. *

*

* Default: The default EC2 VPC security group for the DB subnet group's VPC. *

*/ private com.amazonaws.internal.SdkInternalList vpcSecurityGroupIds; /** *

* The EC2 Availability Zone that the DB instance is created in. For information on AWS Regions and Availability * Zones, see Regions * and Availability Zones. *

*

* Default: A random, system-chosen Availability Zone in the endpoint's AWS Region. *

*

* Example: us-east-1d *

*

* Constraint: The AvailabilityZone parameter can't be specified if the MultiAZ parameter is set to * true. The specified Availability Zone must be in the same AWS Region as the current endpoint. *

*/ private String availabilityZone; /** *

* A DB subnet group to associate with this DB instance. *

*

* If there is no DB subnet group, then it is a non-VPC DB instance. *

*/ private String dBSubnetGroupName; /** *

* The time range each week during which system maintenance can occur, in Universal Coordinated Time (UTC). For more * information, see Amazon RDS Maintenance Window. *

*

* Format: ddd:hh24:mi-ddd:hh24:mi *

*

* The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring * on a random day of the week. *

*

* Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. *

*

* Constraints: Minimum 30-minute window. *

*/ private String preferredMaintenanceWindow; /** *

* The name of the DB parameter group to associate with this DB instance. If this argument is omitted, the default * DBParameterGroup for the specified engine is used. *

*

* Constraints: *

*
    *
  • *

    * Must be 1 to 255 letters, numbers, or hyphens. *

    *
  • *
  • *

    * First character must be a letter *

    *
  • *
  • *

    * Cannot end with a hyphen or contain two consecutive hyphens *

    *
  • *
*/ private String dBParameterGroupName; /** *

* The number of days for which automated backups are retained. Setting this parameter to a positive number enables * backups. Setting this parameter to 0 disables automated backups. *

*

* Amazon Aurora *

*

* Not applicable. The retention period for automated backups is managed by the DB cluster. For more information, * see CreateDBCluster. *

*

* Default: 1 *

*

* Constraints: *

*
    *
  • *

    * Must be a value from 0 to 35 *

    *
  • *
  • *

    * Cannot be set to 0 if the DB instance is a source to Read Replicas *

    *
  • *
*/ private Integer backupRetentionPeriod; /** *

* The daily time range during which automated backups are created if automated backups are enabled, using the * BackupRetentionPeriod parameter. For more information, see The Backup Window. *

*

* Amazon Aurora *

*

* Not applicable. The daily time range for creating automated backups is managed by the DB cluster. For more * information, see CreateDBCluster. *

*

* The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region. To see the * time blocks available, see Adjusting the Preferred DB Instance Maintenance Window. *

*

* Constraints: *

*
    *
  • *

    * Must be in the format hh24:mi-hh24:mi. *

    *
  • *
  • *

    * Must be in Universal Coordinated Time (UTC). *

    *
  • *
  • *

    * Must not conflict with the preferred maintenance window. *

    *
  • *
  • *

    * Must be at least 30 minutes. *

    *
  • *
*/ private String preferredBackupWindow; /** *

* The port number on which the database accepts connections. *

*

* MySQL *

*

* Default: 3306 *

*

* Valid Values: 1150-65535 *

*

* Type: Integer *

*

* MariaDB *

*

* Default: 3306 *

*

* Valid Values: 1150-65535 *

*

* Type: Integer *

*

* PostgreSQL *

*

* Default: 5432 *

*

* Valid Values: 1150-65535 *

*

* Type: Integer *

*

* Oracle *

*

* Default: 1521 *

*

* Valid Values: 1150-65535 *

*

* SQL Server *

*

* Default: 1433 *

*

* Valid Values: 1150-65535 except for 1434, 3389, 47001, * 49152, and 49152 through 49156. *

*

* Amazon Aurora *

*

* Default: 3306 *

*

* Valid Values: 1150-65535 *

*

* Type: Integer *

*/ private Integer port; /** *

* Specifies if the DB instance is a Multi-AZ deployment. You can't set the AvailabilityZone parameter if the * MultiAZ parameter is set to true. *

*/ private Boolean multiAZ; /** *

* The version number of the database engine to use. *

*

* The following are the database engines and major and minor versions that are available with Amazon RDS. Not every * database engine is available for every AWS Region. *

*

* Amazon Aurora *

*

* Not applicable. The version number of the database engine to be used by the DB instance is managed by the DB * cluster. For more information, see CreateDBCluster. *

*

* MariaDB *

*
    *
  • *

    * 10.2.11 (supported in all AWS Regions) *

    *
  • *
*

*

    *
  • *

    * 10.1.26 (supported in all AWS Regions) *

    *
  • *
  • *

    * 10.1.23 (supported in all AWS Regions) *

    *
  • *
  • *

    * 10.1.19 (supported in all AWS Regions) *

    *
  • *
  • *

    * 10.1.14 (supported in all AWS Regions except us-east-2) *

    *
  • *
*

*

    *
  • *

    * 10.0.32 (supported in all AWS Regions) *

    *
  • *
  • *

    * 10.0.31 (supported in all AWS Regions) *

    *
  • *
  • *

    * 10.0.28 (supported in all AWS Regions) *

    *
  • *
  • *

    * 10.0.24 (supported in all AWS Regions) *

    *
  • *
  • *

    * 10.0.17 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

    *
  • *
*

* Microsoft SQL Server 2017 *

*
    *
  • *

    * 14.00.1000.169.v1 (supported for all editions, and all AWS Regions) *

    *
  • *
*

* Microsoft SQL Server 2016 *

*
    *
  • *

    * 13.00.4451.0.v1 (supported for all editions, and all AWS Regions) *

    *
  • *
  • *

    * 13.00.4422.0.v1 (supported for all editions, and all AWS Regions) *

    *
  • *
  • *

    * 13.00.2164.0.v1 (supported for all editions, and all AWS Regions) *

    *
  • *
*

* Microsoft SQL Server 2014 *

*
    *
  • *

    * 12.00.5546.0.v1 (supported for all editions, and all AWS Regions) *

    *
  • *
  • *

    * 12.00.5000.0.v1 (supported for all editions, and all AWS Regions) *

    *
  • *
  • *

    * 12.00.4422.0.v1 (supported for all editions except Enterprise Edition, and all AWS Regions except * ca-central-1 and eu-west-2) *

    *
  • *
*

* Microsoft SQL Server 2012 *

*
    *
  • *

    * 11.00.6594.0.v1 (supported for all editions, and all AWS Regions) *

    *
  • *
  • *

    * 11.00.6020.0.v1 (supported for all editions, and all AWS Regions) *

    *
  • *
  • *

    * 11.00.5058.0.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, and * eu-west-2) *

    *
  • *
  • *

    * 11.00.2100.60.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, * and eu-west-2) *

    *
  • *
*

* Microsoft SQL Server 2008 R2 *

*
    *
  • *

    * 10.50.6529.0.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, and * eu-west-2) *

    *
  • *
  • *

    * 10.50.6000.34.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, * and eu-west-2) *

    *
  • *
  • *

    * 10.50.2789.0.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, and * eu-west-2) *

    *
  • *
*

* MySQL *

*
    *
  • *

    * 5.7.19 (supported in all AWS regions) *

    *
  • *
  • *

    * 5.7.17 (supported in all AWS regions) *

    *
  • *
  • *

    * 5.7.16 (supported in all AWS regions) *

    *
  • *
*

*

    *
  • *

    * 5.6.37 (supported in all AWS Regions) *

    *
  • *
  • *

    * 5.6.35 (supported in all AWS Regions) *

    *
  • *
  • *

    * 5.6.34 (supported in all AWS Regions) *

    *
  • *
  • *

    * 5.6.29 (supported in all AWS Regions) *

    *
  • *
  • *

    * 5.6.27 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

    *
  • *
*

*

    *
  • *

    * 5.5.57 (supported in all AWS Regions) *

    *
  • *
  • *

    * 5.5.54 (supported in all AWS Regions) *

    *
  • *
  • *

    * 5.5.53 (supported in all AWS Regions) *

    *
  • *
  • *

    * 5.5.46 (supported in all AWS Regions) *

    *
  • *
*

* Oracle 12c *

*
    *
  • *

    * 12.1.0.2.v9 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

    *
  • *
  • *

    * 12.1.0.2.v8 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

    *
  • *
  • *

    * 12.1.0.2.v7 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

    *
  • *
  • *

    * 12.1.0.2.v6 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

    *
  • *
  • *

    * 12.1.0.2.v5 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

    *
  • *
  • *

    * 12.1.0.2.v4 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

    *
  • *
  • *

    * 12.1.0.2.v3 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

    *
  • *
  • *

    * 12.1.0.2.v2 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

    *
  • *
  • *

    * 12.1.0.2.v1 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

    *
  • *
*

* Oracle 11g *

*
    *
  • *

    * 11.2.0.4.v13 (supported for EE, SE1, and SE, in all AWS regions) *

    *
  • *
  • *

    * 11.2.0.4.v12 (supported for EE, SE1, and SE, in all AWS regions) *

    *
  • *
  • *

    * 11.2.0.4.v11 (supported for EE, SE1, and SE, in all AWS regions) *

    *
  • *
  • *

    * 11.2.0.4.v10 (supported for EE, SE1, and SE, in all AWS regions) *

    *
  • *
  • *

    * 11.2.0.4.v9 (supported for EE, SE1, and SE, in all AWS regions) *

    *
  • *
  • *

    * 11.2.0.4.v8 (supported for EE, SE1, and SE, in all AWS regions) *

    *
  • *
  • *

    * 11.2.0.4.v7 (supported for EE, SE1, and SE, in all AWS regions) *

    *
  • *
  • *

    * 11.2.0.4.v6 (supported for EE, SE1, and SE, in all AWS regions) *

    *
  • *
  • *

    * 11.2.0.4.v5 (supported for EE, SE1, and SE, in all AWS regions) *

    *
  • *
  • *

    * 11.2.0.4.v4 (supported for EE, SE1, and SE, in all AWS regions) *

    *
  • *
  • *

    * 11.2.0.4.v3 (supported for EE, SE1, and SE, in all AWS regions) *

    *
  • *
  • *

    * 11.2.0.4.v1 (supported for EE, SE1, and SE, in all AWS regions) *

    *
  • *
*

* PostgreSQL *

*
    *
  • *

    * Version 9.6.x: 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1 *

    *
  • *
  • *

    * Version 9.5.x: 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2 *

    *
  • *
  • *

    * Version 9.4.x: 9.4.14 | 9.4.12 | 9.4.11 | 9.4.9 | 9.4.7 *

    *
  • *
  • *

    * Version 9.3.x: 9.3.19 | 9.3.17 | 9.3.16 | 9.3.14 | 9.3.12 *

    *
  • *
*/ private String engineVersion; /** *

* Indicates that minor engine upgrades are applied automatically to the DB instance during the maintenance window. *

*

* Default: true *

*/ private Boolean autoMinorVersionUpgrade; /** *

* License model information for this DB instance. *

*

* Valid values: license-included | bring-your-own-license | * general-public-license *

*/ private String licenseModel; /** *

* The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB * instance. For information about valid Iops values, see see Amazon RDS Provisioned * IOPS Storage to Improve Performance. *

*

* Constraints: Must be a multiple between 1 and 50 of the storage amount for the DB instance. Must also be an * integer multiple of 1000. For example, if the size of your DB instance is 500 GiB, then your Iops * value can be 2000, 3000, 4000, or 5000. *

*/ private Integer iops; /** *

* Indicates that the DB instance should be associated with the specified option group. *

*

* Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option * group, and that option group can't be removed from a DB instance once it is associated with a DB instance *

*/ private String optionGroupName; /** *

* For supported engines, indicates that the DB instance should be associated with the specified CharacterSet. *

*

* Amazon Aurora *

*

* Not applicable. The character set is managed by the DB cluster. For more information, see CreateDBCluster. *

*/ private String characterSetName; /** *

* Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing instance * with a publicly resolvable DNS name, which resolves to a public IP address. A value of false specifies an * internal instance with a DNS name that resolves to a private IP address. *

*

* Default: The default behavior varies depending on whether a VPC has been requested or not. The following list * shows the default behavior in each case. *

*
    *
  • *

    * Default VPC: true *

    *
  • *
  • *

    * VPC: false *

    *
  • *
*

* If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been * set, the DB instance is publicly accessible. If a specific DB subnet group has been specified as part of the * request and the PubliclyAccessible value has not been set, the DB instance is private. *

*/ private Boolean publiclyAccessible; private com.amazonaws.internal.SdkInternalList tags; /** *

* The identifier of the DB cluster that the instance will belong to. *

*

* For information on creating a DB cluster, see CreateDBCluster. *

*

* Type: String *

*/ private String dBClusterIdentifier; /** *

* Specifies the storage type to be associated with the DB instance. *

*

* Valid values: standard | gp2 | io1 *

*

* If you specify io1, you must also include a value for the Iops parameter. *

*

* Default: io1 if the Iops parameter is specified, otherwise standard *

*/ private String storageType; /** *

* The ARN from the key store with which to associate the instance for TDE encryption. *

*/ private String tdeCredentialArn; /** *

* The password for the given ARN from the key store in order to access the device. *

*/ private String tdeCredentialPassword; /** *

* Specifies whether the DB instance is encrypted. *

*

* Amazon Aurora *

*

* Not applicable. The encryption for DB instances is managed by the DB cluster. For more information, see * CreateDBCluster. *

*

* Default: false *

*/ private Boolean storageEncrypted; /** *

* The AWS KMS key identifier for an encrypted DB instance. *

*

* The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a DB * instance with the same AWS account that owns the KMS encryption key used to encrypt the new DB instance, then you * can use the KMS key alias instead of the ARN for the KM encryption key. *

*

* Amazon Aurora *

*

* Not applicable. The KMS key identifier is managed by the DB cluster. For more information, see * CreateDBCluster. *

*

* If the StorageEncrypted parameter is true, and you do not specify a value for the * KmsKeyId parameter, then Amazon RDS will use your default encryption key. AWS KMS creates the * default encryption key for your AWS account. Your AWS account has a different default encryption key for each AWS * Region. *

*/ private String kmsKeyId; /** *

* Specify the Active Directory Domain to create the instance in. *

*/ private String domain; /** *

* True to copy all tags from the DB instance to snapshots of the DB instance, and otherwise false. The default is * false. *

*/ private Boolean copyTagsToSnapshot; /** *

* The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To * disable collecting Enhanced Monitoring metrics, specify 0. The default is 0. *

*

* If MonitoringRoleArn is specified, then you must also set MonitoringInterval to a value * other than 0. *

*

* Valid Values: 0, 1, 5, 10, 15, 30, 60 *

*/ private Integer monitoringInterval; /** *

* The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For * example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, go * to Setting Up and Enabling Enhanced Monitoring. *

*

* If MonitoringInterval is set to a value other than 0, then you must supply a * MonitoringRoleArn value. *

*/ private String monitoringRoleArn; /** *

* Specify the name of the IAM role to be used when making API calls to the Directory Service. *

*/ private String domainIAMRoleName; /** *

* A value that specifies the order in which an Aurora Replica is promoted to the primary instance after a failure * of the existing primary instance. For more information, see * Fault Tolerance for an Aurora DB Cluster. *

*

* Default: 1 *

*

* Valid Values: 0 - 15 *

*/ private Integer promotionTier; /** *

* The time zone of the DB instance. The time zone parameter is currently supported only by Microsoft SQL Server. *

*/ private String timezone; /** *

* True to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts, and otherwise * false. *

*

* You can enable IAM database authentication for the following database engines: *

*

* Amazon Aurora *

*

* Not applicable. Mapping AWS IAM accounts to database accounts is managed by the DB cluster. For more information, * see CreateDBCluster. *

*

* MySQL *

*
    *
  • *

    * For MySQL 5.6, minor version 5.6.34 or higher *

    *
  • *
  • *

    * For MySQL 5.7, minor version 5.7.16 or higher *

    *
  • *
*

* Default: false *

*/ private Boolean enableIAMDatabaseAuthentication; /** *

* True to enable Performance Insights for the DB instance, and otherwise false. *

*/ private Boolean enablePerformanceInsights; /** *

* The AWS KMS key identifier for encryption of Performance Insights data. The KMS key ID is the Amazon Resource * Name (ARN), KMS key identifier, or the KMS key alias for the KMS encryption key. *

*/ private String performanceInsightsKMSKeyId; /** *

* The list of log types that need to be enabled for exporting to CloudWatch Logs. *

*/ private com.amazonaws.internal.SdkInternalList enableCloudwatchLogsExports; /** * Default constructor for CreateDBInstanceRequest object. Callers should use the setter or fluent setter (with...) * methods to initialize the object after creating it. */ public CreateDBInstanceRequest() { } /** * Constructs a new CreateDBInstanceRequest object. Callers should use the setter or fluent setter (with...) methods * to initialize any additional object members. * * @param dBInstanceIdentifier * The DB instance identifier. This parameter is stored as a lowercase string.

*

* Constraints: *

*
    *
  • *

    * Must contain from 1 to 63 letters, numbers, or hyphens. *

    *
  • *
  • *

    * First character must be a letter. *

    *
  • *
  • *

    * Cannot end with a hyphen or contain two consecutive hyphens. *

    *
  • *
*

* Example: mydbinstance * @param allocatedStorage * The amount of storage (in gibibytes) to allocate for the DB instance. *

*

* Type: Integer *

*

* Amazon Aurora *

*

* Not applicable. Aurora cluster volumes automatically grow as the amount of data in your database * increases, though you are only charged for the space that you use in an Aurora cluster volume. *

*

* MySQL *

*

* Constraints to the amount of storage for each storage type are the following: *

*
    *
  • *

    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

    *
  • *
  • *

    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

    *
  • *
  • *

    * Magnetic storage (standard): Must be an integer from 5 to 3072. *

    *
  • *
*

* MariaDB *

*

* Constraints to the amount of storage for each storage type are the following: *

*
    *
  • *

    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

    *
  • *
  • *

    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

    *
  • *
  • *

    * Magnetic storage (standard): Must be an integer from 5 to 3072. *

    *
  • *
*

* PostgreSQL *

*

* Constraints to the amount of storage for each storage type are the following: *

*
    *
  • *

    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

    *
  • *
  • *

    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

    *
  • *
  • *

    * Magnetic storage (standard): Must be an integer from 5 to 3072. *

    *
  • *
*

* Oracle *

*

* Constraints to the amount of storage for each storage type are the following: *

*
    *
  • *

    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

    *
  • *
  • *

    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

    *
  • *
  • *

    * Magnetic storage (standard): Must be an integer from 10 to 3072. *

    *
  • *
*

* SQL Server *

*

* Constraints to the amount of storage for each storage type are the following: *

*
    *
  • *

    * General Purpose (SSD) storage (gp2): *

    *
      *
    • *

      * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

      *
    • *
    • *

      * Web and Express editions: Must be an integer from 20 to 16384. *

      *
    • *
    *
  • *
  • *

    * Provisioned IOPS storage (io1): *

    *
      *
    • *

      * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

      *
    • *
    • *

      * Web and Express editions: Must be an integer from 100 to 16384. *

      *
    • *
    *
  • *
  • *

    * Magnetic storage (standard): *

    *
      *
    • *

      * Enterprise and Standard editions: Must be an integer from 200 to 1024. *

      *
    • *
    • *

      * Web and Express editions: Must be an integer from 20 to 1024. *

      *
    • *
    *
  • * @param dBInstanceClass * The compute and memory capacity of the DB instance, for example, db.m4.large. Not all DB * instance classes are available in all AWS Regions, or for all database engines. For the full list of DB * instance classes, and availability for your engine, see DB Instance * Class in the Amazon RDS User Guide. * @param engine * The name of the database engine to be used for this instance.

    *

    * Not every database engine is available for every AWS Region. *

    *

    * Valid Values: *

    *
      *
    • *

      * aurora *

      *
    • *
    • *

      * aurora-postgresql *

      *
    • *
    • *

      * mariadb *

      *
    • *
    • *

      * mysql *

      *
    • *
    • *

      * oracle-ee *

      *
    • *
    • *

      * oracle-se2 *

      *
    • *
    • *

      * oracle-se1 *

      *
    • *
    • *

      * oracle-se *

      *
    • *
    • *

      * postgres *

      *
    • *
    • *

      * sqlserver-ee *

      *
    • *
    • *

      * sqlserver-se *

      *
    • *
    • *

      * sqlserver-ex *

      *
    • *
    • *

      * sqlserver-web *

      *
    • * @param masterUsername * The name for the master user.

      *

      * Amazon Aurora *

      *

      * Not applicable. The name for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

      *

      * MariaDB *

      *

      * Constraints: *

      *
        *
      • *

        * Required for MariaDB. *

        *
      • *
      • *

        * Must be 1 to 16 letters or numbers. *

        *
      • *
      • *

        * Cannot be a reserved word for the chosen database engine. *

        *
      • *
      *

      * Microsoft SQL Server *

      *

      * Constraints: *

      *
        *
      • *

        * Required for SQL Server. *

        *
      • *
      • *

        * Must be 1 to 128 letters or numbers. *

        *
      • *
      • *

        * The first character must be a letter. *

        *
      • *
      • *

        * Cannot be a reserved word for the chosen database engine. *

        *
      • *
      *

      * MySQL *

      *

      * Constraints: *

      *
        *
      • *

        * Required for MySQL. *

        *
      • *
      • *

        * Must be 1 to 16 letters or numbers. *

        *
      • *
      • *

        * First character must be a letter. *

        *
      • *
      • *

        * Cannot be a reserved word for the chosen database engine. *

        *
      • *
      *

      * Oracle *

      *

      * Constraints: *

      *
        *
      • *

        * Required for Oracle. *

        *
      • *
      • *

        * Must be 1 to 30 letters or numbers. *

        *
      • *
      • *

        * First character must be a letter. *

        *
      • *
      • *

        * Cannot be a reserved word for the chosen database engine. *

        *
      • *
      *

      * PostgreSQL *

      *

      * Constraints: *

      *
        *
      • *

        * Required for PostgreSQL. *

        *
      • *
      • *

        * Must be 1 to 63 letters or numbers. *

        *
      • *
      • *

        * First character must be a letter. *

        *
      • *
      • *

        * Cannot be a reserved word for the chosen database engine. *

        *
      • * @param masterUserPassword * The password for the master user. The password can include any printable ASCII character except "/", * """, or "@".

        *

        * Amazon Aurora *

        *

        * Not applicable. The password for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

        *

        * MariaDB *

        *

        * Constraints: Must contain from 8 to 41 characters. *

        *

        * Microsoft SQL Server *

        *

        * Constraints: Must contain from 8 to 128 characters. *

        *

        * MySQL *

        *

        * Constraints: Must contain from 8 to 41 characters. *

        *

        * Oracle *

        *

        * Constraints: Must contain from 8 to 30 characters. *

        *

        * PostgreSQL *

        *

        * Constraints: Must contain from 8 to 128 characters. */ public CreateDBInstanceRequest(String dBInstanceIdentifier, Integer allocatedStorage, String dBInstanceClass, String engine, String masterUsername, String masterUserPassword) { setDBInstanceIdentifier(dBInstanceIdentifier); setAllocatedStorage(allocatedStorage); setDBInstanceClass(dBInstanceClass); setEngine(engine); setMasterUsername(masterUsername); setMasterUserPassword(masterUserPassword); } /** *

        * The meaning of this parameter differs according to the database engine you use. *

        *

        * Type: String *

        *

        * MySQL *

        *

        * The name of the database to create when the DB instance is created. If this parameter is not specified, no * database is created in the DB instance. *

        *

        * Constraints: *

        *
          *
        • *

          * Must contain 1 to 64 letters or numbers. *

          *
        • *
        • *

          * Cannot be a word reserved by the specified database engine *

          *
        • *
        *

        * MariaDB *

        *

        * The name of the database to create when the DB instance is created. If this parameter is not specified, no * database is created in the DB instance. *

        *

        * Constraints: *

        *
          *
        • *

          * Must contain 1 to 64 letters or numbers. *

          *
        • *
        • *

          * Cannot be a word reserved by the specified database engine *

          *
        • *
        *

        * PostgreSQL *

        *

        * The name of the database to create when the DB instance is created. If this parameter is not specified, the * default "postgres" database is created in the DB instance. *

        *

        * Constraints: *

        *
          *
        • *

          * Must contain 1 to 63 letters, numbers, or underscores. *

          *
        • *
        • *

          * Must begin with a letter or an underscore. Subsequent characters can be letters, underscores, or digits (0-9). *

          *
        • *
        • *

          * Cannot be a word reserved by the specified database engine *

          *
        • *
        *

        * Oracle *

        *

        * The Oracle System ID (SID) of the created DB instance. If you specify null, the default value * ORCL is used. You can't specify the string NULL, or any other reserved word, for DBName * . *

        *

        * Default: ORCL *

        *

        * Constraints: *

        *
          *
        • *

          * Cannot be longer than 8 characters *

          *
        • *
        *

        * SQL Server *

        *

        * Not applicable. Must be null. *

        *

        * Amazon Aurora *

        *

        * The name of the database to create when the primary instance of the DB cluster is created. If this parameter is * not specified, no database is created in the DB instance. *

        *

        * Constraints: *

        *
          *
        • *

          * Must contain 1 to 64 letters or numbers. *

          *
        • *
        • *

          * Cannot be a word reserved by the specified database engine *

          *
        • *
        * * @param dBName * The meaning of this parameter differs according to the database engine you use.

        *

        * Type: String *

        *

        * MySQL *

        *

        * The name of the database to create when the DB instance is created. If this parameter is not specified, no * database is created in the DB instance. *

        *

        * Constraints: *

        *
          *
        • *

          * Must contain 1 to 64 letters or numbers. *

          *
        • *
        • *

          * Cannot be a word reserved by the specified database engine *

          *
        • *
        *

        * MariaDB *

        *

        * The name of the database to create when the DB instance is created. If this parameter is not specified, no * database is created in the DB instance. *

        *

        * Constraints: *

        *
          *
        • *

          * Must contain 1 to 64 letters or numbers. *

          *
        • *
        • *

          * Cannot be a word reserved by the specified database engine *

          *
        • *
        *

        * PostgreSQL *

        *

        * The name of the database to create when the DB instance is created. If this parameter is not specified, * the default "postgres" database is created in the DB instance. *

        *

        * Constraints: *

        *
          *
        • *

          * Must contain 1 to 63 letters, numbers, or underscores. *

          *
        • *
        • *

          * Must begin with a letter or an underscore. Subsequent characters can be letters, underscores, or digits * (0-9). *

          *
        • *
        • *

          * Cannot be a word reserved by the specified database engine *

          *
        • *
        *

        * Oracle *

        *

        * The Oracle System ID (SID) of the created DB instance. If you specify null, the default value * ORCL is used. You can't specify the string NULL, or any other reserved word, for * DBName. *

        *

        * Default: ORCL *

        *

        * Constraints: *

        *
          *
        • *

          * Cannot be longer than 8 characters *

          *
        • *
        *

        * SQL Server *

        *

        * Not applicable. Must be null. *

        *

        * Amazon Aurora *

        *

        * The name of the database to create when the primary instance of the DB cluster is created. If this * parameter is not specified, no database is created in the DB instance. *

        *

        * Constraints: *

        *
          *
        • *

          * Must contain 1 to 64 letters or numbers. *

          *
        • *
        • *

          * Cannot be a word reserved by the specified database engine *

          *
        • */ public void setDBName(String dBName) { this.dBName = dBName; } /** *

          * The meaning of this parameter differs according to the database engine you use. *

          *

          * Type: String *

          *

          * MySQL *

          *

          * The name of the database to create when the DB instance is created. If this parameter is not specified, no * database is created in the DB instance. *

          *

          * Constraints: *

          *
            *
          • *

            * Must contain 1 to 64 letters or numbers. *

            *
          • *
          • *

            * Cannot be a word reserved by the specified database engine *

            *
          • *
          *

          * MariaDB *

          *

          * The name of the database to create when the DB instance is created. If this parameter is not specified, no * database is created in the DB instance. *

          *

          * Constraints: *

          *
            *
          • *

            * Must contain 1 to 64 letters or numbers. *

            *
          • *
          • *

            * Cannot be a word reserved by the specified database engine *

            *
          • *
          *

          * PostgreSQL *

          *

          * The name of the database to create when the DB instance is created. If this parameter is not specified, the * default "postgres" database is created in the DB instance. *

          *

          * Constraints: *

          *
            *
          • *

            * Must contain 1 to 63 letters, numbers, or underscores. *

            *
          • *
          • *

            * Must begin with a letter or an underscore. Subsequent characters can be letters, underscores, or digits (0-9). *

            *
          • *
          • *

            * Cannot be a word reserved by the specified database engine *

            *
          • *
          *

          * Oracle *

          *

          * The Oracle System ID (SID) of the created DB instance. If you specify null, the default value * ORCL is used. You can't specify the string NULL, or any other reserved word, for DBName * . *

          *

          * Default: ORCL *

          *

          * Constraints: *

          *
            *
          • *

            * Cannot be longer than 8 characters *

            *
          • *
          *

          * SQL Server *

          *

          * Not applicable. Must be null. *

          *

          * Amazon Aurora *

          *

          * The name of the database to create when the primary instance of the DB cluster is created. If this parameter is * not specified, no database is created in the DB instance. *

          *

          * Constraints: *

          *
            *
          • *

            * Must contain 1 to 64 letters or numbers. *

            *
          • *
          • *

            * Cannot be a word reserved by the specified database engine *

            *
          • *
          * * @return The meaning of this parameter differs according to the database engine you use.

          *

          * Type: String *

          *

          * MySQL *

          *

          * The name of the database to create when the DB instance is created. If this parameter is not specified, * no database is created in the DB instance. *

          *

          * Constraints: *

          *
            *
          • *

            * Must contain 1 to 64 letters or numbers. *

            *
          • *
          • *

            * Cannot be a word reserved by the specified database engine *

            *
          • *
          *

          * MariaDB *

          *

          * The name of the database to create when the DB instance is created. If this parameter is not specified, * no database is created in the DB instance. *

          *

          * Constraints: *

          *
            *
          • *

            * Must contain 1 to 64 letters or numbers. *

            *
          • *
          • *

            * Cannot be a word reserved by the specified database engine *

            *
          • *
          *

          * PostgreSQL *

          *

          * The name of the database to create when the DB instance is created. If this parameter is not specified, * the default "postgres" database is created in the DB instance. *

          *

          * Constraints: *

          *
            *
          • *

            * Must contain 1 to 63 letters, numbers, or underscores. *

            *
          • *
          • *

            * Must begin with a letter or an underscore. Subsequent characters can be letters, underscores, or digits * (0-9). *

            *
          • *
          • *

            * Cannot be a word reserved by the specified database engine *

            *
          • *
          *

          * Oracle *

          *

          * The Oracle System ID (SID) of the created DB instance. If you specify null, the default * value ORCL is used. You can't specify the string NULL, or any other reserved word, for * DBName. *

          *

          * Default: ORCL *

          *

          * Constraints: *

          *
            *
          • *

            * Cannot be longer than 8 characters *

            *
          • *
          *

          * SQL Server *

          *

          * Not applicable. Must be null. *

          *

          * Amazon Aurora *

          *

          * The name of the database to create when the primary instance of the DB cluster is created. If this * parameter is not specified, no database is created in the DB instance. *

          *

          * Constraints: *

          *
            *
          • *

            * Must contain 1 to 64 letters or numbers. *

            *
          • *
          • *

            * Cannot be a word reserved by the specified database engine *

            *
          • */ public String getDBName() { return this.dBName; } /** *

            * The meaning of this parameter differs according to the database engine you use. *

            *

            * Type: String *

            *

            * MySQL *

            *

            * The name of the database to create when the DB instance is created. If this parameter is not specified, no * database is created in the DB instance. *

            *

            * Constraints: *

            *
              *
            • *

              * Must contain 1 to 64 letters or numbers. *

              *
            • *
            • *

              * Cannot be a word reserved by the specified database engine *

              *
            • *
            *

            * MariaDB *

            *

            * The name of the database to create when the DB instance is created. If this parameter is not specified, no * database is created in the DB instance. *

            *

            * Constraints: *

            *
              *
            • *

              * Must contain 1 to 64 letters or numbers. *

              *
            • *
            • *

              * Cannot be a word reserved by the specified database engine *

              *
            • *
            *

            * PostgreSQL *

            *

            * The name of the database to create when the DB instance is created. If this parameter is not specified, the * default "postgres" database is created in the DB instance. *

            *

            * Constraints: *

            *
              *
            • *

              * Must contain 1 to 63 letters, numbers, or underscores. *

              *
            • *
            • *

              * Must begin with a letter or an underscore. Subsequent characters can be letters, underscores, or digits (0-9). *

              *
            • *
            • *

              * Cannot be a word reserved by the specified database engine *

              *
            • *
            *

            * Oracle *

            *

            * The Oracle System ID (SID) of the created DB instance. If you specify null, the default value * ORCL is used. You can't specify the string NULL, or any other reserved word, for DBName * . *

            *

            * Default: ORCL *

            *

            * Constraints: *

            *
              *
            • *

              * Cannot be longer than 8 characters *

              *
            • *
            *

            * SQL Server *

            *

            * Not applicable. Must be null. *

            *

            * Amazon Aurora *

            *

            * The name of the database to create when the primary instance of the DB cluster is created. If this parameter is * not specified, no database is created in the DB instance. *

            *

            * Constraints: *

            *
              *
            • *

              * Must contain 1 to 64 letters or numbers. *

              *
            • *
            • *

              * Cannot be a word reserved by the specified database engine *

              *
            • *
            * * @param dBName * The meaning of this parameter differs according to the database engine you use.

            *

            * Type: String *

            *

            * MySQL *

            *

            * The name of the database to create when the DB instance is created. If this parameter is not specified, no * database is created in the DB instance. *

            *

            * Constraints: *

            *
              *
            • *

              * Must contain 1 to 64 letters or numbers. *

              *
            • *
            • *

              * Cannot be a word reserved by the specified database engine *

              *
            • *
            *

            * MariaDB *

            *

            * The name of the database to create when the DB instance is created. If this parameter is not specified, no * database is created in the DB instance. *

            *

            * Constraints: *

            *
              *
            • *

              * Must contain 1 to 64 letters or numbers. *

              *
            • *
            • *

              * Cannot be a word reserved by the specified database engine *

              *
            • *
            *

            * PostgreSQL *

            *

            * The name of the database to create when the DB instance is created. If this parameter is not specified, * the default "postgres" database is created in the DB instance. *

            *

            * Constraints: *

            *
              *
            • *

              * Must contain 1 to 63 letters, numbers, or underscores. *

              *
            • *
            • *

              * Must begin with a letter or an underscore. Subsequent characters can be letters, underscores, or digits * (0-9). *

              *
            • *
            • *

              * Cannot be a word reserved by the specified database engine *

              *
            • *
            *

            * Oracle *

            *

            * The Oracle System ID (SID) of the created DB instance. If you specify null, the default value * ORCL is used. You can't specify the string NULL, or any other reserved word, for * DBName. *

            *

            * Default: ORCL *

            *

            * Constraints: *

            *
              *
            • *

              * Cannot be longer than 8 characters *

              *
            • *
            *

            * SQL Server *

            *

            * Not applicable. Must be null. *

            *

            * Amazon Aurora *

            *

            * The name of the database to create when the primary instance of the DB cluster is created. If this * parameter is not specified, no database is created in the DB instance. *

            *

            * Constraints: *

            *
              *
            • *

              * Must contain 1 to 64 letters or numbers. *

              *
            • *
            • *

              * Cannot be a word reserved by the specified database engine *

              *
            • * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withDBName(String dBName) { setDBName(dBName); return this; } /** *

              * The DB instance identifier. This parameter is stored as a lowercase string. *

              *

              * Constraints: *

              *
                *
              • *

                * Must contain from 1 to 63 letters, numbers, or hyphens. *

                *
              • *
              • *

                * First character must be a letter. *

                *
              • *
              • *

                * Cannot end with a hyphen or contain two consecutive hyphens. *

                *
              • *
              *

              * Example: mydbinstance *

              * * @param dBInstanceIdentifier * The DB instance identifier. This parameter is stored as a lowercase string.

              *

              * Constraints: *

              *
                *
              • *

                * Must contain from 1 to 63 letters, numbers, or hyphens. *

                *
              • *
              • *

                * First character must be a letter. *

                *
              • *
              • *

                * Cannot end with a hyphen or contain two consecutive hyphens. *

                *
              • *
              *

              * Example: mydbinstance */ public void setDBInstanceIdentifier(String dBInstanceIdentifier) { this.dBInstanceIdentifier = dBInstanceIdentifier; } /** *

              * The DB instance identifier. This parameter is stored as a lowercase string. *

              *

              * Constraints: *

              *
                *
              • *

                * Must contain from 1 to 63 letters, numbers, or hyphens. *

                *
              • *
              • *

                * First character must be a letter. *

                *
              • *
              • *

                * Cannot end with a hyphen or contain two consecutive hyphens. *

                *
              • *
              *

              * Example: mydbinstance *

              * * @return The DB instance identifier. This parameter is stored as a lowercase string.

              *

              * Constraints: *

              *
                *
              • *

                * Must contain from 1 to 63 letters, numbers, or hyphens. *

                *
              • *
              • *

                * First character must be a letter. *

                *
              • *
              • *

                * Cannot end with a hyphen or contain two consecutive hyphens. *

                *
              • *
              *

              * Example: mydbinstance */ public String getDBInstanceIdentifier() { return this.dBInstanceIdentifier; } /** *

              * The DB instance identifier. This parameter is stored as a lowercase string. *

              *

              * Constraints: *

              *
                *
              • *

                * Must contain from 1 to 63 letters, numbers, or hyphens. *

                *
              • *
              • *

                * First character must be a letter. *

                *
              • *
              • *

                * Cannot end with a hyphen or contain two consecutive hyphens. *

                *
              • *
              *

              * Example: mydbinstance *

              * * @param dBInstanceIdentifier * The DB instance identifier. This parameter is stored as a lowercase string.

              *

              * Constraints: *

              *
                *
              • *

                * Must contain from 1 to 63 letters, numbers, or hyphens. *

                *
              • *
              • *

                * First character must be a letter. *

                *
              • *
              • *

                * Cannot end with a hyphen or contain two consecutive hyphens. *

                *
              • *
              *

              * Example: mydbinstance * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withDBInstanceIdentifier(String dBInstanceIdentifier) { setDBInstanceIdentifier(dBInstanceIdentifier); return this; } /** *

              * The amount of storage (in gibibytes) to allocate for the DB instance. *

              *

              * Type: Integer *

              *

              * Amazon Aurora *

              *

              * Not applicable. Aurora cluster volumes automatically grow as the amount of data in your database increases, * though you are only charged for the space that you use in an Aurora cluster volume. *

              *

              * MySQL *

              *

              * Constraints to the amount of storage for each storage type are the following: *

              *
                *
              • *

                * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                *
              • *
              • *

                * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                *
              • *
              • *

                * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                *
              • *
              *

              * MariaDB *

              *

              * Constraints to the amount of storage for each storage type are the following: *

              *
                *
              • *

                * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                *
              • *
              • *

                * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                *
              • *
              • *

                * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                *
              • *
              *

              * PostgreSQL *

              *

              * Constraints to the amount of storage for each storage type are the following: *

              *
                *
              • *

                * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                *
              • *
              • *

                * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                *
              • *
              • *

                * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                *
              • *
              *

              * Oracle *

              *

              * Constraints to the amount of storage for each storage type are the following: *

              *
                *
              • *

                * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                *
              • *
              • *

                * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                *
              • *
              • *

                * Magnetic storage (standard): Must be an integer from 10 to 3072. *

                *
              • *
              *

              * SQL Server *

              *

              * Constraints to the amount of storage for each storage type are the following: *

              *
                *
              • *

                * General Purpose (SSD) storage (gp2): *

                *
                  *
                • *

                  * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

                  *
                • *
                • *

                  * Web and Express editions: Must be an integer from 20 to 16384. *

                  *
                • *
                *
              • *
              • *

                * Provisioned IOPS storage (io1): *

                *
                  *
                • *

                  * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

                  *
                • *
                • *

                  * Web and Express editions: Must be an integer from 100 to 16384. *

                  *
                • *
                *
              • *
              • *

                * Magnetic storage (standard): *

                *
                  *
                • *

                  * Enterprise and Standard editions: Must be an integer from 200 to 1024. *

                  *
                • *
                • *

                  * Web and Express editions: Must be an integer from 20 to 1024. *

                  *
                • *
                *
              • *
              * * @param allocatedStorage * The amount of storage (in gibibytes) to allocate for the DB instance.

              *

              * Type: Integer *

              *

              * Amazon Aurora *

              *

              * Not applicable. Aurora cluster volumes automatically grow as the amount of data in your database * increases, though you are only charged for the space that you use in an Aurora cluster volume. *

              *

              * MySQL *

              *

              * Constraints to the amount of storage for each storage type are the following: *

              *
                *
              • *

                * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                *
              • *
              • *

                * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                *
              • *
              • *

                * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                *
              • *
              *

              * MariaDB *

              *

              * Constraints to the amount of storage for each storage type are the following: *

              *
                *
              • *

                * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                *
              • *
              • *

                * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                *
              • *
              • *

                * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                *
              • *
              *

              * PostgreSQL *

              *

              * Constraints to the amount of storage for each storage type are the following: *

              *
                *
              • *

                * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                *
              • *
              • *

                * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                *
              • *
              • *

                * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                *
              • *
              *

              * Oracle *

              *

              * Constraints to the amount of storage for each storage type are the following: *

              *
                *
              • *

                * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                *
              • *
              • *

                * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                *
              • *
              • *

                * Magnetic storage (standard): Must be an integer from 10 to 3072. *

                *
              • *
              *

              * SQL Server *

              *

              * Constraints to the amount of storage for each storage type are the following: *

              *
                *
              • *

                * General Purpose (SSD) storage (gp2): *

                *
                  *
                • *

                  * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

                  *
                • *
                • *

                  * Web and Express editions: Must be an integer from 20 to 16384. *

                  *
                • *
                *
              • *
              • *

                * Provisioned IOPS storage (io1): *

                *
                  *
                • *

                  * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

                  *
                • *
                • *

                  * Web and Express editions: Must be an integer from 100 to 16384. *

                  *
                • *
                *
              • *
              • *

                * Magnetic storage (standard): *

                *
                  *
                • *

                  * Enterprise and Standard editions: Must be an integer from 200 to 1024. *

                  *
                • *
                • *

                  * Web and Express editions: Must be an integer from 20 to 1024. *

                  *
                • *
                *
              • */ public void setAllocatedStorage(Integer allocatedStorage) { this.allocatedStorage = allocatedStorage; } /** *

                * The amount of storage (in gibibytes) to allocate for the DB instance. *

                *

                * Type: Integer *

                *

                * Amazon Aurora *

                *

                * Not applicable. Aurora cluster volumes automatically grow as the amount of data in your database increases, * though you are only charged for the space that you use in an Aurora cluster volume. *

                *

                * MySQL *

                *

                * Constraints to the amount of storage for each storage type are the following: *

                *
                  *
                • *

                  * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                  *
                • *
                • *

                  * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                  *
                • *
                • *

                  * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                  *
                • *
                *

                * MariaDB *

                *

                * Constraints to the amount of storage for each storage type are the following: *

                *
                  *
                • *

                  * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                  *
                • *
                • *

                  * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                  *
                • *
                • *

                  * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                  *
                • *
                *

                * PostgreSQL *

                *

                * Constraints to the amount of storage for each storage type are the following: *

                *
                  *
                • *

                  * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                  *
                • *
                • *

                  * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                  *
                • *
                • *

                  * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                  *
                • *
                *

                * Oracle *

                *

                * Constraints to the amount of storage for each storage type are the following: *

                *
                  *
                • *

                  * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                  *
                • *
                • *

                  * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                  *
                • *
                • *

                  * Magnetic storage (standard): Must be an integer from 10 to 3072. *

                  *
                • *
                *

                * SQL Server *

                *

                * Constraints to the amount of storage for each storage type are the following: *

                *
                  *
                • *

                  * General Purpose (SSD) storage (gp2): *

                  *
                    *
                  • *

                    * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

                    *
                  • *
                  • *

                    * Web and Express editions: Must be an integer from 20 to 16384. *

                    *
                  • *
                  *
                • *
                • *

                  * Provisioned IOPS storage (io1): *

                  *
                    *
                  • *

                    * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

                    *
                  • *
                  • *

                    * Web and Express editions: Must be an integer from 100 to 16384. *

                    *
                  • *
                  *
                • *
                • *

                  * Magnetic storage (standard): *

                  *
                    *
                  • *

                    * Enterprise and Standard editions: Must be an integer from 200 to 1024. *

                    *
                  • *
                  • *

                    * Web and Express editions: Must be an integer from 20 to 1024. *

                    *
                  • *
                  *
                • *
                * * @return The amount of storage (in gibibytes) to allocate for the DB instance.

                *

                * Type: Integer *

                *

                * Amazon Aurora *

                *

                * Not applicable. Aurora cluster volumes automatically grow as the amount of data in your database * increases, though you are only charged for the space that you use in an Aurora cluster volume. *

                *

                * MySQL *

                *

                * Constraints to the amount of storage for each storage type are the following: *

                *
                  *
                • *

                  * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                  *
                • *
                • *

                  * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                  *
                • *
                • *

                  * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                  *
                • *
                *

                * MariaDB *

                *

                * Constraints to the amount of storage for each storage type are the following: *

                *
                  *
                • *

                  * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                  *
                • *
                • *

                  * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                  *
                • *
                • *

                  * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                  *
                • *
                *

                * PostgreSQL *

                *

                * Constraints to the amount of storage for each storage type are the following: *

                *
                  *
                • *

                  * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                  *
                • *
                • *

                  * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                  *
                • *
                • *

                  * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                  *
                • *
                *

                * Oracle *

                *

                * Constraints to the amount of storage for each storage type are the following: *

                *
                  *
                • *

                  * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                  *
                • *
                • *

                  * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                  *
                • *
                • *

                  * Magnetic storage (standard): Must be an integer from 10 to 3072. *

                  *
                • *
                *

                * SQL Server *

                *

                * Constraints to the amount of storage for each storage type are the following: *

                *
                  *
                • *

                  * General Purpose (SSD) storage (gp2): *

                  *
                    *
                  • *

                    * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

                    *
                  • *
                  • *

                    * Web and Express editions: Must be an integer from 20 to 16384. *

                    *
                  • *
                  *
                • *
                • *

                  * Provisioned IOPS storage (io1): *

                  *
                    *
                  • *

                    * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

                    *
                  • *
                  • *

                    * Web and Express editions: Must be an integer from 100 to 16384. *

                    *
                  • *
                  *
                • *
                • *

                  * Magnetic storage (standard): *

                  *
                    *
                  • *

                    * Enterprise and Standard editions: Must be an integer from 200 to 1024. *

                    *
                  • *
                  • *

                    * Web and Express editions: Must be an integer from 20 to 1024. *

                    *
                  • *
                  *
                • */ public Integer getAllocatedStorage() { return this.allocatedStorage; } /** *

                  * The amount of storage (in gibibytes) to allocate for the DB instance. *

                  *

                  * Type: Integer *

                  *

                  * Amazon Aurora *

                  *

                  * Not applicable. Aurora cluster volumes automatically grow as the amount of data in your database increases, * though you are only charged for the space that you use in an Aurora cluster volume. *

                  *

                  * MySQL *

                  *

                  * Constraints to the amount of storage for each storage type are the following: *

                  *
                    *
                  • *

                    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                    *
                  • *
                  • *

                    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                    *
                  • *
                  • *

                    * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                    *
                  • *
                  *

                  * MariaDB *

                  *

                  * Constraints to the amount of storage for each storage type are the following: *

                  *
                    *
                  • *

                    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                    *
                  • *
                  • *

                    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                    *
                  • *
                  • *

                    * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                    *
                  • *
                  *

                  * PostgreSQL *

                  *

                  * Constraints to the amount of storage for each storage type are the following: *

                  *
                    *
                  • *

                    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                    *
                  • *
                  • *

                    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                    *
                  • *
                  • *

                    * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                    *
                  • *
                  *

                  * Oracle *

                  *

                  * Constraints to the amount of storage for each storage type are the following: *

                  *
                    *
                  • *

                    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                    *
                  • *
                  • *

                    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                    *
                  • *
                  • *

                    * Magnetic storage (standard): Must be an integer from 10 to 3072. *

                    *
                  • *
                  *

                  * SQL Server *

                  *

                  * Constraints to the amount of storage for each storage type are the following: *

                  *
                    *
                  • *

                    * General Purpose (SSD) storage (gp2): *

                    *
                      *
                    • *

                      * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

                      *
                    • *
                    • *

                      * Web and Express editions: Must be an integer from 20 to 16384. *

                      *
                    • *
                    *
                  • *
                  • *

                    * Provisioned IOPS storage (io1): *

                    *
                      *
                    • *

                      * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

                      *
                    • *
                    • *

                      * Web and Express editions: Must be an integer from 100 to 16384. *

                      *
                    • *
                    *
                  • *
                  • *

                    * Magnetic storage (standard): *

                    *
                      *
                    • *

                      * Enterprise and Standard editions: Must be an integer from 200 to 1024. *

                      *
                    • *
                    • *

                      * Web and Express editions: Must be an integer from 20 to 1024. *

                      *
                    • *
                    *
                  • *
                  * * @param allocatedStorage * The amount of storage (in gibibytes) to allocate for the DB instance.

                  *

                  * Type: Integer *

                  *

                  * Amazon Aurora *

                  *

                  * Not applicable. Aurora cluster volumes automatically grow as the amount of data in your database * increases, though you are only charged for the space that you use in an Aurora cluster volume. *

                  *

                  * MySQL *

                  *

                  * Constraints to the amount of storage for each storage type are the following: *

                  *
                    *
                  • *

                    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                    *
                  • *
                  • *

                    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                    *
                  • *
                  • *

                    * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                    *
                  • *
                  *

                  * MariaDB *

                  *

                  * Constraints to the amount of storage for each storage type are the following: *

                  *
                    *
                  • *

                    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                    *
                  • *
                  • *

                    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                    *
                  • *
                  • *

                    * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                    *
                  • *
                  *

                  * PostgreSQL *

                  *

                  * Constraints to the amount of storage for each storage type are the following: *

                  *
                    *
                  • *

                    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                    *
                  • *
                  • *

                    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                    *
                  • *
                  • *

                    * Magnetic storage (standard): Must be an integer from 5 to 3072. *

                    *
                  • *
                  *

                  * Oracle *

                  *

                  * Constraints to the amount of storage for each storage type are the following: *

                  *
                    *
                  • *

                    * General Purpose (SSD) storage (gp2): Must be an integer from 20 to 16384. *

                    *
                  • *
                  • *

                    * Provisioned IOPS storage (io1): Must be an integer from 100 to 16384. *

                    *
                  • *
                  • *

                    * Magnetic storage (standard): Must be an integer from 10 to 3072. *

                    *
                  • *
                  *

                  * SQL Server *

                  *

                  * Constraints to the amount of storage for each storage type are the following: *

                  *
                    *
                  • *

                    * General Purpose (SSD) storage (gp2): *

                    *
                      *
                    • *

                      * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

                      *
                    • *
                    • *

                      * Web and Express editions: Must be an integer from 20 to 16384. *

                      *
                    • *
                    *
                  • *
                  • *

                    * Provisioned IOPS storage (io1): *

                    *
                      *
                    • *

                      * Enterprise and Standard editions: Must be an integer from 200 to 16384. *

                      *
                    • *
                    • *

                      * Web and Express editions: Must be an integer from 100 to 16384. *

                      *
                    • *
                    *
                  • *
                  • *

                    * Magnetic storage (standard): *

                    *
                      *
                    • *

                      * Enterprise and Standard editions: Must be an integer from 200 to 1024. *

                      *
                    • *
                    • *

                      * Web and Express editions: Must be an integer from 20 to 1024. *

                      *
                    • *
                    *
                  • * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withAllocatedStorage(Integer allocatedStorage) { setAllocatedStorage(allocatedStorage); return this; } /** *

                    * The compute and memory capacity of the DB instance, for example, db.m4.large. Not all DB instance * classes are available in all AWS Regions, or for all database engines. For the full list of DB instance classes, * and availability for your engine, see DB Instance Class * in the Amazon RDS User Guide. *

                    * * @param dBInstanceClass * The compute and memory capacity of the DB instance, for example, db.m4.large. Not all DB * instance classes are available in all AWS Regions, or for all database engines. For the full list of DB * instance classes, and availability for your engine, see DB Instance * Class in the Amazon RDS User Guide. */ public void setDBInstanceClass(String dBInstanceClass) { this.dBInstanceClass = dBInstanceClass; } /** *

                    * The compute and memory capacity of the DB instance, for example, db.m4.large. Not all DB instance * classes are available in all AWS Regions, or for all database engines. For the full list of DB instance classes, * and availability for your engine, see DB Instance Class * in the Amazon RDS User Guide. *

                    * * @return The compute and memory capacity of the DB instance, for example, db.m4.large. Not all DB * instance classes are available in all AWS Regions, or for all database engines. For the full list of DB * instance classes, and availability for your engine, see DB Instance * Class in the Amazon RDS User Guide. */ public String getDBInstanceClass() { return this.dBInstanceClass; } /** *

                    * The compute and memory capacity of the DB instance, for example, db.m4.large. Not all DB instance * classes are available in all AWS Regions, or for all database engines. For the full list of DB instance classes, * and availability for your engine, see DB Instance Class * in the Amazon RDS User Guide. *

                    * * @param dBInstanceClass * The compute and memory capacity of the DB instance, for example, db.m4.large. Not all DB * instance classes are available in all AWS Regions, or for all database engines. For the full list of DB * instance classes, and availability for your engine, see DB Instance * Class in the Amazon RDS User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withDBInstanceClass(String dBInstanceClass) { setDBInstanceClass(dBInstanceClass); return this; } /** *

                    * The name of the database engine to be used for this instance. *

                    *

                    * Not every database engine is available for every AWS Region. *

                    *

                    * Valid Values: *

                    *
                      *
                    • *

                      * aurora *

                      *
                    • *
                    • *

                      * aurora-postgresql *

                      *
                    • *
                    • *

                      * mariadb *

                      *
                    • *
                    • *

                      * mysql *

                      *
                    • *
                    • *

                      * oracle-ee *

                      *
                    • *
                    • *

                      * oracle-se2 *

                      *
                    • *
                    • *

                      * oracle-se1 *

                      *
                    • *
                    • *

                      * oracle-se *

                      *
                    • *
                    • *

                      * postgres *

                      *
                    • *
                    • *

                      * sqlserver-ee *

                      *
                    • *
                    • *

                      * sqlserver-se *

                      *
                    • *
                    • *

                      * sqlserver-ex *

                      *
                    • *
                    • *

                      * sqlserver-web *

                      *
                    • *
                    * * @param engine * The name of the database engine to be used for this instance.

                    *

                    * Not every database engine is available for every AWS Region. *

                    *

                    * Valid Values: *

                    *
                      *
                    • *

                      * aurora *

                      *
                    • *
                    • *

                      * aurora-postgresql *

                      *
                    • *
                    • *

                      * mariadb *

                      *
                    • *
                    • *

                      * mysql *

                      *
                    • *
                    • *

                      * oracle-ee *

                      *
                    • *
                    • *

                      * oracle-se2 *

                      *
                    • *
                    • *

                      * oracle-se1 *

                      *
                    • *
                    • *

                      * oracle-se *

                      *
                    • *
                    • *

                      * postgres *

                      *
                    • *
                    • *

                      * sqlserver-ee *

                      *
                    • *
                    • *

                      * sqlserver-se *

                      *
                    • *
                    • *

                      * sqlserver-ex *

                      *
                    • *
                    • *

                      * sqlserver-web *

                      *
                    • */ public void setEngine(String engine) { this.engine = engine; } /** *

                      * The name of the database engine to be used for this instance. *

                      *

                      * Not every database engine is available for every AWS Region. *

                      *

                      * Valid Values: *

                      *
                        *
                      • *

                        * aurora *

                        *
                      • *
                      • *

                        * aurora-postgresql *

                        *
                      • *
                      • *

                        * mariadb *

                        *
                      • *
                      • *

                        * mysql *

                        *
                      • *
                      • *

                        * oracle-ee *

                        *
                      • *
                      • *

                        * oracle-se2 *

                        *
                      • *
                      • *

                        * oracle-se1 *

                        *
                      • *
                      • *

                        * oracle-se *

                        *
                      • *
                      • *

                        * postgres *

                        *
                      • *
                      • *

                        * sqlserver-ee *

                        *
                      • *
                      • *

                        * sqlserver-se *

                        *
                      • *
                      • *

                        * sqlserver-ex *

                        *
                      • *
                      • *

                        * sqlserver-web *

                        *
                      • *
                      * * @return The name of the database engine to be used for this instance.

                      *

                      * Not every database engine is available for every AWS Region. *

                      *

                      * Valid Values: *

                      *
                        *
                      • *

                        * aurora *

                        *
                      • *
                      • *

                        * aurora-postgresql *

                        *
                      • *
                      • *

                        * mariadb *

                        *
                      • *
                      • *

                        * mysql *

                        *
                      • *
                      • *

                        * oracle-ee *

                        *
                      • *
                      • *

                        * oracle-se2 *

                        *
                      • *
                      • *

                        * oracle-se1 *

                        *
                      • *
                      • *

                        * oracle-se *

                        *
                      • *
                      • *

                        * postgres *

                        *
                      • *
                      • *

                        * sqlserver-ee *

                        *
                      • *
                      • *

                        * sqlserver-se *

                        *
                      • *
                      • *

                        * sqlserver-ex *

                        *
                      • *
                      • *

                        * sqlserver-web *

                        *
                      • */ public String getEngine() { return this.engine; } /** *

                        * The name of the database engine to be used for this instance. *

                        *

                        * Not every database engine is available for every AWS Region. *

                        *

                        * Valid Values: *

                        *
                          *
                        • *

                          * aurora *

                          *
                        • *
                        • *

                          * aurora-postgresql *

                          *
                        • *
                        • *

                          * mariadb *

                          *
                        • *
                        • *

                          * mysql *

                          *
                        • *
                        • *

                          * oracle-ee *

                          *
                        • *
                        • *

                          * oracle-se2 *

                          *
                        • *
                        • *

                          * oracle-se1 *

                          *
                        • *
                        • *

                          * oracle-se *

                          *
                        • *
                        • *

                          * postgres *

                          *
                        • *
                        • *

                          * sqlserver-ee *

                          *
                        • *
                        • *

                          * sqlserver-se *

                          *
                        • *
                        • *

                          * sqlserver-ex *

                          *
                        • *
                        • *

                          * sqlserver-web *

                          *
                        • *
                        * * @param engine * The name of the database engine to be used for this instance.

                        *

                        * Not every database engine is available for every AWS Region. *

                        *

                        * Valid Values: *

                        *
                          *
                        • *

                          * aurora *

                          *
                        • *
                        • *

                          * aurora-postgresql *

                          *
                        • *
                        • *

                          * mariadb *

                          *
                        • *
                        • *

                          * mysql *

                          *
                        • *
                        • *

                          * oracle-ee *

                          *
                        • *
                        • *

                          * oracle-se2 *

                          *
                        • *
                        • *

                          * oracle-se1 *

                          *
                        • *
                        • *

                          * oracle-se *

                          *
                        • *
                        • *

                          * postgres *

                          *
                        • *
                        • *

                          * sqlserver-ee *

                          *
                        • *
                        • *

                          * sqlserver-se *

                          *
                        • *
                        • *

                          * sqlserver-ex *

                          *
                        • *
                        • *

                          * sqlserver-web *

                          *
                        • * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withEngine(String engine) { setEngine(engine); return this; } /** *

                          * The name for the master user. *

                          *

                          * Amazon Aurora *

                          *

                          * Not applicable. The name for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

                          *

                          * MariaDB *

                          *

                          * Constraints: *

                          *
                            *
                          • *

                            * Required for MariaDB. *

                            *
                          • *
                          • *

                            * Must be 1 to 16 letters or numbers. *

                            *
                          • *
                          • *

                            * Cannot be a reserved word for the chosen database engine. *

                            *
                          • *
                          *

                          * Microsoft SQL Server *

                          *

                          * Constraints: *

                          *
                            *
                          • *

                            * Required for SQL Server. *

                            *
                          • *
                          • *

                            * Must be 1 to 128 letters or numbers. *

                            *
                          • *
                          • *

                            * The first character must be a letter. *

                            *
                          • *
                          • *

                            * Cannot be a reserved word for the chosen database engine. *

                            *
                          • *
                          *

                          * MySQL *

                          *

                          * Constraints: *

                          *
                            *
                          • *

                            * Required for MySQL. *

                            *
                          • *
                          • *

                            * Must be 1 to 16 letters or numbers. *

                            *
                          • *
                          • *

                            * First character must be a letter. *

                            *
                          • *
                          • *

                            * Cannot be a reserved word for the chosen database engine. *

                            *
                          • *
                          *

                          * Oracle *

                          *

                          * Constraints: *

                          *
                            *
                          • *

                            * Required for Oracle. *

                            *
                          • *
                          • *

                            * Must be 1 to 30 letters or numbers. *

                            *
                          • *
                          • *

                            * First character must be a letter. *

                            *
                          • *
                          • *

                            * Cannot be a reserved word for the chosen database engine. *

                            *
                          • *
                          *

                          * PostgreSQL *

                          *

                          * Constraints: *

                          *
                            *
                          • *

                            * Required for PostgreSQL. *

                            *
                          • *
                          • *

                            * Must be 1 to 63 letters or numbers. *

                            *
                          • *
                          • *

                            * First character must be a letter. *

                            *
                          • *
                          • *

                            * Cannot be a reserved word for the chosen database engine. *

                            *
                          • *
                          * * @param masterUsername * The name for the master user.

                          *

                          * Amazon Aurora *

                          *

                          * Not applicable. The name for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

                          *

                          * MariaDB *

                          *

                          * Constraints: *

                          *
                            *
                          • *

                            * Required for MariaDB. *

                            *
                          • *
                          • *

                            * Must be 1 to 16 letters or numbers. *

                            *
                          • *
                          • *

                            * Cannot be a reserved word for the chosen database engine. *

                            *
                          • *
                          *

                          * Microsoft SQL Server *

                          *

                          * Constraints: *

                          *
                            *
                          • *

                            * Required for SQL Server. *

                            *
                          • *
                          • *

                            * Must be 1 to 128 letters or numbers. *

                            *
                          • *
                          • *

                            * The first character must be a letter. *

                            *
                          • *
                          • *

                            * Cannot be a reserved word for the chosen database engine. *

                            *
                          • *
                          *

                          * MySQL *

                          *

                          * Constraints: *

                          *
                            *
                          • *

                            * Required for MySQL. *

                            *
                          • *
                          • *

                            * Must be 1 to 16 letters or numbers. *

                            *
                          • *
                          • *

                            * First character must be a letter. *

                            *
                          • *
                          • *

                            * Cannot be a reserved word for the chosen database engine. *

                            *
                          • *
                          *

                          * Oracle *

                          *

                          * Constraints: *

                          *
                            *
                          • *

                            * Required for Oracle. *

                            *
                          • *
                          • *

                            * Must be 1 to 30 letters or numbers. *

                            *
                          • *
                          • *

                            * First character must be a letter. *

                            *
                          • *
                          • *

                            * Cannot be a reserved word for the chosen database engine. *

                            *
                          • *
                          *

                          * PostgreSQL *

                          *

                          * Constraints: *

                          *
                            *
                          • *

                            * Required for PostgreSQL. *

                            *
                          • *
                          • *

                            * Must be 1 to 63 letters or numbers. *

                            *
                          • *
                          • *

                            * First character must be a letter. *

                            *
                          • *
                          • *

                            * Cannot be a reserved word for the chosen database engine. *

                            *
                          • */ public void setMasterUsername(String masterUsername) { this.masterUsername = masterUsername; } /** *

                            * The name for the master user. *

                            *

                            * Amazon Aurora *

                            *

                            * Not applicable. The name for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

                            *

                            * MariaDB *

                            *

                            * Constraints: *

                            *
                              *
                            • *

                              * Required for MariaDB. *

                              *
                            • *
                            • *

                              * Must be 1 to 16 letters or numbers. *

                              *
                            • *
                            • *

                              * Cannot be a reserved word for the chosen database engine. *

                              *
                            • *
                            *

                            * Microsoft SQL Server *

                            *

                            * Constraints: *

                            *
                              *
                            • *

                              * Required for SQL Server. *

                              *
                            • *
                            • *

                              * Must be 1 to 128 letters or numbers. *

                              *
                            • *
                            • *

                              * The first character must be a letter. *

                              *
                            • *
                            • *

                              * Cannot be a reserved word for the chosen database engine. *

                              *
                            • *
                            *

                            * MySQL *

                            *

                            * Constraints: *

                            *
                              *
                            • *

                              * Required for MySQL. *

                              *
                            • *
                            • *

                              * Must be 1 to 16 letters or numbers. *

                              *
                            • *
                            • *

                              * First character must be a letter. *

                              *
                            • *
                            • *

                              * Cannot be a reserved word for the chosen database engine. *

                              *
                            • *
                            *

                            * Oracle *

                            *

                            * Constraints: *

                            *
                              *
                            • *

                              * Required for Oracle. *

                              *
                            • *
                            • *

                              * Must be 1 to 30 letters or numbers. *

                              *
                            • *
                            • *

                              * First character must be a letter. *

                              *
                            • *
                            • *

                              * Cannot be a reserved word for the chosen database engine. *

                              *
                            • *
                            *

                            * PostgreSQL *

                            *

                            * Constraints: *

                            *
                              *
                            • *

                              * Required for PostgreSQL. *

                              *
                            • *
                            • *

                              * Must be 1 to 63 letters or numbers. *

                              *
                            • *
                            • *

                              * First character must be a letter. *

                              *
                            • *
                            • *

                              * Cannot be a reserved word for the chosen database engine. *

                              *
                            • *
                            * * @return The name for the master user.

                            *

                            * Amazon Aurora *

                            *

                            * Not applicable. The name for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

                            *

                            * MariaDB *

                            *

                            * Constraints: *

                            *
                              *
                            • *

                              * Required for MariaDB. *

                              *
                            • *
                            • *

                              * Must be 1 to 16 letters or numbers. *

                              *
                            • *
                            • *

                              * Cannot be a reserved word for the chosen database engine. *

                              *
                            • *
                            *

                            * Microsoft SQL Server *

                            *

                            * Constraints: *

                            *
                              *
                            • *

                              * Required for SQL Server. *

                              *
                            • *
                            • *

                              * Must be 1 to 128 letters or numbers. *

                              *
                            • *
                            • *

                              * The first character must be a letter. *

                              *
                            • *
                            • *

                              * Cannot be a reserved word for the chosen database engine. *

                              *
                            • *
                            *

                            * MySQL *

                            *

                            * Constraints: *

                            *
                              *
                            • *

                              * Required for MySQL. *

                              *
                            • *
                            • *

                              * Must be 1 to 16 letters or numbers. *

                              *
                            • *
                            • *

                              * First character must be a letter. *

                              *
                            • *
                            • *

                              * Cannot be a reserved word for the chosen database engine. *

                              *
                            • *
                            *

                            * Oracle *

                            *

                            * Constraints: *

                            *
                              *
                            • *

                              * Required for Oracle. *

                              *
                            • *
                            • *

                              * Must be 1 to 30 letters or numbers. *

                              *
                            • *
                            • *

                              * First character must be a letter. *

                              *
                            • *
                            • *

                              * Cannot be a reserved word for the chosen database engine. *

                              *
                            • *
                            *

                            * PostgreSQL *

                            *

                            * Constraints: *

                            *
                              *
                            • *

                              * Required for PostgreSQL. *

                              *
                            • *
                            • *

                              * Must be 1 to 63 letters or numbers. *

                              *
                            • *
                            • *

                              * First character must be a letter. *

                              *
                            • *
                            • *

                              * Cannot be a reserved word for the chosen database engine. *

                              *
                            • */ public String getMasterUsername() { return this.masterUsername; } /** *

                              * The name for the master user. *

                              *

                              * Amazon Aurora *

                              *

                              * Not applicable. The name for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

                              *

                              * MariaDB *

                              *

                              * Constraints: *

                              *
                                *
                              • *

                                * Required for MariaDB. *

                                *
                              • *
                              • *

                                * Must be 1 to 16 letters or numbers. *

                                *
                              • *
                              • *

                                * Cannot be a reserved word for the chosen database engine. *

                                *
                              • *
                              *

                              * Microsoft SQL Server *

                              *

                              * Constraints: *

                              *
                                *
                              • *

                                * Required for SQL Server. *

                                *
                              • *
                              • *

                                * Must be 1 to 128 letters or numbers. *

                                *
                              • *
                              • *

                                * The first character must be a letter. *

                                *
                              • *
                              • *

                                * Cannot be a reserved word for the chosen database engine. *

                                *
                              • *
                              *

                              * MySQL *

                              *

                              * Constraints: *

                              *
                                *
                              • *

                                * Required for MySQL. *

                                *
                              • *
                              • *

                                * Must be 1 to 16 letters or numbers. *

                                *
                              • *
                              • *

                                * First character must be a letter. *

                                *
                              • *
                              • *

                                * Cannot be a reserved word for the chosen database engine. *

                                *
                              • *
                              *

                              * Oracle *

                              *

                              * Constraints: *

                              *
                                *
                              • *

                                * Required for Oracle. *

                                *
                              • *
                              • *

                                * Must be 1 to 30 letters or numbers. *

                                *
                              • *
                              • *

                                * First character must be a letter. *

                                *
                              • *
                              • *

                                * Cannot be a reserved word for the chosen database engine. *

                                *
                              • *
                              *

                              * PostgreSQL *

                              *

                              * Constraints: *

                              *
                                *
                              • *

                                * Required for PostgreSQL. *

                                *
                              • *
                              • *

                                * Must be 1 to 63 letters or numbers. *

                                *
                              • *
                              • *

                                * First character must be a letter. *

                                *
                              • *
                              • *

                                * Cannot be a reserved word for the chosen database engine. *

                                *
                              • *
                              * * @param masterUsername * The name for the master user.

                              *

                              * Amazon Aurora *

                              *

                              * Not applicable. The name for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

                              *

                              * MariaDB *

                              *

                              * Constraints: *

                              *
                                *
                              • *

                                * Required for MariaDB. *

                                *
                              • *
                              • *

                                * Must be 1 to 16 letters or numbers. *

                                *
                              • *
                              • *

                                * Cannot be a reserved word for the chosen database engine. *

                                *
                              • *
                              *

                              * Microsoft SQL Server *

                              *

                              * Constraints: *

                              *
                                *
                              • *

                                * Required for SQL Server. *

                                *
                              • *
                              • *

                                * Must be 1 to 128 letters or numbers. *

                                *
                              • *
                              • *

                                * The first character must be a letter. *

                                *
                              • *
                              • *

                                * Cannot be a reserved word for the chosen database engine. *

                                *
                              • *
                              *

                              * MySQL *

                              *

                              * Constraints: *

                              *
                                *
                              • *

                                * Required for MySQL. *

                                *
                              • *
                              • *

                                * Must be 1 to 16 letters or numbers. *

                                *
                              • *
                              • *

                                * First character must be a letter. *

                                *
                              • *
                              • *

                                * Cannot be a reserved word for the chosen database engine. *

                                *
                              • *
                              *

                              * Oracle *

                              *

                              * Constraints: *

                              *
                                *
                              • *

                                * Required for Oracle. *

                                *
                              • *
                              • *

                                * Must be 1 to 30 letters or numbers. *

                                *
                              • *
                              • *

                                * First character must be a letter. *

                                *
                              • *
                              • *

                                * Cannot be a reserved word for the chosen database engine. *

                                *
                              • *
                              *

                              * PostgreSQL *

                              *

                              * Constraints: *

                              *
                                *
                              • *

                                * Required for PostgreSQL. *

                                *
                              • *
                              • *

                                * Must be 1 to 63 letters or numbers. *

                                *
                              • *
                              • *

                                * First character must be a letter. *

                                *
                              • *
                              • *

                                * Cannot be a reserved word for the chosen database engine. *

                                *
                              • * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withMasterUsername(String masterUsername) { setMasterUsername(masterUsername); return this; } /** *

                                * The password for the master user. The password can include any printable ASCII character except "/", """, or "@". *

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The password for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                *

                                * MariaDB *

                                *

                                * Constraints: Must contain from 8 to 41 characters. *

                                *

                                * Microsoft SQL Server *

                                *

                                * Constraints: Must contain from 8 to 128 characters. *

                                *

                                * MySQL *

                                *

                                * Constraints: Must contain from 8 to 41 characters. *

                                *

                                * Oracle *

                                *

                                * Constraints: Must contain from 8 to 30 characters. *

                                *

                                * PostgreSQL *

                                *

                                * Constraints: Must contain from 8 to 128 characters. *

                                * * @param masterUserPassword * The password for the master user. The password can include any printable ASCII character except "/", * """, or "@".

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The password for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                *

                                * MariaDB *

                                *

                                * Constraints: Must contain from 8 to 41 characters. *

                                *

                                * Microsoft SQL Server *

                                *

                                * Constraints: Must contain from 8 to 128 characters. *

                                *

                                * MySQL *

                                *

                                * Constraints: Must contain from 8 to 41 characters. *

                                *

                                * Oracle *

                                *

                                * Constraints: Must contain from 8 to 30 characters. *

                                *

                                * PostgreSQL *

                                *

                                * Constraints: Must contain from 8 to 128 characters. */ public void setMasterUserPassword(String masterUserPassword) { this.masterUserPassword = masterUserPassword; } /** *

                                * The password for the master user. The password can include any printable ASCII character except "/", """, or "@". *

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The password for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                *

                                * MariaDB *

                                *

                                * Constraints: Must contain from 8 to 41 characters. *

                                *

                                * Microsoft SQL Server *

                                *

                                * Constraints: Must contain from 8 to 128 characters. *

                                *

                                * MySQL *

                                *

                                * Constraints: Must contain from 8 to 41 characters. *

                                *

                                * Oracle *

                                *

                                * Constraints: Must contain from 8 to 30 characters. *

                                *

                                * PostgreSQL *

                                *

                                * Constraints: Must contain from 8 to 128 characters. *

                                * * @return The password for the master user. The password can include any printable ASCII character except "/", * """, or "@".

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The password for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                *

                                * MariaDB *

                                *

                                * Constraints: Must contain from 8 to 41 characters. *

                                *

                                * Microsoft SQL Server *

                                *

                                * Constraints: Must contain from 8 to 128 characters. *

                                *

                                * MySQL *

                                *

                                * Constraints: Must contain from 8 to 41 characters. *

                                *

                                * Oracle *

                                *

                                * Constraints: Must contain from 8 to 30 characters. *

                                *

                                * PostgreSQL *

                                *

                                * Constraints: Must contain from 8 to 128 characters. */ public String getMasterUserPassword() { return this.masterUserPassword; } /** *

                                * The password for the master user. The password can include any printable ASCII character except "/", """, or "@". *

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The password for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                *

                                * MariaDB *

                                *

                                * Constraints: Must contain from 8 to 41 characters. *

                                *

                                * Microsoft SQL Server *

                                *

                                * Constraints: Must contain from 8 to 128 characters. *

                                *

                                * MySQL *

                                *

                                * Constraints: Must contain from 8 to 41 characters. *

                                *

                                * Oracle *

                                *

                                * Constraints: Must contain from 8 to 30 characters. *

                                *

                                * PostgreSQL *

                                *

                                * Constraints: Must contain from 8 to 128 characters. *

                                * * @param masterUserPassword * The password for the master user. The password can include any printable ASCII character except "/", * """, or "@".

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The password for the master user is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                *

                                * MariaDB *

                                *

                                * Constraints: Must contain from 8 to 41 characters. *

                                *

                                * Microsoft SQL Server *

                                *

                                * Constraints: Must contain from 8 to 128 characters. *

                                *

                                * MySQL *

                                *

                                * Constraints: Must contain from 8 to 41 characters. *

                                *

                                * Oracle *

                                *

                                * Constraints: Must contain from 8 to 30 characters. *

                                *

                                * PostgreSQL *

                                *

                                * Constraints: Must contain from 8 to 128 characters. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withMasterUserPassword(String masterUserPassword) { setMasterUserPassword(masterUserPassword); return this; } /** *

                                * A list of DB security groups to associate with this DB instance. *

                                *

                                * Default: The default DB security group for the database engine. *

                                * * @return A list of DB security groups to associate with this DB instance.

                                *

                                * Default: The default DB security group for the database engine. */ public java.util.List getDBSecurityGroups() { if (dBSecurityGroups == null) { dBSecurityGroups = new com.amazonaws.internal.SdkInternalList(); } return dBSecurityGroups; } /** *

                                * A list of DB security groups to associate with this DB instance. *

                                *

                                * Default: The default DB security group for the database engine. *

                                * * @param dBSecurityGroups * A list of DB security groups to associate with this DB instance.

                                *

                                * Default: The default DB security group for the database engine. */ public void setDBSecurityGroups(java.util.Collection dBSecurityGroups) { if (dBSecurityGroups == null) { this.dBSecurityGroups = null; return; } this.dBSecurityGroups = new com.amazonaws.internal.SdkInternalList(dBSecurityGroups); } /** *

                                * A list of DB security groups to associate with this DB instance. *

                                *

                                * Default: The default DB security group for the database engine. *

                                *

                                * NOTE: This method appends the values to the existing list (if any). Use * {@link #setDBSecurityGroups(java.util.Collection)} or {@link #withDBSecurityGroups(java.util.Collection)} if you * want to override the existing values. *

                                * * @param dBSecurityGroups * A list of DB security groups to associate with this DB instance.

                                *

                                * Default: The default DB security group for the database engine. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withDBSecurityGroups(String... dBSecurityGroups) { if (this.dBSecurityGroups == null) { setDBSecurityGroups(new com.amazonaws.internal.SdkInternalList(dBSecurityGroups.length)); } for (String ele : dBSecurityGroups) { this.dBSecurityGroups.add(ele); } return this; } /** *

                                * A list of DB security groups to associate with this DB instance. *

                                *

                                * Default: The default DB security group for the database engine. *

                                * * @param dBSecurityGroups * A list of DB security groups to associate with this DB instance.

                                *

                                * Default: The default DB security group for the database engine. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withDBSecurityGroups(java.util.Collection dBSecurityGroups) { setDBSecurityGroups(dBSecurityGroups); return this; } /** *

                                * A list of EC2 VPC security groups to associate with this DB instance. *

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The associated list of EC2 VPC security groups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                *

                                * Default: The default EC2 VPC security group for the DB subnet group's VPC. *

                                * * @return A list of EC2 VPC security groups to associate with this DB instance.

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The associated list of EC2 VPC security groups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                *

                                * Default: The default EC2 VPC security group for the DB subnet group's VPC. */ public java.util.List getVpcSecurityGroupIds() { if (vpcSecurityGroupIds == null) { vpcSecurityGroupIds = new com.amazonaws.internal.SdkInternalList(); } return vpcSecurityGroupIds; } /** *

                                * A list of EC2 VPC security groups to associate with this DB instance. *

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The associated list of EC2 VPC security groups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                *

                                * Default: The default EC2 VPC security group for the DB subnet group's VPC. *

                                * * @param vpcSecurityGroupIds * A list of EC2 VPC security groups to associate with this DB instance.

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The associated list of EC2 VPC security groups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                *

                                * Default: The default EC2 VPC security group for the DB subnet group's VPC. */ public void setVpcSecurityGroupIds(java.util.Collection vpcSecurityGroupIds) { if (vpcSecurityGroupIds == null) { this.vpcSecurityGroupIds = null; return; } this.vpcSecurityGroupIds = new com.amazonaws.internal.SdkInternalList(vpcSecurityGroupIds); } /** *

                                * A list of EC2 VPC security groups to associate with this DB instance. *

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The associated list of EC2 VPC security groups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                *

                                * Default: The default EC2 VPC security group for the DB subnet group's VPC. *

                                *

                                * NOTE: This method appends the values to the existing list (if any). Use * {@link #setVpcSecurityGroupIds(java.util.Collection)} or {@link #withVpcSecurityGroupIds(java.util.Collection)} * if you want to override the existing values. *

                                * * @param vpcSecurityGroupIds * A list of EC2 VPC security groups to associate with this DB instance.

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The associated list of EC2 VPC security groups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                *

                                * Default: The default EC2 VPC security group for the DB subnet group's VPC. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withVpcSecurityGroupIds(String... vpcSecurityGroupIds) { if (this.vpcSecurityGroupIds == null) { setVpcSecurityGroupIds(new com.amazonaws.internal.SdkInternalList(vpcSecurityGroupIds.length)); } for (String ele : vpcSecurityGroupIds) { this.vpcSecurityGroupIds.add(ele); } return this; } /** *

                                * A list of EC2 VPC security groups to associate with this DB instance. *

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The associated list of EC2 VPC security groups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                *

                                * Default: The default EC2 VPC security group for the DB subnet group's VPC. *

                                * * @param vpcSecurityGroupIds * A list of EC2 VPC security groups to associate with this DB instance.

                                *

                                * Amazon Aurora *

                                *

                                * Not applicable. The associated list of EC2 VPC security groups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                *

                                * Default: The default EC2 VPC security group for the DB subnet group's VPC. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withVpcSecurityGroupIds(java.util.Collection vpcSecurityGroupIds) { setVpcSecurityGroupIds(vpcSecurityGroupIds); return this; } /** *

                                * The EC2 Availability Zone that the DB instance is created in. For information on AWS Regions and Availability * Zones, see Regions * and Availability Zones. *

                                *

                                * Default: A random, system-chosen Availability Zone in the endpoint's AWS Region. *

                                *

                                * Example: us-east-1d *

                                *

                                * Constraint: The AvailabilityZone parameter can't be specified if the MultiAZ parameter is set to * true. The specified Availability Zone must be in the same AWS Region as the current endpoint. *

                                * * @param availabilityZone * The EC2 Availability Zone that the DB instance is created in. For information on AWS Regions and * Availability Zones, see Regions and Availability Zones.

                                *

                                * Default: A random, system-chosen Availability Zone in the endpoint's AWS Region. *

                                *

                                * Example: us-east-1d *

                                *

                                * Constraint: The AvailabilityZone parameter can't be specified if the MultiAZ parameter is set to * true. The specified Availability Zone must be in the same AWS Region as the current endpoint. */ public void setAvailabilityZone(String availabilityZone) { this.availabilityZone = availabilityZone; } /** *

                                * The EC2 Availability Zone that the DB instance is created in. For information on AWS Regions and Availability * Zones, see Regions * and Availability Zones. *

                                *

                                * Default: A random, system-chosen Availability Zone in the endpoint's AWS Region. *

                                *

                                * Example: us-east-1d *

                                *

                                * Constraint: The AvailabilityZone parameter can't be specified if the MultiAZ parameter is set to * true. The specified Availability Zone must be in the same AWS Region as the current endpoint. *

                                * * @return The EC2 Availability Zone that the DB instance is created in. For information on AWS Regions and * Availability Zones, see Regions and Availability Zones.

                                *

                                * Default: A random, system-chosen Availability Zone in the endpoint's AWS Region. *

                                *

                                * Example: us-east-1d *

                                *

                                * Constraint: The AvailabilityZone parameter can't be specified if the MultiAZ parameter is set to * true. The specified Availability Zone must be in the same AWS Region as the current * endpoint. */ public String getAvailabilityZone() { return this.availabilityZone; } /** *

                                * The EC2 Availability Zone that the DB instance is created in. For information on AWS Regions and Availability * Zones, see Regions * and Availability Zones. *

                                *

                                * Default: A random, system-chosen Availability Zone in the endpoint's AWS Region. *

                                *

                                * Example: us-east-1d *

                                *

                                * Constraint: The AvailabilityZone parameter can't be specified if the MultiAZ parameter is set to * true. The specified Availability Zone must be in the same AWS Region as the current endpoint. *

                                * * @param availabilityZone * The EC2 Availability Zone that the DB instance is created in. For information on AWS Regions and * Availability Zones, see Regions and Availability Zones.

                                *

                                * Default: A random, system-chosen Availability Zone in the endpoint's AWS Region. *

                                *

                                * Example: us-east-1d *

                                *

                                * Constraint: The AvailabilityZone parameter can't be specified if the MultiAZ parameter is set to * true. The specified Availability Zone must be in the same AWS Region as the current endpoint. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withAvailabilityZone(String availabilityZone) { setAvailabilityZone(availabilityZone); return this; } /** *

                                * A DB subnet group to associate with this DB instance. *

                                *

                                * If there is no DB subnet group, then it is a non-VPC DB instance. *

                                * * @param dBSubnetGroupName * A DB subnet group to associate with this DB instance.

                                *

                                * If there is no DB subnet group, then it is a non-VPC DB instance. */ public void setDBSubnetGroupName(String dBSubnetGroupName) { this.dBSubnetGroupName = dBSubnetGroupName; } /** *

                                * A DB subnet group to associate with this DB instance. *

                                *

                                * If there is no DB subnet group, then it is a non-VPC DB instance. *

                                * * @return A DB subnet group to associate with this DB instance.

                                *

                                * If there is no DB subnet group, then it is a non-VPC DB instance. */ public String getDBSubnetGroupName() { return this.dBSubnetGroupName; } /** *

                                * A DB subnet group to associate with this DB instance. *

                                *

                                * If there is no DB subnet group, then it is a non-VPC DB instance. *

                                * * @param dBSubnetGroupName * A DB subnet group to associate with this DB instance.

                                *

                                * If there is no DB subnet group, then it is a non-VPC DB instance. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withDBSubnetGroupName(String dBSubnetGroupName) { setDBSubnetGroupName(dBSubnetGroupName); return this; } /** *

                                * The time range each week during which system maintenance can occur, in Universal Coordinated Time (UTC). For more * information, see Amazon RDS Maintenance Window. *

                                *

                                * Format: ddd:hh24:mi-ddd:hh24:mi *

                                *

                                * The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring * on a random day of the week. *

                                *

                                * Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. *

                                *

                                * Constraints: Minimum 30-minute window. *

                                * * @param preferredMaintenanceWindow * The time range each week during which system maintenance can occur, in Universal Coordinated Time (UTC). * For more information, see Amazon RDS Maintenance Window.

                                *

                                * Format: ddd:hh24:mi-ddd:hh24:mi *

                                *

                                * The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, * occurring on a random day of the week. *

                                *

                                * Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. *

                                *

                                * Constraints: Minimum 30-minute window. */ public void setPreferredMaintenanceWindow(String preferredMaintenanceWindow) { this.preferredMaintenanceWindow = preferredMaintenanceWindow; } /** *

                                * The time range each week during which system maintenance can occur, in Universal Coordinated Time (UTC). For more * information, see Amazon RDS Maintenance Window. *

                                *

                                * Format: ddd:hh24:mi-ddd:hh24:mi *

                                *

                                * The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring * on a random day of the week. *

                                *

                                * Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. *

                                *

                                * Constraints: Minimum 30-minute window. *

                                * * @return The time range each week during which system maintenance can occur, in Universal Coordinated Time (UTC). * For more information, see Amazon RDS Maintenance Window.

                                *

                                * Format: ddd:hh24:mi-ddd:hh24:mi *

                                *

                                * The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, * occurring on a random day of the week. *

                                *

                                * Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. *

                                *

                                * Constraints: Minimum 30-minute window. */ public String getPreferredMaintenanceWindow() { return this.preferredMaintenanceWindow; } /** *

                                * The time range each week during which system maintenance can occur, in Universal Coordinated Time (UTC). For more * information, see Amazon RDS Maintenance Window. *

                                *

                                * Format: ddd:hh24:mi-ddd:hh24:mi *

                                *

                                * The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring * on a random day of the week. *

                                *

                                * Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. *

                                *

                                * Constraints: Minimum 30-minute window. *

                                * * @param preferredMaintenanceWindow * The time range each week during which system maintenance can occur, in Universal Coordinated Time (UTC). * For more information, see Amazon RDS Maintenance Window.

                                *

                                * Format: ddd:hh24:mi-ddd:hh24:mi *

                                *

                                * The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, * occurring on a random day of the week. *

                                *

                                * Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. *

                                *

                                * Constraints: Minimum 30-minute window. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withPreferredMaintenanceWindow(String preferredMaintenanceWindow) { setPreferredMaintenanceWindow(preferredMaintenanceWindow); return this; } /** *

                                * The name of the DB parameter group to associate with this DB instance. If this argument is omitted, the default * DBParameterGroup for the specified engine is used. *

                                *

                                * Constraints: *

                                *
                                  *
                                • *

                                  * Must be 1 to 255 letters, numbers, or hyphens. *

                                  *
                                • *
                                • *

                                  * First character must be a letter *

                                  *
                                • *
                                • *

                                  * Cannot end with a hyphen or contain two consecutive hyphens *

                                  *
                                • *
                                * * @param dBParameterGroupName * The name of the DB parameter group to associate with this DB instance. If this argument is omitted, the * default DBParameterGroup for the specified engine is used.

                                *

                                * Constraints: *

                                *
                                  *
                                • *

                                  * Must be 1 to 255 letters, numbers, or hyphens. *

                                  *
                                • *
                                • *

                                  * First character must be a letter *

                                  *
                                • *
                                • *

                                  * Cannot end with a hyphen or contain two consecutive hyphens *

                                  *
                                • */ public void setDBParameterGroupName(String dBParameterGroupName) { this.dBParameterGroupName = dBParameterGroupName; } /** *

                                  * The name of the DB parameter group to associate with this DB instance. If this argument is omitted, the default * DBParameterGroup for the specified engine is used. *

                                  *

                                  * Constraints: *

                                  *
                                    *
                                  • *

                                    * Must be 1 to 255 letters, numbers, or hyphens. *

                                    *
                                  • *
                                  • *

                                    * First character must be a letter *

                                    *
                                  • *
                                  • *

                                    * Cannot end with a hyphen or contain two consecutive hyphens *

                                    *
                                  • *
                                  * * @return The name of the DB parameter group to associate with this DB instance. If this argument is omitted, the * default DBParameterGroup for the specified engine is used.

                                  *

                                  * Constraints: *

                                  *
                                    *
                                  • *

                                    * Must be 1 to 255 letters, numbers, or hyphens. *

                                    *
                                  • *
                                  • *

                                    * First character must be a letter *

                                    *
                                  • *
                                  • *

                                    * Cannot end with a hyphen or contain two consecutive hyphens *

                                    *
                                  • */ public String getDBParameterGroupName() { return this.dBParameterGroupName; } /** *

                                    * The name of the DB parameter group to associate with this DB instance. If this argument is omitted, the default * DBParameterGroup for the specified engine is used. *

                                    *

                                    * Constraints: *

                                    *
                                      *
                                    • *

                                      * Must be 1 to 255 letters, numbers, or hyphens. *

                                      *
                                    • *
                                    • *

                                      * First character must be a letter *

                                      *
                                    • *
                                    • *

                                      * Cannot end with a hyphen or contain two consecutive hyphens *

                                      *
                                    • *
                                    * * @param dBParameterGroupName * The name of the DB parameter group to associate with this DB instance. If this argument is omitted, the * default DBParameterGroup for the specified engine is used.

                                    *

                                    * Constraints: *

                                    *
                                      *
                                    • *

                                      * Must be 1 to 255 letters, numbers, or hyphens. *

                                      *
                                    • *
                                    • *

                                      * First character must be a letter *

                                      *
                                    • *
                                    • *

                                      * Cannot end with a hyphen or contain two consecutive hyphens *

                                      *
                                    • * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withDBParameterGroupName(String dBParameterGroupName) { setDBParameterGroupName(dBParameterGroupName); return this; } /** *

                                      * The number of days for which automated backups are retained. Setting this parameter to a positive number enables * backups. Setting this parameter to 0 disables automated backups. *

                                      *

                                      * Amazon Aurora *

                                      *

                                      * Not applicable. The retention period for automated backups is managed by the DB cluster. For more information, * see CreateDBCluster. *

                                      *

                                      * Default: 1 *

                                      *

                                      * Constraints: *

                                      *
                                        *
                                      • *

                                        * Must be a value from 0 to 35 *

                                        *
                                      • *
                                      • *

                                        * Cannot be set to 0 if the DB instance is a source to Read Replicas *

                                        *
                                      • *
                                      * * @param backupRetentionPeriod * The number of days for which automated backups are retained. Setting this parameter to a positive number * enables backups. Setting this parameter to 0 disables automated backups.

                                      *

                                      * Amazon Aurora *

                                      *

                                      * Not applicable. The retention period for automated backups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                      *

                                      * Default: 1 *

                                      *

                                      * Constraints: *

                                      *
                                        *
                                      • *

                                        * Must be a value from 0 to 35 *

                                        *
                                      • *
                                      • *

                                        * Cannot be set to 0 if the DB instance is a source to Read Replicas *

                                        *
                                      • */ public void setBackupRetentionPeriod(Integer backupRetentionPeriod) { this.backupRetentionPeriod = backupRetentionPeriod; } /** *

                                        * The number of days for which automated backups are retained. Setting this parameter to a positive number enables * backups. Setting this parameter to 0 disables automated backups. *

                                        *

                                        * Amazon Aurora *

                                        *

                                        * Not applicable. The retention period for automated backups is managed by the DB cluster. For more information, * see CreateDBCluster. *

                                        *

                                        * Default: 1 *

                                        *

                                        * Constraints: *

                                        *
                                          *
                                        • *

                                          * Must be a value from 0 to 35 *

                                          *
                                        • *
                                        • *

                                          * Cannot be set to 0 if the DB instance is a source to Read Replicas *

                                          *
                                        • *
                                        * * @return The number of days for which automated backups are retained. Setting this parameter to a positive number * enables backups. Setting this parameter to 0 disables automated backups.

                                        *

                                        * Amazon Aurora *

                                        *

                                        * Not applicable. The retention period for automated backups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                        *

                                        * Default: 1 *

                                        *

                                        * Constraints: *

                                        *
                                          *
                                        • *

                                          * Must be a value from 0 to 35 *

                                          *
                                        • *
                                        • *

                                          * Cannot be set to 0 if the DB instance is a source to Read Replicas *

                                          *
                                        • */ public Integer getBackupRetentionPeriod() { return this.backupRetentionPeriod; } /** *

                                          * The number of days for which automated backups are retained. Setting this parameter to a positive number enables * backups. Setting this parameter to 0 disables automated backups. *

                                          *

                                          * Amazon Aurora *

                                          *

                                          * Not applicable. The retention period for automated backups is managed by the DB cluster. For more information, * see CreateDBCluster. *

                                          *

                                          * Default: 1 *

                                          *

                                          * Constraints: *

                                          *
                                            *
                                          • *

                                            * Must be a value from 0 to 35 *

                                            *
                                          • *
                                          • *

                                            * Cannot be set to 0 if the DB instance is a source to Read Replicas *

                                            *
                                          • *
                                          * * @param backupRetentionPeriod * The number of days for which automated backups are retained. Setting this parameter to a positive number * enables backups. Setting this parameter to 0 disables automated backups.

                                          *

                                          * Amazon Aurora *

                                          *

                                          * Not applicable. The retention period for automated backups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                          *

                                          * Default: 1 *

                                          *

                                          * Constraints: *

                                          *
                                            *
                                          • *

                                            * Must be a value from 0 to 35 *

                                            *
                                          • *
                                          • *

                                            * Cannot be set to 0 if the DB instance is a source to Read Replicas *

                                            *
                                          • * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withBackupRetentionPeriod(Integer backupRetentionPeriod) { setBackupRetentionPeriod(backupRetentionPeriod); return this; } /** *

                                            * The daily time range during which automated backups are created if automated backups are enabled, using the * BackupRetentionPeriod parameter. For more information, see The Backup Window. *

                                            *

                                            * Amazon Aurora *

                                            *

                                            * Not applicable. The daily time range for creating automated backups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                            *

                                            * The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region. To see the * time blocks available, see Adjusting the Preferred DB Instance Maintenance Window. *

                                            *

                                            * Constraints: *

                                            *
                                              *
                                            • *

                                              * Must be in the format hh24:mi-hh24:mi. *

                                              *
                                            • *
                                            • *

                                              * Must be in Universal Coordinated Time (UTC). *

                                              *
                                            • *
                                            • *

                                              * Must not conflict with the preferred maintenance window. *

                                              *
                                            • *
                                            • *

                                              * Must be at least 30 minutes. *

                                              *
                                            • *
                                            * * @param preferredBackupWindow * The daily time range during which automated backups are created if automated backups are enabled, using * the BackupRetentionPeriod parameter. For more information, see The Backup Window.

                                            *

                                            * Amazon Aurora *

                                            *

                                            * Not applicable. The daily time range for creating automated backups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                            *

                                            * The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region. To * see the time blocks available, see Adjusting the Preferred DB Instance Maintenance Window. *

                                            *

                                            * Constraints: *

                                            *
                                              *
                                            • *

                                              * Must be in the format hh24:mi-hh24:mi. *

                                              *
                                            • *
                                            • *

                                              * Must be in Universal Coordinated Time (UTC). *

                                              *
                                            • *
                                            • *

                                              * Must not conflict with the preferred maintenance window. *

                                              *
                                            • *
                                            • *

                                              * Must be at least 30 minutes. *

                                              *
                                            • */ public void setPreferredBackupWindow(String preferredBackupWindow) { this.preferredBackupWindow = preferredBackupWindow; } /** *

                                              * The daily time range during which automated backups are created if automated backups are enabled, using the * BackupRetentionPeriod parameter. For more information, see The Backup Window. *

                                              *

                                              * Amazon Aurora *

                                              *

                                              * Not applicable. The daily time range for creating automated backups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                              *

                                              * The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region. To see the * time blocks available, see Adjusting the Preferred DB Instance Maintenance Window. *

                                              *

                                              * Constraints: *

                                              *
                                                *
                                              • *

                                                * Must be in the format hh24:mi-hh24:mi. *

                                                *
                                              • *
                                              • *

                                                * Must be in Universal Coordinated Time (UTC). *

                                                *
                                              • *
                                              • *

                                                * Must not conflict with the preferred maintenance window. *

                                                *
                                              • *
                                              • *

                                                * Must be at least 30 minutes. *

                                                *
                                              • *
                                              * * @return The daily time range during which automated backups are created if automated backups are enabled, using * the BackupRetentionPeriod parameter. For more information, see The Backup Window.

                                              *

                                              * Amazon Aurora *

                                              *

                                              * Not applicable. The daily time range for creating automated backups is managed by the DB cluster. For * more information, see CreateDBCluster. *

                                              *

                                              * The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region. To * see the time blocks available, see Adjusting the Preferred DB Instance Maintenance Window. *

                                              *

                                              * Constraints: *

                                              *
                                                *
                                              • *

                                                * Must be in the format hh24:mi-hh24:mi. *

                                                *
                                              • *
                                              • *

                                                * Must be in Universal Coordinated Time (UTC). *

                                                *
                                              • *
                                              • *

                                                * Must not conflict with the preferred maintenance window. *

                                                *
                                              • *
                                              • *

                                                * Must be at least 30 minutes. *

                                                *
                                              • */ public String getPreferredBackupWindow() { return this.preferredBackupWindow; } /** *

                                                * The daily time range during which automated backups are created if automated backups are enabled, using the * BackupRetentionPeriod parameter. For more information, see The Backup Window. *

                                                *

                                                * Amazon Aurora *

                                                *

                                                * Not applicable. The daily time range for creating automated backups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                                *

                                                * The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region. To see the * time blocks available, see Adjusting the Preferred DB Instance Maintenance Window. *

                                                *

                                                * Constraints: *

                                                *
                                                  *
                                                • *

                                                  * Must be in the format hh24:mi-hh24:mi. *

                                                  *
                                                • *
                                                • *

                                                  * Must be in Universal Coordinated Time (UTC). *

                                                  *
                                                • *
                                                • *

                                                  * Must not conflict with the preferred maintenance window. *

                                                  *
                                                • *
                                                • *

                                                  * Must be at least 30 minutes. *

                                                  *
                                                • *
                                                * * @param preferredBackupWindow * The daily time range during which automated backups are created if automated backups are enabled, using * the BackupRetentionPeriod parameter. For more information, see The Backup Window.

                                                *

                                                * Amazon Aurora *

                                                *

                                                * Not applicable. The daily time range for creating automated backups is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                                *

                                                * The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region. To * see the time blocks available, see Adjusting the Preferred DB Instance Maintenance Window. *

                                                *

                                                * Constraints: *

                                                *
                                                  *
                                                • *

                                                  * Must be in the format hh24:mi-hh24:mi. *

                                                  *
                                                • *
                                                • *

                                                  * Must be in Universal Coordinated Time (UTC). *

                                                  *
                                                • *
                                                • *

                                                  * Must not conflict with the preferred maintenance window. *

                                                  *
                                                • *
                                                • *

                                                  * Must be at least 30 minutes. *

                                                  *
                                                • * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withPreferredBackupWindow(String preferredBackupWindow) { setPreferredBackupWindow(preferredBackupWindow); return this; } /** *

                                                  * The port number on which the database accepts connections. *

                                                  *

                                                  * MySQL *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * MariaDB *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * PostgreSQL *

                                                  *

                                                  * Default: 5432 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * Oracle *

                                                  *

                                                  * Default: 1521 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * SQL Server *

                                                  *

                                                  * Default: 1433 *

                                                  *

                                                  * Valid Values: 1150-65535 except for 1434, 3389, 47001, * 49152, and 49152 through 49156. *

                                                  *

                                                  * Amazon Aurora *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  * * @param port * The port number on which the database accepts connections.

                                                  *

                                                  * MySQL *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * MariaDB *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * PostgreSQL *

                                                  *

                                                  * Default: 5432 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * Oracle *

                                                  *

                                                  * Default: 1521 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * SQL Server *

                                                  *

                                                  * Default: 1433 *

                                                  *

                                                  * Valid Values: 1150-65535 except for 1434, 3389, 47001, * 49152, and 49152 through 49156. *

                                                  *

                                                  * Amazon Aurora *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer */ public void setPort(Integer port) { this.port = port; } /** *

                                                  * The port number on which the database accepts connections. *

                                                  *

                                                  * MySQL *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * MariaDB *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * PostgreSQL *

                                                  *

                                                  * Default: 5432 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * Oracle *

                                                  *

                                                  * Default: 1521 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * SQL Server *

                                                  *

                                                  * Default: 1433 *

                                                  *

                                                  * Valid Values: 1150-65535 except for 1434, 3389, 47001, * 49152, and 49152 through 49156. *

                                                  *

                                                  * Amazon Aurora *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  * * @return The port number on which the database accepts connections.

                                                  *

                                                  * MySQL *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * MariaDB *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * PostgreSQL *

                                                  *

                                                  * Default: 5432 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * Oracle *

                                                  *

                                                  * Default: 1521 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * SQL Server *

                                                  *

                                                  * Default: 1433 *

                                                  *

                                                  * Valid Values: 1150-65535 except for 1434, 3389, 47001, 49152, and 49152 through 49156. *

                                                  *

                                                  * Amazon Aurora *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer */ public Integer getPort() { return this.port; } /** *

                                                  * The port number on which the database accepts connections. *

                                                  *

                                                  * MySQL *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * MariaDB *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * PostgreSQL *

                                                  *

                                                  * Default: 5432 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * Oracle *

                                                  *

                                                  * Default: 1521 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * SQL Server *

                                                  *

                                                  * Default: 1433 *

                                                  *

                                                  * Valid Values: 1150-65535 except for 1434, 3389, 47001, * 49152, and 49152 through 49156. *

                                                  *

                                                  * Amazon Aurora *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  * * @param port * The port number on which the database accepts connections.

                                                  *

                                                  * MySQL *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * MariaDB *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * PostgreSQL *

                                                  *

                                                  * Default: 5432 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer *

                                                  *

                                                  * Oracle *

                                                  *

                                                  * Default: 1521 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * SQL Server *

                                                  *

                                                  * Default: 1433 *

                                                  *

                                                  * Valid Values: 1150-65535 except for 1434, 3389, 47001, * 49152, and 49152 through 49156. *

                                                  *

                                                  * Amazon Aurora *

                                                  *

                                                  * Default: 3306 *

                                                  *

                                                  * Valid Values: 1150-65535 *

                                                  *

                                                  * Type: Integer * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withPort(Integer port) { setPort(port); return this; } /** *

                                                  * Specifies if the DB instance is a Multi-AZ deployment. You can't set the AvailabilityZone parameter if the * MultiAZ parameter is set to true. *

                                                  * * @param multiAZ * Specifies if the DB instance is a Multi-AZ deployment. You can't set the AvailabilityZone parameter if the * MultiAZ parameter is set to true. */ public void setMultiAZ(Boolean multiAZ) { this.multiAZ = multiAZ; } /** *

                                                  * Specifies if the DB instance is a Multi-AZ deployment. You can't set the AvailabilityZone parameter if the * MultiAZ parameter is set to true. *

                                                  * * @return Specifies if the DB instance is a Multi-AZ deployment. You can't set the AvailabilityZone parameter if * the MultiAZ parameter is set to true. */ public Boolean getMultiAZ() { return this.multiAZ; } /** *

                                                  * Specifies if the DB instance is a Multi-AZ deployment. You can't set the AvailabilityZone parameter if the * MultiAZ parameter is set to true. *

                                                  * * @param multiAZ * Specifies if the DB instance is a Multi-AZ deployment. You can't set the AvailabilityZone parameter if the * MultiAZ parameter is set to true. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withMultiAZ(Boolean multiAZ) { setMultiAZ(multiAZ); return this; } /** *

                                                  * Specifies if the DB instance is a Multi-AZ deployment. You can't set the AvailabilityZone parameter if the * MultiAZ parameter is set to true. *

                                                  * * @return Specifies if the DB instance is a Multi-AZ deployment. You can't set the AvailabilityZone parameter if * the MultiAZ parameter is set to true. */ public Boolean isMultiAZ() { return this.multiAZ; } /** *

                                                  * The version number of the database engine to use. *

                                                  *

                                                  * The following are the database engines and major and minor versions that are available with Amazon RDS. Not every * database engine is available for every AWS Region. *

                                                  *

                                                  * Amazon Aurora *

                                                  *

                                                  * Not applicable. The version number of the database engine to be used by the DB instance is managed by the DB * cluster. For more information, see CreateDBCluster. *

                                                  *

                                                  * MariaDB *

                                                  *
                                                    *
                                                  • *

                                                    * 10.2.11 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  *

                                                  *

                                                    *
                                                  • *

                                                    * 10.1.26 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.1.23 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.1.19 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.1.14 (supported in all AWS Regions except us-east-2) *

                                                    *
                                                  • *
                                                  *

                                                  *

                                                    *
                                                  • *

                                                    * 10.0.32 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.0.31 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.0.28 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.0.24 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.0.17 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

                                                    *
                                                  • *
                                                  *

                                                  * Microsoft SQL Server 2017 *

                                                  *
                                                    *
                                                  • *

                                                    * 14.00.1000.169.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  *

                                                  * Microsoft SQL Server 2016 *

                                                  *
                                                    *
                                                  • *

                                                    * 13.00.4451.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 13.00.4422.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 13.00.2164.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  *

                                                  * Microsoft SQL Server 2014 *

                                                  *
                                                    *
                                                  • *

                                                    * 12.00.5546.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.00.5000.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.00.4422.0.v1 (supported for all editions except Enterprise Edition, and all AWS Regions except * ca-central-1 and eu-west-2) *

                                                    *
                                                  • *
                                                  *

                                                  * Microsoft SQL Server 2012 *

                                                  *
                                                    *
                                                  • *

                                                    * 11.00.6594.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.00.6020.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.00.5058.0.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, and * eu-west-2) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.00.2100.60.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, * and eu-west-2) *

                                                    *
                                                  • *
                                                  *

                                                  * Microsoft SQL Server 2008 R2 *

                                                  *
                                                    *
                                                  • *

                                                    * 10.50.6529.0.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, and * eu-west-2) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.50.6000.34.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, * and eu-west-2) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.50.2789.0.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, and * eu-west-2) *

                                                    *
                                                  • *
                                                  *

                                                  * MySQL *

                                                  *
                                                    *
                                                  • *

                                                    * 5.7.19 (supported in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.7.17 (supported in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.7.16 (supported in all AWS regions) *

                                                    *
                                                  • *
                                                  *

                                                  *

                                                    *
                                                  • *

                                                    * 5.6.37 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.6.35 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.6.34 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.6.29 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.6.27 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

                                                    *
                                                  • *
                                                  *

                                                  *

                                                    *
                                                  • *

                                                    * 5.5.57 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.5.54 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.5.53 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.5.46 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  *

                                                  * Oracle 12c *

                                                  *
                                                    *
                                                  • *

                                                    * 12.1.0.2.v9 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v8 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v7 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v6 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v5 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v4 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v3 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v2 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v1 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                    *
                                                  • *
                                                  *

                                                  * Oracle 11g *

                                                  *
                                                    *
                                                  • *

                                                    * 11.2.0.4.v13 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v12 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v11 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v10 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v9 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v8 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v7 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v6 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v5 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v4 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v3 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v1 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  *

                                                  * PostgreSQL *

                                                  *
                                                    *
                                                  • *

                                                    * Version 9.6.x: 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1 *

                                                    *
                                                  • *
                                                  • *

                                                    * Version 9.5.x: 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2 *

                                                    *
                                                  • *
                                                  • *

                                                    * Version 9.4.x: 9.4.14 | 9.4.12 | 9.4.11 | 9.4.9 | 9.4.7 *

                                                    *
                                                  • *
                                                  • *

                                                    * Version 9.3.x: 9.3.19 | 9.3.17 | 9.3.16 | 9.3.14 | 9.3.12 *

                                                    *
                                                  • *
                                                  * * @param engineVersion * The version number of the database engine to use.

                                                  *

                                                  * The following are the database engines and major and minor versions that are available with Amazon RDS. * Not every database engine is available for every AWS Region. *

                                                  *

                                                  * Amazon Aurora *

                                                  *

                                                  * Not applicable. The version number of the database engine to be used by the DB instance is managed by the * DB cluster. For more information, see CreateDBCluster. *

                                                  *

                                                  * MariaDB *

                                                  *
                                                    *
                                                  • *

                                                    * 10.2.11 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  *

                                                  *

                                                    *
                                                  • *

                                                    * 10.1.26 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.1.23 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.1.19 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.1.14 (supported in all AWS Regions except us-east-2) *

                                                    *
                                                  • *
                                                  *

                                                  *

                                                    *
                                                  • *

                                                    * 10.0.32 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.0.31 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.0.28 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.0.24 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.0.17 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

                                                    *
                                                  • *
                                                  *

                                                  * Microsoft SQL Server 2017 *

                                                  *
                                                    *
                                                  • *

                                                    * 14.00.1000.169.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  *

                                                  * Microsoft SQL Server 2016 *

                                                  *
                                                    *
                                                  • *

                                                    * 13.00.4451.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 13.00.4422.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 13.00.2164.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  *

                                                  * Microsoft SQL Server 2014 *

                                                  *
                                                    *
                                                  • *

                                                    * 12.00.5546.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.00.5000.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.00.4422.0.v1 (supported for all editions except Enterprise Edition, and all AWS Regions * except ca-central-1 and eu-west-2) *

                                                    *
                                                  • *
                                                  *

                                                  * Microsoft SQL Server 2012 *

                                                  *
                                                    *
                                                  • *

                                                    * 11.00.6594.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.00.6020.0.v1 (supported for all editions, and all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.00.5058.0.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.00.2100.60.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                    *
                                                  • *
                                                  *

                                                  * Microsoft SQL Server 2008 R2 *

                                                  *
                                                    *
                                                  • *

                                                    * 10.50.6529.0.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.50.6000.34.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                    *
                                                  • *
                                                  • *

                                                    * 10.50.2789.0.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                    *
                                                  • *
                                                  *

                                                  * MySQL *

                                                  *
                                                    *
                                                  • *

                                                    * 5.7.19 (supported in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.7.17 (supported in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.7.16 (supported in all AWS regions) *

                                                    *
                                                  • *
                                                  *

                                                  *

                                                    *
                                                  • *

                                                    * 5.6.37 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.6.35 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.6.34 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.6.29 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.6.27 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

                                                    *
                                                  • *
                                                  *

                                                  *

                                                    *
                                                  • *

                                                    * 5.5.57 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.5.54 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.5.53 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 5.5.46 (supported in all AWS Regions) *

                                                    *
                                                  • *
                                                  *

                                                  * Oracle 12c *

                                                  *
                                                    *
                                                  • *

                                                    * 12.1.0.2.v9 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v8 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v7 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v6 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v5 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v4 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v3 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v2 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                    *
                                                  • *
                                                  • *

                                                    * 12.1.0.2.v1 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                    *
                                                  • *
                                                  *

                                                  * Oracle 11g *

                                                  *
                                                    *
                                                  • *

                                                    * 11.2.0.4.v13 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v12 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v11 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v10 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v9 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v8 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v7 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v6 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v5 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v4 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v3 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  • *

                                                    * 11.2.0.4.v1 (supported for EE, SE1, and SE, in all AWS regions) *

                                                    *
                                                  • *
                                                  *

                                                  * PostgreSQL *

                                                  *
                                                    *
                                                  • *

                                                    * Version 9.6.x: 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1 *

                                                    *
                                                  • *
                                                  • *

                                                    * Version 9.5.x: 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2 *

                                                    *
                                                  • *
                                                  • *

                                                    * Version 9.4.x: 9.4.14 | 9.4.12 | 9.4.11 | 9.4.9 | 9.4.7 *

                                                    *
                                                  • *
                                                  • *

                                                    * Version 9.3.x: 9.3.19 | 9.3.17 | 9.3.16 | 9.3.14 | 9.3.12 *

                                                    *
                                                  • */ public void setEngineVersion(String engineVersion) { this.engineVersion = engineVersion; } /** *

                                                    * The version number of the database engine to use. *

                                                    *

                                                    * The following are the database engines and major and minor versions that are available with Amazon RDS. Not every * database engine is available for every AWS Region. *

                                                    *

                                                    * Amazon Aurora *

                                                    *

                                                    * Not applicable. The version number of the database engine to be used by the DB instance is managed by the DB * cluster. For more information, see CreateDBCluster. *

                                                    *

                                                    * MariaDB *

                                                    *
                                                      *
                                                    • *

                                                      * 10.2.11 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    *

                                                    *

                                                      *
                                                    • *

                                                      * 10.1.26 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.1.23 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.1.19 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.1.14 (supported in all AWS Regions except us-east-2) *

                                                      *
                                                    • *
                                                    *

                                                    *

                                                      *
                                                    • *

                                                      * 10.0.32 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.0.31 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.0.28 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.0.24 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.0.17 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

                                                      *
                                                    • *
                                                    *

                                                    * Microsoft SQL Server 2017 *

                                                    *
                                                      *
                                                    • *

                                                      * 14.00.1000.169.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    *

                                                    * Microsoft SQL Server 2016 *

                                                    *
                                                      *
                                                    • *

                                                      * 13.00.4451.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 13.00.4422.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 13.00.2164.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    *

                                                    * Microsoft SQL Server 2014 *

                                                    *
                                                      *
                                                    • *

                                                      * 12.00.5546.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.00.5000.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.00.4422.0.v1 (supported for all editions except Enterprise Edition, and all AWS Regions except * ca-central-1 and eu-west-2) *

                                                      *
                                                    • *
                                                    *

                                                    * Microsoft SQL Server 2012 *

                                                    *
                                                      *
                                                    • *

                                                      * 11.00.6594.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.00.6020.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.00.5058.0.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, and * eu-west-2) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.00.2100.60.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, * and eu-west-2) *

                                                      *
                                                    • *
                                                    *

                                                    * Microsoft SQL Server 2008 R2 *

                                                    *
                                                      *
                                                    • *

                                                      * 10.50.6529.0.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, and * eu-west-2) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.50.6000.34.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, * and eu-west-2) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.50.2789.0.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, and * eu-west-2) *

                                                      *
                                                    • *
                                                    *

                                                    * MySQL *

                                                    *
                                                      *
                                                    • *

                                                      * 5.7.19 (supported in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.7.17 (supported in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.7.16 (supported in all AWS regions) *

                                                      *
                                                    • *
                                                    *

                                                    *

                                                      *
                                                    • *

                                                      * 5.6.37 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.6.35 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.6.34 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.6.29 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.6.27 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

                                                      *
                                                    • *
                                                    *

                                                    *

                                                      *
                                                    • *

                                                      * 5.5.57 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.5.54 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.5.53 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.5.46 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    *

                                                    * Oracle 12c *

                                                    *
                                                      *
                                                    • *

                                                      * 12.1.0.2.v9 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v8 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v7 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v6 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v5 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v4 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v3 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v2 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v1 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                      *
                                                    • *
                                                    *

                                                    * Oracle 11g *

                                                    *
                                                      *
                                                    • *

                                                      * 11.2.0.4.v13 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v12 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v11 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v10 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v9 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v8 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v7 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v6 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v5 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v4 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v3 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v1 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    *

                                                    * PostgreSQL *

                                                    *
                                                      *
                                                    • *

                                                      * Version 9.6.x: 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1 *

                                                      *
                                                    • *
                                                    • *

                                                      * Version 9.5.x: 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2 *

                                                      *
                                                    • *
                                                    • *

                                                      * Version 9.4.x: 9.4.14 | 9.4.12 | 9.4.11 | 9.4.9 | 9.4.7 *

                                                      *
                                                    • *
                                                    • *

                                                      * Version 9.3.x: 9.3.19 | 9.3.17 | 9.3.16 | 9.3.14 | 9.3.12 *

                                                      *
                                                    • *
                                                    * * @return The version number of the database engine to use.

                                                    *

                                                    * The following are the database engines and major and minor versions that are available with Amazon RDS. * Not every database engine is available for every AWS Region. *

                                                    *

                                                    * Amazon Aurora *

                                                    *

                                                    * Not applicable. The version number of the database engine to be used by the DB instance is managed by the * DB cluster. For more information, see CreateDBCluster. *

                                                    *

                                                    * MariaDB *

                                                    *
                                                      *
                                                    • *

                                                      * 10.2.11 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    *

                                                    *

                                                      *
                                                    • *

                                                      * 10.1.26 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.1.23 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.1.19 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.1.14 (supported in all AWS Regions except us-east-2) *

                                                      *
                                                    • *
                                                    *

                                                    *

                                                      *
                                                    • *

                                                      * 10.0.32 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.0.31 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.0.28 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.0.24 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.0.17 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

                                                      *
                                                    • *
                                                    *

                                                    * Microsoft SQL Server 2017 *

                                                    *
                                                      *
                                                    • *

                                                      * 14.00.1000.169.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    *

                                                    * Microsoft SQL Server 2016 *

                                                    *
                                                      *
                                                    • *

                                                      * 13.00.4451.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 13.00.4422.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 13.00.2164.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    *

                                                    * Microsoft SQL Server 2014 *

                                                    *
                                                      *
                                                    • *

                                                      * 12.00.5546.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.00.5000.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.00.4422.0.v1 (supported for all editions except Enterprise Edition, and all AWS Regions * except ca-central-1 and eu-west-2) *

                                                      *
                                                    • *
                                                    *

                                                    * Microsoft SQL Server 2012 *

                                                    *
                                                      *
                                                    • *

                                                      * 11.00.6594.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.00.6020.0.v1 (supported for all editions, and all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.00.5058.0.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.00.2100.60.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                      *
                                                    • *
                                                    *

                                                    * Microsoft SQL Server 2008 R2 *

                                                    *
                                                      *
                                                    • *

                                                      * 10.50.6529.0.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.50.6000.34.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                      *
                                                    • *
                                                    • *

                                                      * 10.50.2789.0.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                      *
                                                    • *
                                                    *

                                                    * MySQL *

                                                    *
                                                      *
                                                    • *

                                                      * 5.7.19 (supported in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.7.17 (supported in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.7.16 (supported in all AWS regions) *

                                                      *
                                                    • *
                                                    *

                                                    *

                                                      *
                                                    • *

                                                      * 5.6.37 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.6.35 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.6.34 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.6.29 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.6.27 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

                                                      *
                                                    • *
                                                    *

                                                    *

                                                      *
                                                    • *

                                                      * 5.5.57 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.5.54 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.5.53 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 5.5.46 (supported in all AWS Regions) *

                                                      *
                                                    • *
                                                    *

                                                    * Oracle 12c *

                                                    *
                                                      *
                                                    • *

                                                      * 12.1.0.2.v9 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v8 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v7 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v6 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v5 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v4 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v3 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v2 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                      *
                                                    • *
                                                    • *

                                                      * 12.1.0.2.v1 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                      *
                                                    • *
                                                    *

                                                    * Oracle 11g *

                                                    *
                                                      *
                                                    • *

                                                      * 11.2.0.4.v13 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v12 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v11 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v10 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v9 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v8 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v7 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v6 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v5 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v4 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v3 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    • *

                                                      * 11.2.0.4.v1 (supported for EE, SE1, and SE, in all AWS regions) *

                                                      *
                                                    • *
                                                    *

                                                    * PostgreSQL *

                                                    *
                                                      *
                                                    • *

                                                      * Version 9.6.x: 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1 *

                                                      *
                                                    • *
                                                    • *

                                                      * Version 9.5.x: 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2 *

                                                      *
                                                    • *
                                                    • *

                                                      * Version 9.4.x: 9.4.14 | 9.4.12 | 9.4.11 | 9.4.9 | 9.4.7 *

                                                      *
                                                    • *
                                                    • *

                                                      * Version 9.3.x: 9.3.19 | 9.3.17 | 9.3.16 | 9.3.14 | 9.3.12 *

                                                      *
                                                    • */ public String getEngineVersion() { return this.engineVersion; } /** *

                                                      * The version number of the database engine to use. *

                                                      *

                                                      * The following are the database engines and major and minor versions that are available with Amazon RDS. Not every * database engine is available for every AWS Region. *

                                                      *

                                                      * Amazon Aurora *

                                                      *

                                                      * Not applicable. The version number of the database engine to be used by the DB instance is managed by the DB * cluster. For more information, see CreateDBCluster. *

                                                      *

                                                      * MariaDB *

                                                      *
                                                        *
                                                      • *

                                                        * 10.2.11 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      *

                                                      *

                                                        *
                                                      • *

                                                        * 10.1.26 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.1.23 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.1.19 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.1.14 (supported in all AWS Regions except us-east-2) *

                                                        *
                                                      • *
                                                      *

                                                      *

                                                        *
                                                      • *

                                                        * 10.0.32 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.0.31 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.0.28 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.0.24 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.0.17 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

                                                        *
                                                      • *
                                                      *

                                                      * Microsoft SQL Server 2017 *

                                                      *
                                                        *
                                                      • *

                                                        * 14.00.1000.169.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      *

                                                      * Microsoft SQL Server 2016 *

                                                      *
                                                        *
                                                      • *

                                                        * 13.00.4451.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 13.00.4422.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 13.00.2164.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      *

                                                      * Microsoft SQL Server 2014 *

                                                      *
                                                        *
                                                      • *

                                                        * 12.00.5546.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.00.5000.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.00.4422.0.v1 (supported for all editions except Enterprise Edition, and all AWS Regions except * ca-central-1 and eu-west-2) *

                                                        *
                                                      • *
                                                      *

                                                      * Microsoft SQL Server 2012 *

                                                      *
                                                        *
                                                      • *

                                                        * 11.00.6594.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.00.6020.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.00.5058.0.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, and * eu-west-2) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.00.2100.60.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, * and eu-west-2) *

                                                        *
                                                      • *
                                                      *

                                                      * Microsoft SQL Server 2008 R2 *

                                                      *
                                                        *
                                                      • *

                                                        * 10.50.6529.0.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, and * eu-west-2) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.50.6000.34.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, * and eu-west-2) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.50.2789.0.v1 (supported for all editions, and all AWS Regions except us-east-2, ca-central-1, and * eu-west-2) *

                                                        *
                                                      • *
                                                      *

                                                      * MySQL *

                                                      *
                                                        *
                                                      • *

                                                        * 5.7.19 (supported in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.7.17 (supported in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.7.16 (supported in all AWS regions) *

                                                        *
                                                      • *
                                                      *

                                                      *

                                                        *
                                                      • *

                                                        * 5.6.37 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.6.35 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.6.34 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.6.29 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.6.27 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

                                                        *
                                                      • *
                                                      *

                                                      *

                                                        *
                                                      • *

                                                        * 5.5.57 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.5.54 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.5.53 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.5.46 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      *

                                                      * Oracle 12c *

                                                      *
                                                        *
                                                      • *

                                                        * 12.1.0.2.v9 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v8 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v7 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v6 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v5 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v4 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v3 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v2 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v1 (supported for EE in all AWS regions, and SE2 in all AWS regions except us-gov-west-1) *

                                                        *
                                                      • *
                                                      *

                                                      * Oracle 11g *

                                                      *
                                                        *
                                                      • *

                                                        * 11.2.0.4.v13 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v12 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v11 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v10 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v9 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v8 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v7 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v6 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v5 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v4 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v3 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v1 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      *

                                                      * PostgreSQL *

                                                      *
                                                        *
                                                      • *

                                                        * Version 9.6.x: 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1 *

                                                        *
                                                      • *
                                                      • *

                                                        * Version 9.5.x: 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2 *

                                                        *
                                                      • *
                                                      • *

                                                        * Version 9.4.x: 9.4.14 | 9.4.12 | 9.4.11 | 9.4.9 | 9.4.7 *

                                                        *
                                                      • *
                                                      • *

                                                        * Version 9.3.x: 9.3.19 | 9.3.17 | 9.3.16 | 9.3.14 | 9.3.12 *

                                                        *
                                                      • *
                                                      * * @param engineVersion * The version number of the database engine to use.

                                                      *

                                                      * The following are the database engines and major and minor versions that are available with Amazon RDS. * Not every database engine is available for every AWS Region. *

                                                      *

                                                      * Amazon Aurora *

                                                      *

                                                      * Not applicable. The version number of the database engine to be used by the DB instance is managed by the * DB cluster. For more information, see CreateDBCluster. *

                                                      *

                                                      * MariaDB *

                                                      *
                                                        *
                                                      • *

                                                        * 10.2.11 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      *

                                                      *

                                                        *
                                                      • *

                                                        * 10.1.26 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.1.23 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.1.19 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.1.14 (supported in all AWS Regions except us-east-2) *

                                                        *
                                                      • *
                                                      *

                                                      *

                                                        *
                                                      • *

                                                        * 10.0.32 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.0.31 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.0.28 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.0.24 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.0.17 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

                                                        *
                                                      • *
                                                      *

                                                      * Microsoft SQL Server 2017 *

                                                      *
                                                        *
                                                      • *

                                                        * 14.00.1000.169.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      *

                                                      * Microsoft SQL Server 2016 *

                                                      *
                                                        *
                                                      • *

                                                        * 13.00.4451.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 13.00.4422.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 13.00.2164.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      *

                                                      * Microsoft SQL Server 2014 *

                                                      *
                                                        *
                                                      • *

                                                        * 12.00.5546.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.00.5000.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.00.4422.0.v1 (supported for all editions except Enterprise Edition, and all AWS Regions * except ca-central-1 and eu-west-2) *

                                                        *
                                                      • *
                                                      *

                                                      * Microsoft SQL Server 2012 *

                                                      *
                                                        *
                                                      • *

                                                        * 11.00.6594.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.00.6020.0.v1 (supported for all editions, and all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.00.5058.0.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.00.2100.60.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                        *
                                                      • *
                                                      *

                                                      * Microsoft SQL Server 2008 R2 *

                                                      *
                                                        *
                                                      • *

                                                        * 10.50.6529.0.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.50.6000.34.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                        *
                                                      • *
                                                      • *

                                                        * 10.50.2789.0.v1 (supported for all editions, and all AWS Regions except us-east-2, * ca-central-1, and eu-west-2) *

                                                        *
                                                      • *
                                                      *

                                                      * MySQL *

                                                      *
                                                        *
                                                      • *

                                                        * 5.7.19 (supported in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.7.17 (supported in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.7.16 (supported in all AWS regions) *

                                                        *
                                                      • *
                                                      *

                                                      *

                                                        *
                                                      • *

                                                        * 5.6.37 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.6.35 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.6.34 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.6.29 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.6.27 (supported in all AWS Regions except us-east-2, ca-central-1, eu-west-2) *

                                                        *
                                                      • *
                                                      *

                                                      *

                                                        *
                                                      • *

                                                        * 5.5.57 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.5.54 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.5.53 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 5.5.46 (supported in all AWS Regions) *

                                                        *
                                                      • *
                                                      *

                                                      * Oracle 12c *

                                                      *
                                                        *
                                                      • *

                                                        * 12.1.0.2.v9 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v8 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v7 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v6 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v5 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v4 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v3 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v2 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                        *
                                                      • *
                                                      • *

                                                        * 12.1.0.2.v1 (supported for EE in all AWS regions, and SE2 in all AWS regions except * us-gov-west-1) *

                                                        *
                                                      • *
                                                      *

                                                      * Oracle 11g *

                                                      *
                                                        *
                                                      • *

                                                        * 11.2.0.4.v13 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v12 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v11 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v10 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v9 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v8 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v7 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v6 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v5 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v4 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v3 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      • *

                                                        * 11.2.0.4.v1 (supported for EE, SE1, and SE, in all AWS regions) *

                                                        *
                                                      • *
                                                      *

                                                      * PostgreSQL *

                                                      *
                                                        *
                                                      • *

                                                        * Version 9.6.x: 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1 *

                                                        *
                                                      • *
                                                      • *

                                                        * Version 9.5.x: 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2 *

                                                        *
                                                      • *
                                                      • *

                                                        * Version 9.4.x: 9.4.14 | 9.4.12 | 9.4.11 | 9.4.9 | 9.4.7 *

                                                        *
                                                      • *
                                                      • *

                                                        * Version 9.3.x: 9.3.19 | 9.3.17 | 9.3.16 | 9.3.14 | 9.3.12 *

                                                        *
                                                      • * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withEngineVersion(String engineVersion) { setEngineVersion(engineVersion); return this; } /** *

                                                        * Indicates that minor engine upgrades are applied automatically to the DB instance during the maintenance window. *

                                                        *

                                                        * Default: true *

                                                        * * @param autoMinorVersionUpgrade * Indicates that minor engine upgrades are applied automatically to the DB instance during the maintenance * window.

                                                        *

                                                        * Default: true */ public void setAutoMinorVersionUpgrade(Boolean autoMinorVersionUpgrade) { this.autoMinorVersionUpgrade = autoMinorVersionUpgrade; } /** *

                                                        * Indicates that minor engine upgrades are applied automatically to the DB instance during the maintenance window. *

                                                        *

                                                        * Default: true *

                                                        * * @return Indicates that minor engine upgrades are applied automatically to the DB instance during the maintenance * window.

                                                        *

                                                        * Default: true */ public Boolean getAutoMinorVersionUpgrade() { return this.autoMinorVersionUpgrade; } /** *

                                                        * Indicates that minor engine upgrades are applied automatically to the DB instance during the maintenance window. *

                                                        *

                                                        * Default: true *

                                                        * * @param autoMinorVersionUpgrade * Indicates that minor engine upgrades are applied automatically to the DB instance during the maintenance * window.

                                                        *

                                                        * Default: true * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withAutoMinorVersionUpgrade(Boolean autoMinorVersionUpgrade) { setAutoMinorVersionUpgrade(autoMinorVersionUpgrade); return this; } /** *

                                                        * Indicates that minor engine upgrades are applied automatically to the DB instance during the maintenance window. *

                                                        *

                                                        * Default: true *

                                                        * * @return Indicates that minor engine upgrades are applied automatically to the DB instance during the maintenance * window.

                                                        *

                                                        * Default: true */ public Boolean isAutoMinorVersionUpgrade() { return this.autoMinorVersionUpgrade; } /** *

                                                        * License model information for this DB instance. *

                                                        *

                                                        * Valid values: license-included | bring-your-own-license | * general-public-license *

                                                        * * @param licenseModel * License model information for this DB instance.

                                                        *

                                                        * Valid values: license-included | bring-your-own-license | * general-public-license */ public void setLicenseModel(String licenseModel) { this.licenseModel = licenseModel; } /** *

                                                        * License model information for this DB instance. *

                                                        *

                                                        * Valid values: license-included | bring-your-own-license | * general-public-license *

                                                        * * @return License model information for this DB instance.

                                                        *

                                                        * Valid values: license-included | bring-your-own-license | * general-public-license */ public String getLicenseModel() { return this.licenseModel; } /** *

                                                        * License model information for this DB instance. *

                                                        *

                                                        * Valid values: license-included | bring-your-own-license | * general-public-license *

                                                        * * @param licenseModel * License model information for this DB instance.

                                                        *

                                                        * Valid values: license-included | bring-your-own-license | * general-public-license * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withLicenseModel(String licenseModel) { setLicenseModel(licenseModel); return this; } /** *

                                                        * The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB * instance. For information about valid Iops values, see see Amazon RDS Provisioned * IOPS Storage to Improve Performance. *

                                                        *

                                                        * Constraints: Must be a multiple between 1 and 50 of the storage amount for the DB instance. Must also be an * integer multiple of 1000. For example, if the size of your DB instance is 500 GiB, then your Iops * value can be 2000, 3000, 4000, or 5000. *

                                                        * * @param iops * The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB * instance. For information about valid Iops values, see see Amazon RDS * Provisioned IOPS Storage to Improve Performance.

                                                        *

                                                        * Constraints: Must be a multiple between 1 and 50 of the storage amount for the DB instance. Must also be * an integer multiple of 1000. For example, if the size of your DB instance is 500 GiB, then your * Iops value can be 2000, 3000, 4000, or 5000. */ public void setIops(Integer iops) { this.iops = iops; } /** *

                                                        * The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB * instance. For information about valid Iops values, see see Amazon RDS Provisioned * IOPS Storage to Improve Performance. *

                                                        *

                                                        * Constraints: Must be a multiple between 1 and 50 of the storage amount for the DB instance. Must also be an * integer multiple of 1000. For example, if the size of your DB instance is 500 GiB, then your Iops * value can be 2000, 3000, 4000, or 5000. *

                                                        * * @return The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB * instance. For information about valid Iops values, see see Amazon RDS * Provisioned IOPS Storage to Improve Performance.

                                                        *

                                                        * Constraints: Must be a multiple between 1 and 50 of the storage amount for the DB instance. Must also be * an integer multiple of 1000. For example, if the size of your DB instance is 500 GiB, then your * Iops value can be 2000, 3000, 4000, or 5000. */ public Integer getIops() { return this.iops; } /** *

                                                        * The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB * instance. For information about valid Iops values, see see Amazon RDS Provisioned * IOPS Storage to Improve Performance. *

                                                        *

                                                        * Constraints: Must be a multiple between 1 and 50 of the storage amount for the DB instance. Must also be an * integer multiple of 1000. For example, if the size of your DB instance is 500 GiB, then your Iops * value can be 2000, 3000, 4000, or 5000. *

                                                        * * @param iops * The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB * instance. For information about valid Iops values, see see Amazon RDS * Provisioned IOPS Storage to Improve Performance.

                                                        *

                                                        * Constraints: Must be a multiple between 1 and 50 of the storage amount for the DB instance. Must also be * an integer multiple of 1000. For example, if the size of your DB instance is 500 GiB, then your * Iops value can be 2000, 3000, 4000, or 5000. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withIops(Integer iops) { setIops(iops); return this; } /** *

                                                        * Indicates that the DB instance should be associated with the specified option group. *

                                                        *

                                                        * Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option * group, and that option group can't be removed from a DB instance once it is associated with a DB instance *

                                                        * * @param optionGroupName * Indicates that the DB instance should be associated with the specified option group.

                                                        *

                                                        * Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an * option group, and that option group can't be removed from a DB instance once it is associated with a DB * instance */ public void setOptionGroupName(String optionGroupName) { this.optionGroupName = optionGroupName; } /** *

                                                        * Indicates that the DB instance should be associated with the specified option group. *

                                                        *

                                                        * Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option * group, and that option group can't be removed from a DB instance once it is associated with a DB instance *

                                                        * * @return Indicates that the DB instance should be associated with the specified option group.

                                                        *

                                                        * Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an * option group, and that option group can't be removed from a DB instance once it is associated with a DB * instance */ public String getOptionGroupName() { return this.optionGroupName; } /** *

                                                        * Indicates that the DB instance should be associated with the specified option group. *

                                                        *

                                                        * Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option * group, and that option group can't be removed from a DB instance once it is associated with a DB instance *

                                                        * * @param optionGroupName * Indicates that the DB instance should be associated with the specified option group.

                                                        *

                                                        * Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an * option group, and that option group can't be removed from a DB instance once it is associated with a DB * instance * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withOptionGroupName(String optionGroupName) { setOptionGroupName(optionGroupName); return this; } /** *

                                                        * For supported engines, indicates that the DB instance should be associated with the specified CharacterSet. *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The character set is managed by the DB cluster. For more information, see CreateDBCluster. *

                                                        * * @param characterSetName * For supported engines, indicates that the DB instance should be associated with the specified * CharacterSet.

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The character set is managed by the DB cluster. For more information, see * CreateDBCluster. */ public void setCharacterSetName(String characterSetName) { this.characterSetName = characterSetName; } /** *

                                                        * For supported engines, indicates that the DB instance should be associated with the specified CharacterSet. *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The character set is managed by the DB cluster. For more information, see CreateDBCluster. *

                                                        * * @return For supported engines, indicates that the DB instance should be associated with the specified * CharacterSet.

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The character set is managed by the DB cluster. For more information, see * CreateDBCluster. */ public String getCharacterSetName() { return this.characterSetName; } /** *

                                                        * For supported engines, indicates that the DB instance should be associated with the specified CharacterSet. *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The character set is managed by the DB cluster. For more information, see CreateDBCluster. *

                                                        * * @param characterSetName * For supported engines, indicates that the DB instance should be associated with the specified * CharacterSet.

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The character set is managed by the DB cluster. For more information, see * CreateDBCluster. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withCharacterSetName(String characterSetName) { setCharacterSetName(characterSetName); return this; } /** *

                                                        * Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing instance * with a publicly resolvable DNS name, which resolves to a public IP address. A value of false specifies an * internal instance with a DNS name that resolves to a private IP address. *

                                                        *

                                                        * Default: The default behavior varies depending on whether a VPC has been requested or not. The following list * shows the default behavior in each case. *

                                                        *
                                                          *
                                                        • *

                                                          * Default VPC: true *

                                                          *
                                                        • *
                                                        • *

                                                          * VPC: false *

                                                          *
                                                        • *
                                                        *

                                                        * If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been * set, the DB instance is publicly accessible. If a specific DB subnet group has been specified as part of the * request and the PubliclyAccessible value has not been set, the DB instance is private. *

                                                        * * @param publiclyAccessible * Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing * instance with a publicly resolvable DNS name, which resolves to a public IP address. A value of false * specifies an internal instance with a DNS name that resolves to a private IP address.

                                                        *

                                                        * Default: The default behavior varies depending on whether a VPC has been requested or not. The following * list shows the default behavior in each case. *

                                                        *
                                                          *
                                                        • *

                                                          * Default VPC: true *

                                                          *
                                                        • *
                                                        • *

                                                          * VPC: false *

                                                          *
                                                        • *
                                                        *

                                                        * If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not * been set, the DB instance is publicly accessible. If a specific DB subnet group has been specified as part * of the request and the PubliclyAccessible value has not been set, the DB instance is private. */ public void setPubliclyAccessible(Boolean publiclyAccessible) { this.publiclyAccessible = publiclyAccessible; } /** *

                                                        * Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing instance * with a publicly resolvable DNS name, which resolves to a public IP address. A value of false specifies an * internal instance with a DNS name that resolves to a private IP address. *

                                                        *

                                                        * Default: The default behavior varies depending on whether a VPC has been requested or not. The following list * shows the default behavior in each case. *

                                                        *
                                                          *
                                                        • *

                                                          * Default VPC: true *

                                                          *
                                                        • *
                                                        • *

                                                          * VPC: false *

                                                          *
                                                        • *
                                                        *

                                                        * If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been * set, the DB instance is publicly accessible. If a specific DB subnet group has been specified as part of the * request and the PubliclyAccessible value has not been set, the DB instance is private. *

                                                        * * @return Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing * instance with a publicly resolvable DNS name, which resolves to a public IP address. A value of false * specifies an internal instance with a DNS name that resolves to a private IP address.

                                                        *

                                                        * Default: The default behavior varies depending on whether a VPC has been requested or not. The following * list shows the default behavior in each case. *

                                                        *
                                                          *
                                                        • *

                                                          * Default VPC: true *

                                                          *
                                                        • *
                                                        • *

                                                          * VPC: false *

                                                          *
                                                        • *
                                                        *

                                                        * If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not * been set, the DB instance is publicly accessible. If a specific DB subnet group has been specified as * part of the request and the PubliclyAccessible value has not been set, the DB instance is private. */ public Boolean getPubliclyAccessible() { return this.publiclyAccessible; } /** *

                                                        * Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing instance * with a publicly resolvable DNS name, which resolves to a public IP address. A value of false specifies an * internal instance with a DNS name that resolves to a private IP address. *

                                                        *

                                                        * Default: The default behavior varies depending on whether a VPC has been requested or not. The following list * shows the default behavior in each case. *

                                                        *
                                                          *
                                                        • *

                                                          * Default VPC: true *

                                                          *
                                                        • *
                                                        • *

                                                          * VPC: false *

                                                          *
                                                        • *
                                                        *

                                                        * If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been * set, the DB instance is publicly accessible. If a specific DB subnet group has been specified as part of the * request and the PubliclyAccessible value has not been set, the DB instance is private. *

                                                        * * @param publiclyAccessible * Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing * instance with a publicly resolvable DNS name, which resolves to a public IP address. A value of false * specifies an internal instance with a DNS name that resolves to a private IP address.

                                                        *

                                                        * Default: The default behavior varies depending on whether a VPC has been requested or not. The following * list shows the default behavior in each case. *

                                                        *
                                                          *
                                                        • *

                                                          * Default VPC: true *

                                                          *
                                                        • *
                                                        • *

                                                          * VPC: false *

                                                          *
                                                        • *
                                                        *

                                                        * If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not * been set, the DB instance is publicly accessible. If a specific DB subnet group has been specified as part * of the request and the PubliclyAccessible value has not been set, the DB instance is private. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withPubliclyAccessible(Boolean publiclyAccessible) { setPubliclyAccessible(publiclyAccessible); return this; } /** *

                                                        * Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing instance * with a publicly resolvable DNS name, which resolves to a public IP address. A value of false specifies an * internal instance with a DNS name that resolves to a private IP address. *

                                                        *

                                                        * Default: The default behavior varies depending on whether a VPC has been requested or not. The following list * shows the default behavior in each case. *

                                                        *
                                                          *
                                                        • *

                                                          * Default VPC: true *

                                                          *
                                                        • *
                                                        • *

                                                          * VPC: false *

                                                          *
                                                        • *
                                                        *

                                                        * If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been * set, the DB instance is publicly accessible. If a specific DB subnet group has been specified as part of the * request and the PubliclyAccessible value has not been set, the DB instance is private. *

                                                        * * @return Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing * instance with a publicly resolvable DNS name, which resolves to a public IP address. A value of false * specifies an internal instance with a DNS name that resolves to a private IP address.

                                                        *

                                                        * Default: The default behavior varies depending on whether a VPC has been requested or not. The following * list shows the default behavior in each case. *

                                                        *
                                                          *
                                                        • *

                                                          * Default VPC: true *

                                                          *
                                                        • *
                                                        • *

                                                          * VPC: false *

                                                          *
                                                        • *
                                                        *

                                                        * If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not * been set, the DB instance is publicly accessible. If a specific DB subnet group has been specified as * part of the request and the PubliclyAccessible value has not been set, the DB instance is private. */ public Boolean isPubliclyAccessible() { return this.publiclyAccessible; } /** * @return */ public java.util.List getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalList(); } return tags; } /** * @param tags */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new com.amazonaws.internal.SdkInternalList(tags); } /** *

                                                        * NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *

                                                        * * @param tags * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** * @param tags * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withTags(java.util.Collection tags) { setTags(tags); return this; } /** *

                                                        * The identifier of the DB cluster that the instance will belong to. *

                                                        *

                                                        * For information on creating a DB cluster, see CreateDBCluster. *

                                                        *

                                                        * Type: String *

                                                        * * @param dBClusterIdentifier * The identifier of the DB cluster that the instance will belong to.

                                                        *

                                                        * For information on creating a DB cluster, see CreateDBCluster. *

                                                        *

                                                        * Type: String */ public void setDBClusterIdentifier(String dBClusterIdentifier) { this.dBClusterIdentifier = dBClusterIdentifier; } /** *

                                                        * The identifier of the DB cluster that the instance will belong to. *

                                                        *

                                                        * For information on creating a DB cluster, see CreateDBCluster. *

                                                        *

                                                        * Type: String *

                                                        * * @return The identifier of the DB cluster that the instance will belong to.

                                                        *

                                                        * For information on creating a DB cluster, see CreateDBCluster. *

                                                        *

                                                        * Type: String */ public String getDBClusterIdentifier() { return this.dBClusterIdentifier; } /** *

                                                        * The identifier of the DB cluster that the instance will belong to. *

                                                        *

                                                        * For information on creating a DB cluster, see CreateDBCluster. *

                                                        *

                                                        * Type: String *

                                                        * * @param dBClusterIdentifier * The identifier of the DB cluster that the instance will belong to.

                                                        *

                                                        * For information on creating a DB cluster, see CreateDBCluster. *

                                                        *

                                                        * Type: String * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withDBClusterIdentifier(String dBClusterIdentifier) { setDBClusterIdentifier(dBClusterIdentifier); return this; } /** *

                                                        * Specifies the storage type to be associated with the DB instance. *

                                                        *

                                                        * Valid values: standard | gp2 | io1 *

                                                        *

                                                        * If you specify io1, you must also include a value for the Iops parameter. *

                                                        *

                                                        * Default: io1 if the Iops parameter is specified, otherwise standard *

                                                        * * @param storageType * Specifies the storage type to be associated with the DB instance.

                                                        *

                                                        * Valid values: standard | gp2 | io1 *

                                                        *

                                                        * If you specify io1, you must also include a value for the Iops parameter. *

                                                        *

                                                        * Default: io1 if the Iops parameter is specified, otherwise standard */ public void setStorageType(String storageType) { this.storageType = storageType; } /** *

                                                        * Specifies the storage type to be associated with the DB instance. *

                                                        *

                                                        * Valid values: standard | gp2 | io1 *

                                                        *

                                                        * If you specify io1, you must also include a value for the Iops parameter. *

                                                        *

                                                        * Default: io1 if the Iops parameter is specified, otherwise standard *

                                                        * * @return Specifies the storage type to be associated with the DB instance.

                                                        *

                                                        * Valid values: standard | gp2 | io1 *

                                                        *

                                                        * If you specify io1, you must also include a value for the Iops parameter. *

                                                        *

                                                        * Default: io1 if the Iops parameter is specified, otherwise * standard */ public String getStorageType() { return this.storageType; } /** *

                                                        * Specifies the storage type to be associated with the DB instance. *

                                                        *

                                                        * Valid values: standard | gp2 | io1 *

                                                        *

                                                        * If you specify io1, you must also include a value for the Iops parameter. *

                                                        *

                                                        * Default: io1 if the Iops parameter is specified, otherwise standard *

                                                        * * @param storageType * Specifies the storage type to be associated with the DB instance.

                                                        *

                                                        * Valid values: standard | gp2 | io1 *

                                                        *

                                                        * If you specify io1, you must also include a value for the Iops parameter. *

                                                        *

                                                        * Default: io1 if the Iops parameter is specified, otherwise standard * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withStorageType(String storageType) { setStorageType(storageType); return this; } /** *

                                                        * The ARN from the key store with which to associate the instance for TDE encryption. *

                                                        * * @param tdeCredentialArn * The ARN from the key store with which to associate the instance for TDE encryption. */ public void setTdeCredentialArn(String tdeCredentialArn) { this.tdeCredentialArn = tdeCredentialArn; } /** *

                                                        * The ARN from the key store with which to associate the instance for TDE encryption. *

                                                        * * @return The ARN from the key store with which to associate the instance for TDE encryption. */ public String getTdeCredentialArn() { return this.tdeCredentialArn; } /** *

                                                        * The ARN from the key store with which to associate the instance for TDE encryption. *

                                                        * * @param tdeCredentialArn * The ARN from the key store with which to associate the instance for TDE encryption. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withTdeCredentialArn(String tdeCredentialArn) { setTdeCredentialArn(tdeCredentialArn); return this; } /** *

                                                        * The password for the given ARN from the key store in order to access the device. *

                                                        * * @param tdeCredentialPassword * The password for the given ARN from the key store in order to access the device. */ public void setTdeCredentialPassword(String tdeCredentialPassword) { this.tdeCredentialPassword = tdeCredentialPassword; } /** *

                                                        * The password for the given ARN from the key store in order to access the device. *

                                                        * * @return The password for the given ARN from the key store in order to access the device. */ public String getTdeCredentialPassword() { return this.tdeCredentialPassword; } /** *

                                                        * The password for the given ARN from the key store in order to access the device. *

                                                        * * @param tdeCredentialPassword * The password for the given ARN from the key store in order to access the device. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withTdeCredentialPassword(String tdeCredentialPassword) { setTdeCredentialPassword(tdeCredentialPassword); return this; } /** *

                                                        * Specifies whether the DB instance is encrypted. *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The encryption for DB instances is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * Default: false *

                                                        * * @param storageEncrypted * Specifies whether the DB instance is encrypted.

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The encryption for DB instances is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * Default: false */ public void setStorageEncrypted(Boolean storageEncrypted) { this.storageEncrypted = storageEncrypted; } /** *

                                                        * Specifies whether the DB instance is encrypted. *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The encryption for DB instances is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * Default: false *

                                                        * * @return Specifies whether the DB instance is encrypted.

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The encryption for DB instances is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * Default: false */ public Boolean getStorageEncrypted() { return this.storageEncrypted; } /** *

                                                        * Specifies whether the DB instance is encrypted. *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The encryption for DB instances is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * Default: false *

                                                        * * @param storageEncrypted * Specifies whether the DB instance is encrypted.

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The encryption for DB instances is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * Default: false * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withStorageEncrypted(Boolean storageEncrypted) { setStorageEncrypted(storageEncrypted); return this; } /** *

                                                        * Specifies whether the DB instance is encrypted. *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The encryption for DB instances is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * Default: false *

                                                        * * @return Specifies whether the DB instance is encrypted.

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The encryption for DB instances is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * Default: false */ public Boolean isStorageEncrypted() { return this.storageEncrypted; } /** *

                                                        * The AWS KMS key identifier for an encrypted DB instance. *

                                                        *

                                                        * The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a DB * instance with the same AWS account that owns the KMS encryption key used to encrypt the new DB instance, then you * can use the KMS key alias instead of the ARN for the KM encryption key. *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The KMS key identifier is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * If the StorageEncrypted parameter is true, and you do not specify a value for the * KmsKeyId parameter, then Amazon RDS will use your default encryption key. AWS KMS creates the * default encryption key for your AWS account. Your AWS account has a different default encryption key for each AWS * Region. *

                                                        * * @param kmsKeyId * The AWS KMS key identifier for an encrypted DB instance.

                                                        *

                                                        * The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a * DB instance with the same AWS account that owns the KMS encryption key used to encrypt the new DB * instance, then you can use the KMS key alias instead of the ARN for the KM encryption key. *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The KMS key identifier is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * If the StorageEncrypted parameter is true, and you do not specify a value for the * KmsKeyId parameter, then Amazon RDS will use your default encryption key. AWS KMS creates the * default encryption key for your AWS account. Your AWS account has a different default encryption key for * each AWS Region. */ public void setKmsKeyId(String kmsKeyId) { this.kmsKeyId = kmsKeyId; } /** *

                                                        * The AWS KMS key identifier for an encrypted DB instance. *

                                                        *

                                                        * The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a DB * instance with the same AWS account that owns the KMS encryption key used to encrypt the new DB instance, then you * can use the KMS key alias instead of the ARN for the KM encryption key. *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The KMS key identifier is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * If the StorageEncrypted parameter is true, and you do not specify a value for the * KmsKeyId parameter, then Amazon RDS will use your default encryption key. AWS KMS creates the * default encryption key for your AWS account. Your AWS account has a different default encryption key for each AWS * Region. *

                                                        * * @return The AWS KMS key identifier for an encrypted DB instance.

                                                        *

                                                        * The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating * a DB instance with the same AWS account that owns the KMS encryption key used to encrypt the new DB * instance, then you can use the KMS key alias instead of the ARN for the KM encryption key. *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The KMS key identifier is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * If the StorageEncrypted parameter is true, and you do not specify a value for the * KmsKeyId parameter, then Amazon RDS will use your default encryption key. AWS KMS creates * the default encryption key for your AWS account. Your AWS account has a different default encryption key * for each AWS Region. */ public String getKmsKeyId() { return this.kmsKeyId; } /** *

                                                        * The AWS KMS key identifier for an encrypted DB instance. *

                                                        *

                                                        * The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a DB * instance with the same AWS account that owns the KMS encryption key used to encrypt the new DB instance, then you * can use the KMS key alias instead of the ARN for the KM encryption key. *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The KMS key identifier is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * If the StorageEncrypted parameter is true, and you do not specify a value for the * KmsKeyId parameter, then Amazon RDS will use your default encryption key. AWS KMS creates the * default encryption key for your AWS account. Your AWS account has a different default encryption key for each AWS * Region. *

                                                        * * @param kmsKeyId * The AWS KMS key identifier for an encrypted DB instance.

                                                        *

                                                        * The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a * DB instance with the same AWS account that owns the KMS encryption key used to encrypt the new DB * instance, then you can use the KMS key alias instead of the ARN for the KM encryption key. *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. The KMS key identifier is managed by the DB cluster. For more information, see * CreateDBCluster. *

                                                        *

                                                        * If the StorageEncrypted parameter is true, and you do not specify a value for the * KmsKeyId parameter, then Amazon RDS will use your default encryption key. AWS KMS creates the * default encryption key for your AWS account. Your AWS account has a different default encryption key for * each AWS Region. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withKmsKeyId(String kmsKeyId) { setKmsKeyId(kmsKeyId); return this; } /** *

                                                        * Specify the Active Directory Domain to create the instance in. *

                                                        * * @param domain * Specify the Active Directory Domain to create the instance in. */ public void setDomain(String domain) { this.domain = domain; } /** *

                                                        * Specify the Active Directory Domain to create the instance in. *

                                                        * * @return Specify the Active Directory Domain to create the instance in. */ public String getDomain() { return this.domain; } /** *

                                                        * Specify the Active Directory Domain to create the instance in. *

                                                        * * @param domain * Specify the Active Directory Domain to create the instance in. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withDomain(String domain) { setDomain(domain); return this; } /** *

                                                        * True to copy all tags from the DB instance to snapshots of the DB instance, and otherwise false. The default is * false. *

                                                        * * @param copyTagsToSnapshot * True to copy all tags from the DB instance to snapshots of the DB instance, and otherwise false. The * default is false. */ public void setCopyTagsToSnapshot(Boolean copyTagsToSnapshot) { this.copyTagsToSnapshot = copyTagsToSnapshot; } /** *

                                                        * True to copy all tags from the DB instance to snapshots of the DB instance, and otherwise false. The default is * false. *

                                                        * * @return True to copy all tags from the DB instance to snapshots of the DB instance, and otherwise false. The * default is false. */ public Boolean getCopyTagsToSnapshot() { return this.copyTagsToSnapshot; } /** *

                                                        * True to copy all tags from the DB instance to snapshots of the DB instance, and otherwise false. The default is * false. *

                                                        * * @param copyTagsToSnapshot * True to copy all tags from the DB instance to snapshots of the DB instance, and otherwise false. The * default is false. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withCopyTagsToSnapshot(Boolean copyTagsToSnapshot) { setCopyTagsToSnapshot(copyTagsToSnapshot); return this; } /** *

                                                        * True to copy all tags from the DB instance to snapshots of the DB instance, and otherwise false. The default is * false. *

                                                        * * @return True to copy all tags from the DB instance to snapshots of the DB instance, and otherwise false. The * default is false. */ public Boolean isCopyTagsToSnapshot() { return this.copyTagsToSnapshot; } /** *

                                                        * The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To * disable collecting Enhanced Monitoring metrics, specify 0. The default is 0. *

                                                        *

                                                        * If MonitoringRoleArn is specified, then you must also set MonitoringInterval to a value * other than 0. *

                                                        *

                                                        * Valid Values: 0, 1, 5, 10, 15, 30, 60 *

                                                        * * @param monitoringInterval * The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB * instance. To disable collecting Enhanced Monitoring metrics, specify 0. The default is 0.

                                                        *

                                                        * If MonitoringRoleArn is specified, then you must also set MonitoringInterval to * a value other than 0. *

                                                        *

                                                        * Valid Values: 0, 1, 5, 10, 15, 30, 60 */ public void setMonitoringInterval(Integer monitoringInterval) { this.monitoringInterval = monitoringInterval; } /** *

                                                        * The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To * disable collecting Enhanced Monitoring metrics, specify 0. The default is 0. *

                                                        *

                                                        * If MonitoringRoleArn is specified, then you must also set MonitoringInterval to a value * other than 0. *

                                                        *

                                                        * Valid Values: 0, 1, 5, 10, 15, 30, 60 *

                                                        * * @return The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB * instance. To disable collecting Enhanced Monitoring metrics, specify 0. The default is 0.

                                                        *

                                                        * If MonitoringRoleArn is specified, then you must also set MonitoringInterval to * a value other than 0. *

                                                        *

                                                        * Valid Values: 0, 1, 5, 10, 15, 30, 60 */ public Integer getMonitoringInterval() { return this.monitoringInterval; } /** *

                                                        * The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To * disable collecting Enhanced Monitoring metrics, specify 0. The default is 0. *

                                                        *

                                                        * If MonitoringRoleArn is specified, then you must also set MonitoringInterval to a value * other than 0. *

                                                        *

                                                        * Valid Values: 0, 1, 5, 10, 15, 30, 60 *

                                                        * * @param monitoringInterval * The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB * instance. To disable collecting Enhanced Monitoring metrics, specify 0. The default is 0.

                                                        *

                                                        * If MonitoringRoleArn is specified, then you must also set MonitoringInterval to * a value other than 0. *

                                                        *

                                                        * Valid Values: 0, 1, 5, 10, 15, 30, 60 * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withMonitoringInterval(Integer monitoringInterval) { setMonitoringInterval(monitoringInterval); return this; } /** *

                                                        * The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For * example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, go * to Setting Up and Enabling Enhanced Monitoring. *

                                                        *

                                                        * If MonitoringInterval is set to a value other than 0, then you must supply a * MonitoringRoleArn value. *

                                                        * * @param monitoringRoleArn * The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. * For example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring * role, go to Setting Up and Enabling Enhanced Monitoring.

                                                        *

                                                        * If MonitoringInterval is set to a value other than 0, then you must supply a * MonitoringRoleArn value. */ public void setMonitoringRoleArn(String monitoringRoleArn) { this.monitoringRoleArn = monitoringRoleArn; } /** *

                                                        * The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For * example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, go * to Setting Up and Enabling Enhanced Monitoring. *

                                                        *

                                                        * If MonitoringInterval is set to a value other than 0, then you must supply a * MonitoringRoleArn value. *

                                                        * * @return The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. * For example, arn:aws:iam:123456789012:role/emaccess. For information on creating a * monitoring role, go to Setting Up and Enabling Enhanced Monitoring.

                                                        *

                                                        * If MonitoringInterval is set to a value other than 0, then you must supply a * MonitoringRoleArn value. */ public String getMonitoringRoleArn() { return this.monitoringRoleArn; } /** *

                                                        * The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. For * example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring role, go * to Setting Up and Enabling Enhanced Monitoring. *

                                                        *

                                                        * If MonitoringInterval is set to a value other than 0, then you must supply a * MonitoringRoleArn value. *

                                                        * * @param monitoringRoleArn * The ARN for the IAM role that permits RDS to send enhanced monitoring metrics to Amazon CloudWatch Logs. * For example, arn:aws:iam:123456789012:role/emaccess. For information on creating a monitoring * role, go to Setting Up and Enabling Enhanced Monitoring.

                                                        *

                                                        * If MonitoringInterval is set to a value other than 0, then you must supply a * MonitoringRoleArn value. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withMonitoringRoleArn(String monitoringRoleArn) { setMonitoringRoleArn(monitoringRoleArn); return this; } /** *

                                                        * Specify the name of the IAM role to be used when making API calls to the Directory Service. *

                                                        * * @param domainIAMRoleName * Specify the name of the IAM role to be used when making API calls to the Directory Service. */ public void setDomainIAMRoleName(String domainIAMRoleName) { this.domainIAMRoleName = domainIAMRoleName; } /** *

                                                        * Specify the name of the IAM role to be used when making API calls to the Directory Service. *

                                                        * * @return Specify the name of the IAM role to be used when making API calls to the Directory Service. */ public String getDomainIAMRoleName() { return this.domainIAMRoleName; } /** *

                                                        * Specify the name of the IAM role to be used when making API calls to the Directory Service. *

                                                        * * @param domainIAMRoleName * Specify the name of the IAM role to be used when making API calls to the Directory Service. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withDomainIAMRoleName(String domainIAMRoleName) { setDomainIAMRoleName(domainIAMRoleName); return this; } /** *

                                                        * A value that specifies the order in which an Aurora Replica is promoted to the primary instance after a failure * of the existing primary instance. For more information, see * Fault Tolerance for an Aurora DB Cluster. *

                                                        *

                                                        * Default: 1 *

                                                        *

                                                        * Valid Values: 0 - 15 *

                                                        * * @param promotionTier * A value that specifies the order in which an Aurora Replica is promoted to the primary instance after a * failure of the existing primary instance. For more information, see Fault Tolerance for an Aurora DB Cluster.

                                                        *

                                                        * Default: 1 *

                                                        *

                                                        * Valid Values: 0 - 15 */ public void setPromotionTier(Integer promotionTier) { this.promotionTier = promotionTier; } /** *

                                                        * A value that specifies the order in which an Aurora Replica is promoted to the primary instance after a failure * of the existing primary instance. For more information, see * Fault Tolerance for an Aurora DB Cluster. *

                                                        *

                                                        * Default: 1 *

                                                        *

                                                        * Valid Values: 0 - 15 *

                                                        * * @return A value that specifies the order in which an Aurora Replica is promoted to the primary instance after a * failure of the existing primary instance. For more information, see Fault Tolerance for an Aurora DB Cluster.

                                                        *

                                                        * Default: 1 *

                                                        *

                                                        * Valid Values: 0 - 15 */ public Integer getPromotionTier() { return this.promotionTier; } /** *

                                                        * A value that specifies the order in which an Aurora Replica is promoted to the primary instance after a failure * of the existing primary instance. For more information, see * Fault Tolerance for an Aurora DB Cluster. *

                                                        *

                                                        * Default: 1 *

                                                        *

                                                        * Valid Values: 0 - 15 *

                                                        * * @param promotionTier * A value that specifies the order in which an Aurora Replica is promoted to the primary instance after a * failure of the existing primary instance. For more information, see Fault Tolerance for an Aurora DB Cluster.

                                                        *

                                                        * Default: 1 *

                                                        *

                                                        * Valid Values: 0 - 15 * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withPromotionTier(Integer promotionTier) { setPromotionTier(promotionTier); return this; } /** *

                                                        * The time zone of the DB instance. The time zone parameter is currently supported only by Microsoft SQL Server. *

                                                        * * @param timezone * The time zone of the DB instance. The time zone parameter is currently supported only by Microsoft SQL Server. */ public void setTimezone(String timezone) { this.timezone = timezone; } /** *

                                                        * The time zone of the DB instance. The time zone parameter is currently supported only by Microsoft SQL Server. *

                                                        * * @return The time zone of the DB instance. The time zone parameter is currently supported only by Microsoft SQL Server. */ public String getTimezone() { return this.timezone; } /** *

                                                        * The time zone of the DB instance. The time zone parameter is currently supported only by Microsoft SQL Server. *

                                                        * * @param timezone * The time zone of the DB instance. The time zone parameter is currently supported only by Microsoft SQL Server. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withTimezone(String timezone) { setTimezone(timezone); return this; } /** *

                                                        * True to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts, and otherwise * false. *

                                                        *

                                                        * You can enable IAM database authentication for the following database engines: *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. Mapping AWS IAM accounts to database accounts is managed by the DB cluster. For more information, * see CreateDBCluster. *

                                                        *

                                                        * MySQL *

                                                        *
                                                          *
                                                        • *

                                                          * For MySQL 5.6, minor version 5.6.34 or higher *

                                                          *
                                                        • *
                                                        • *

                                                          * For MySQL 5.7, minor version 5.7.16 or higher *

                                                          *
                                                        • *
                                                        *

                                                        * Default: false *

                                                        * * @param enableIAMDatabaseAuthentication * True to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts, and * otherwise false.

                                                        *

                                                        * You can enable IAM database authentication for the following database engines: *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. Mapping AWS IAM accounts to database accounts is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                                        *

                                                        * MySQL *

                                                        *
                                                          *
                                                        • *

                                                          * For MySQL 5.6, minor version 5.6.34 or higher *

                                                          *
                                                        • *
                                                        • *

                                                          * For MySQL 5.7, minor version 5.7.16 or higher *

                                                          *
                                                        • *
                                                        *

                                                        * Default: false */ public void setEnableIAMDatabaseAuthentication(Boolean enableIAMDatabaseAuthentication) { this.enableIAMDatabaseAuthentication = enableIAMDatabaseAuthentication; } /** *

                                                        * True to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts, and otherwise * false. *

                                                        *

                                                        * You can enable IAM database authentication for the following database engines: *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. Mapping AWS IAM accounts to database accounts is managed by the DB cluster. For more information, * see CreateDBCluster. *

                                                        *

                                                        * MySQL *

                                                        *
                                                          *
                                                        • *

                                                          * For MySQL 5.6, minor version 5.6.34 or higher *

                                                          *
                                                        • *
                                                        • *

                                                          * For MySQL 5.7, minor version 5.7.16 or higher *

                                                          *
                                                        • *
                                                        *

                                                        * Default: false *

                                                        * * @return True to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts, and * otherwise false.

                                                        *

                                                        * You can enable IAM database authentication for the following database engines: *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. Mapping AWS IAM accounts to database accounts is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                                        *

                                                        * MySQL *

                                                        *
                                                          *
                                                        • *

                                                          * For MySQL 5.6, minor version 5.6.34 or higher *

                                                          *
                                                        • *
                                                        • *

                                                          * For MySQL 5.7, minor version 5.7.16 or higher *

                                                          *
                                                        • *
                                                        *

                                                        * Default: false */ public Boolean getEnableIAMDatabaseAuthentication() { return this.enableIAMDatabaseAuthentication; } /** *

                                                        * True to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts, and otherwise * false. *

                                                        *

                                                        * You can enable IAM database authentication for the following database engines: *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. Mapping AWS IAM accounts to database accounts is managed by the DB cluster. For more information, * see CreateDBCluster. *

                                                        *

                                                        * MySQL *

                                                        *
                                                          *
                                                        • *

                                                          * For MySQL 5.6, minor version 5.6.34 or higher *

                                                          *
                                                        • *
                                                        • *

                                                          * For MySQL 5.7, minor version 5.7.16 or higher *

                                                          *
                                                        • *
                                                        *

                                                        * Default: false *

                                                        * * @param enableIAMDatabaseAuthentication * True to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts, and * otherwise false.

                                                        *

                                                        * You can enable IAM database authentication for the following database engines: *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. Mapping AWS IAM accounts to database accounts is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                                        *

                                                        * MySQL *

                                                        *
                                                          *
                                                        • *

                                                          * For MySQL 5.6, minor version 5.6.34 or higher *

                                                          *
                                                        • *
                                                        • *

                                                          * For MySQL 5.7, minor version 5.7.16 or higher *

                                                          *
                                                        • *
                                                        *

                                                        * Default: false * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withEnableIAMDatabaseAuthentication(Boolean enableIAMDatabaseAuthentication) { setEnableIAMDatabaseAuthentication(enableIAMDatabaseAuthentication); return this; } /** *

                                                        * True to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts, and otherwise * false. *

                                                        *

                                                        * You can enable IAM database authentication for the following database engines: *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. Mapping AWS IAM accounts to database accounts is managed by the DB cluster. For more information, * see CreateDBCluster. *

                                                        *

                                                        * MySQL *

                                                        *
                                                          *
                                                        • *

                                                          * For MySQL 5.6, minor version 5.6.34 or higher *

                                                          *
                                                        • *
                                                        • *

                                                          * For MySQL 5.7, minor version 5.7.16 or higher *

                                                          *
                                                        • *
                                                        *

                                                        * Default: false *

                                                        * * @return True to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts, and * otherwise false.

                                                        *

                                                        * You can enable IAM database authentication for the following database engines: *

                                                        *

                                                        * Amazon Aurora *

                                                        *

                                                        * Not applicable. Mapping AWS IAM accounts to database accounts is managed by the DB cluster. For more * information, see CreateDBCluster. *

                                                        *

                                                        * MySQL *

                                                        *
                                                          *
                                                        • *

                                                          * For MySQL 5.6, minor version 5.6.34 or higher *

                                                          *
                                                        • *
                                                        • *

                                                          * For MySQL 5.7, minor version 5.7.16 or higher *

                                                          *
                                                        • *
                                                        *

                                                        * Default: false */ public Boolean isEnableIAMDatabaseAuthentication() { return this.enableIAMDatabaseAuthentication; } /** *

                                                        * True to enable Performance Insights for the DB instance, and otherwise false. *

                                                        * * @param enablePerformanceInsights * True to enable Performance Insights for the DB instance, and otherwise false. */ public void setEnablePerformanceInsights(Boolean enablePerformanceInsights) { this.enablePerformanceInsights = enablePerformanceInsights; } /** *

                                                        * True to enable Performance Insights for the DB instance, and otherwise false. *

                                                        * * @return True to enable Performance Insights for the DB instance, and otherwise false. */ public Boolean getEnablePerformanceInsights() { return this.enablePerformanceInsights; } /** *

                                                        * True to enable Performance Insights for the DB instance, and otherwise false. *

                                                        * * @param enablePerformanceInsights * True to enable Performance Insights for the DB instance, and otherwise false. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withEnablePerformanceInsights(Boolean enablePerformanceInsights) { setEnablePerformanceInsights(enablePerformanceInsights); return this; } /** *

                                                        * True to enable Performance Insights for the DB instance, and otherwise false. *

                                                        * * @return True to enable Performance Insights for the DB instance, and otherwise false. */ public Boolean isEnablePerformanceInsights() { return this.enablePerformanceInsights; } /** *

                                                        * The AWS KMS key identifier for encryption of Performance Insights data. The KMS key ID is the Amazon Resource * Name (ARN), KMS key identifier, or the KMS key alias for the KMS encryption key. *

                                                        * * @param performanceInsightsKMSKeyId * The AWS KMS key identifier for encryption of Performance Insights data. The KMS key ID is the Amazon * Resource Name (ARN), KMS key identifier, or the KMS key alias for the KMS encryption key. */ public void setPerformanceInsightsKMSKeyId(String performanceInsightsKMSKeyId) { this.performanceInsightsKMSKeyId = performanceInsightsKMSKeyId; } /** *

                                                        * The AWS KMS key identifier for encryption of Performance Insights data. The KMS key ID is the Amazon Resource * Name (ARN), KMS key identifier, or the KMS key alias for the KMS encryption key. *

                                                        * * @return The AWS KMS key identifier for encryption of Performance Insights data. The KMS key ID is the Amazon * Resource Name (ARN), KMS key identifier, or the KMS key alias for the KMS encryption key. */ public String getPerformanceInsightsKMSKeyId() { return this.performanceInsightsKMSKeyId; } /** *

                                                        * The AWS KMS key identifier for encryption of Performance Insights data. The KMS key ID is the Amazon Resource * Name (ARN), KMS key identifier, or the KMS key alias for the KMS encryption key. *

                                                        * * @param performanceInsightsKMSKeyId * The AWS KMS key identifier for encryption of Performance Insights data. The KMS key ID is the Amazon * Resource Name (ARN), KMS key identifier, or the KMS key alias for the KMS encryption key. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withPerformanceInsightsKMSKeyId(String performanceInsightsKMSKeyId) { setPerformanceInsightsKMSKeyId(performanceInsightsKMSKeyId); return this; } /** *

                                                        * The list of log types that need to be enabled for exporting to CloudWatch Logs. *

                                                        * * @return The list of log types that need to be enabled for exporting to CloudWatch Logs. */ public java.util.List getEnableCloudwatchLogsExports() { if (enableCloudwatchLogsExports == null) { enableCloudwatchLogsExports = new com.amazonaws.internal.SdkInternalList(); } return enableCloudwatchLogsExports; } /** *

                                                        * The list of log types that need to be enabled for exporting to CloudWatch Logs. *

                                                        * * @param enableCloudwatchLogsExports * The list of log types that need to be enabled for exporting to CloudWatch Logs. */ public void setEnableCloudwatchLogsExports(java.util.Collection enableCloudwatchLogsExports) { if (enableCloudwatchLogsExports == null) { this.enableCloudwatchLogsExports = null; return; } this.enableCloudwatchLogsExports = new com.amazonaws.internal.SdkInternalList(enableCloudwatchLogsExports); } /** *

                                                        * The list of log types that need to be enabled for exporting to CloudWatch Logs. *

                                                        *

                                                        * NOTE: This method appends the values to the existing list (if any). Use * {@link #setEnableCloudwatchLogsExports(java.util.Collection)} or * {@link #withEnableCloudwatchLogsExports(java.util.Collection)} if you want to override the existing values. *

                                                        * * @param enableCloudwatchLogsExports * The list of log types that need to be enabled for exporting to CloudWatch Logs. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withEnableCloudwatchLogsExports(String... enableCloudwatchLogsExports) { if (this.enableCloudwatchLogsExports == null) { setEnableCloudwatchLogsExports(new com.amazonaws.internal.SdkInternalList(enableCloudwatchLogsExports.length)); } for (String ele : enableCloudwatchLogsExports) { this.enableCloudwatchLogsExports.add(ele); } return this; } /** *

                                                        * The list of log types that need to be enabled for exporting to CloudWatch Logs. *

                                                        * * @param enableCloudwatchLogsExports * The list of log types that need to be enabled for exporting to CloudWatch Logs. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDBInstanceRequest withEnableCloudwatchLogsExports(java.util.Collection enableCloudwatchLogsExports) { setEnableCloudwatchLogsExports(enableCloudwatchLogsExports); return this; } /** * Returns a string representation of this object; useful for testing and debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getDBName() != null) sb.append("DBName: ").append(getDBName()).append(","); if (getDBInstanceIdentifier() != null) sb.append("DBInstanceIdentifier: ").append(getDBInstanceIdentifier()).append(","); if (getAllocatedStorage() != null) sb.append("AllocatedStorage: ").append(getAllocatedStorage()).append(","); if (getDBInstanceClass() != null) sb.append("DBInstanceClass: ").append(getDBInstanceClass()).append(","); if (getEngine() != null) sb.append("Engine: ").append(getEngine()).append(","); if (getMasterUsername() != null) sb.append("MasterUsername: ").append(getMasterUsername()).append(","); if (getMasterUserPassword() != null) sb.append("MasterUserPassword: ").append(getMasterUserPassword()).append(","); if (getDBSecurityGroups() != null) sb.append("DBSecurityGroups: ").append(getDBSecurityGroups()).append(","); if (getVpcSecurityGroupIds() != null) sb.append("VpcSecurityGroupIds: ").append(getVpcSecurityGroupIds()).append(","); if (getAvailabilityZone() != null) sb.append("AvailabilityZone: ").append(getAvailabilityZone()).append(","); if (getDBSubnetGroupName() != null) sb.append("DBSubnetGroupName: ").append(getDBSubnetGroupName()).append(","); if (getPreferredMaintenanceWindow() != null) sb.append("PreferredMaintenanceWindow: ").append(getPreferredMaintenanceWindow()).append(","); if (getDBParameterGroupName() != null) sb.append("DBParameterGroupName: ").append(getDBParameterGroupName()).append(","); if (getBackupRetentionPeriod() != null) sb.append("BackupRetentionPeriod: ").append(getBackupRetentionPeriod()).append(","); if (getPreferredBackupWindow() != null) sb.append("PreferredBackupWindow: ").append(getPreferredBackupWindow()).append(","); if (getPort() != null) sb.append("Port: ").append(getPort()).append(","); if (getMultiAZ() != null) sb.append("MultiAZ: ").append(getMultiAZ()).append(","); if (getEngineVersion() != null) sb.append("EngineVersion: ").append(getEngineVersion()).append(","); if (getAutoMinorVersionUpgrade() != null) sb.append("AutoMinorVersionUpgrade: ").append(getAutoMinorVersionUpgrade()).append(","); if (getLicenseModel() != null) sb.append("LicenseModel: ").append(getLicenseModel()).append(","); if (getIops() != null) sb.append("Iops: ").append(getIops()).append(","); if (getOptionGroupName() != null) sb.append("OptionGroupName: ").append(getOptionGroupName()).append(","); if (getCharacterSetName() != null) sb.append("CharacterSetName: ").append(getCharacterSetName()).append(","); if (getPubliclyAccessible() != null) sb.append("PubliclyAccessible: ").append(getPubliclyAccessible()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getDBClusterIdentifier() != null) sb.append("DBClusterIdentifier: ").append(getDBClusterIdentifier()).append(","); if (getStorageType() != null) sb.append("StorageType: ").append(getStorageType()).append(","); if (getTdeCredentialArn() != null) sb.append("TdeCredentialArn: ").append(getTdeCredentialArn()).append(","); if (getTdeCredentialPassword() != null) sb.append("TdeCredentialPassword: ").append(getTdeCredentialPassword()).append(","); if (getStorageEncrypted() != null) sb.append("StorageEncrypted: ").append(getStorageEncrypted()).append(","); if (getKmsKeyId() != null) sb.append("KmsKeyId: ").append(getKmsKeyId()).append(","); if (getDomain() != null) sb.append("Domain: ").append(getDomain()).append(","); if (getCopyTagsToSnapshot() != null) sb.append("CopyTagsToSnapshot: ").append(getCopyTagsToSnapshot()).append(","); if (getMonitoringInterval() != null) sb.append("MonitoringInterval: ").append(getMonitoringInterval()).append(","); if (getMonitoringRoleArn() != null) sb.append("MonitoringRoleArn: ").append(getMonitoringRoleArn()).append(","); if (getDomainIAMRoleName() != null) sb.append("DomainIAMRoleName: ").append(getDomainIAMRoleName()).append(","); if (getPromotionTier() != null) sb.append("PromotionTier: ").append(getPromotionTier()).append(","); if (getTimezone() != null) sb.append("Timezone: ").append(getTimezone()).append(","); if (getEnableIAMDatabaseAuthentication() != null) sb.append("EnableIAMDatabaseAuthentication: ").append(getEnableIAMDatabaseAuthentication()).append(","); if (getEnablePerformanceInsights() != null) sb.append("EnablePerformanceInsights: ").append(getEnablePerformanceInsights()).append(","); if (getPerformanceInsightsKMSKeyId() != null) sb.append("PerformanceInsightsKMSKeyId: ").append(getPerformanceInsightsKMSKeyId()).append(","); if (getEnableCloudwatchLogsExports() != null) sb.append("EnableCloudwatchLogsExports: ").append(getEnableCloudwatchLogsExports()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateDBInstanceRequest == false) return false; CreateDBInstanceRequest other = (CreateDBInstanceRequest) obj; if (other.getDBName() == null ^ this.getDBName() == null) return false; if (other.getDBName() != null && other.getDBName().equals(this.getDBName()) == false) return false; if (other.getDBInstanceIdentifier() == null ^ this.getDBInstanceIdentifier() == null) return false; if (other.getDBInstanceIdentifier() != null && other.getDBInstanceIdentifier().equals(this.getDBInstanceIdentifier()) == false) return false; if (other.getAllocatedStorage() == null ^ this.getAllocatedStorage() == null) return false; if (other.getAllocatedStorage() != null && other.getAllocatedStorage().equals(this.getAllocatedStorage()) == false) return false; if (other.getDBInstanceClass() == null ^ this.getDBInstanceClass() == null) return false; if (other.getDBInstanceClass() != null && other.getDBInstanceClass().equals(this.getDBInstanceClass()) == false) return false; if (other.getEngine() == null ^ this.getEngine() == null) return false; if (other.getEngine() != null && other.getEngine().equals(this.getEngine()) == false) return false; if (other.getMasterUsername() == null ^ this.getMasterUsername() == null) return false; if (other.getMasterUsername() != null && other.getMasterUsername().equals(this.getMasterUsername()) == false) return false; if (other.getMasterUserPassword() == null ^ this.getMasterUserPassword() == null) return false; if (other.getMasterUserPassword() != null && other.getMasterUserPassword().equals(this.getMasterUserPassword()) == false) return false; if (other.getDBSecurityGroups() == null ^ this.getDBSecurityGroups() == null) return false; if (other.getDBSecurityGroups() != null && other.getDBSecurityGroups().equals(this.getDBSecurityGroups()) == false) return false; if (other.getVpcSecurityGroupIds() == null ^ this.getVpcSecurityGroupIds() == null) return false; if (other.getVpcSecurityGroupIds() != null && other.getVpcSecurityGroupIds().equals(this.getVpcSecurityGroupIds()) == false) return false; if (other.getAvailabilityZone() == null ^ this.getAvailabilityZone() == null) return false; if (other.getAvailabilityZone() != null && other.getAvailabilityZone().equals(this.getAvailabilityZone()) == false) return false; if (other.getDBSubnetGroupName() == null ^ this.getDBSubnetGroupName() == null) return false; if (other.getDBSubnetGroupName() != null && other.getDBSubnetGroupName().equals(this.getDBSubnetGroupName()) == false) return false; if (other.getPreferredMaintenanceWindow() == null ^ this.getPreferredMaintenanceWindow() == null) return false; if (other.getPreferredMaintenanceWindow() != null && other.getPreferredMaintenanceWindow().equals(this.getPreferredMaintenanceWindow()) == false) return false; if (other.getDBParameterGroupName() == null ^ this.getDBParameterGroupName() == null) return false; if (other.getDBParameterGroupName() != null && other.getDBParameterGroupName().equals(this.getDBParameterGroupName()) == false) return false; if (other.getBackupRetentionPeriod() == null ^ this.getBackupRetentionPeriod() == null) return false; if (other.getBackupRetentionPeriod() != null && other.getBackupRetentionPeriod().equals(this.getBackupRetentionPeriod()) == false) return false; if (other.getPreferredBackupWindow() == null ^ this.getPreferredBackupWindow() == null) return false; if (other.getPreferredBackupWindow() != null && other.getPreferredBackupWindow().equals(this.getPreferredBackupWindow()) == false) return false; if (other.getPort() == null ^ this.getPort() == null) return false; if (other.getPort() != null && other.getPort().equals(this.getPort()) == false) return false; if (other.getMultiAZ() == null ^ this.getMultiAZ() == null) return false; if (other.getMultiAZ() != null && other.getMultiAZ().equals(this.getMultiAZ()) == false) return false; if (other.getEngineVersion() == null ^ this.getEngineVersion() == null) return false; if (other.getEngineVersion() != null && other.getEngineVersion().equals(this.getEngineVersion()) == false) return false; if (other.getAutoMinorVersionUpgrade() == null ^ this.getAutoMinorVersionUpgrade() == null) return false; if (other.getAutoMinorVersionUpgrade() != null && other.getAutoMinorVersionUpgrade().equals(this.getAutoMinorVersionUpgrade()) == false) return false; if (other.getLicenseModel() == null ^ this.getLicenseModel() == null) return false; if (other.getLicenseModel() != null && other.getLicenseModel().equals(this.getLicenseModel()) == false) return false; if (other.getIops() == null ^ this.getIops() == null) return false; if (other.getIops() != null && other.getIops().equals(this.getIops()) == false) return false; if (other.getOptionGroupName() == null ^ this.getOptionGroupName() == null) return false; if (other.getOptionGroupName() != null && other.getOptionGroupName().equals(this.getOptionGroupName()) == false) return false; if (other.getCharacterSetName() == null ^ this.getCharacterSetName() == null) return false; if (other.getCharacterSetName() != null && other.getCharacterSetName().equals(this.getCharacterSetName()) == false) return false; if (other.getPubliclyAccessible() == null ^ this.getPubliclyAccessible() == null) return false; if (other.getPubliclyAccessible() != null && other.getPubliclyAccessible().equals(this.getPubliclyAccessible()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getDBClusterIdentifier() == null ^ this.getDBClusterIdentifier() == null) return false; if (other.getDBClusterIdentifier() != null && other.getDBClusterIdentifier().equals(this.getDBClusterIdentifier()) == false) return false; if (other.getStorageType() == null ^ this.getStorageType() == null) return false; if (other.getStorageType() != null && other.getStorageType().equals(this.getStorageType()) == false) return false; if (other.getTdeCredentialArn() == null ^ this.getTdeCredentialArn() == null) return false; if (other.getTdeCredentialArn() != null && other.getTdeCredentialArn().equals(this.getTdeCredentialArn()) == false) return false; if (other.getTdeCredentialPassword() == null ^ this.getTdeCredentialPassword() == null) return false; if (other.getTdeCredentialPassword() != null && other.getTdeCredentialPassword().equals(this.getTdeCredentialPassword()) == false) return false; if (other.getStorageEncrypted() == null ^ this.getStorageEncrypted() == null) return false; if (other.getStorageEncrypted() != null && other.getStorageEncrypted().equals(this.getStorageEncrypted()) == false) return false; if (other.getKmsKeyId() == null ^ this.getKmsKeyId() == null) return false; if (other.getKmsKeyId() != null && other.getKmsKeyId().equals(this.getKmsKeyId()) == false) return false; if (other.getDomain() == null ^ this.getDomain() == null) return false; if (other.getDomain() != null && other.getDomain().equals(this.getDomain()) == false) return false; if (other.getCopyTagsToSnapshot() == null ^ this.getCopyTagsToSnapshot() == null) return false; if (other.getCopyTagsToSnapshot() != null && other.getCopyTagsToSnapshot().equals(this.getCopyTagsToSnapshot()) == false) return false; if (other.getMonitoringInterval() == null ^ this.getMonitoringInterval() == null) return false; if (other.getMonitoringInterval() != null && other.getMonitoringInterval().equals(this.getMonitoringInterval()) == false) return false; if (other.getMonitoringRoleArn() == null ^ this.getMonitoringRoleArn() == null) return false; if (other.getMonitoringRoleArn() != null && other.getMonitoringRoleArn().equals(this.getMonitoringRoleArn()) == false) return false; if (other.getDomainIAMRoleName() == null ^ this.getDomainIAMRoleName() == null) return false; if (other.getDomainIAMRoleName() != null && other.getDomainIAMRoleName().equals(this.getDomainIAMRoleName()) == false) return false; if (other.getPromotionTier() == null ^ this.getPromotionTier() == null) return false; if (other.getPromotionTier() != null && other.getPromotionTier().equals(this.getPromotionTier()) == false) return false; if (other.getTimezone() == null ^ this.getTimezone() == null) return false; if (other.getTimezone() != null && other.getTimezone().equals(this.getTimezone()) == false) return false; if (other.getEnableIAMDatabaseAuthentication() == null ^ this.getEnableIAMDatabaseAuthentication() == null) return false; if (other.getEnableIAMDatabaseAuthentication() != null && other.getEnableIAMDatabaseAuthentication().equals(this.getEnableIAMDatabaseAuthentication()) == false) return false; if (other.getEnablePerformanceInsights() == null ^ this.getEnablePerformanceInsights() == null) return false; if (other.getEnablePerformanceInsights() != null && other.getEnablePerformanceInsights().equals(this.getEnablePerformanceInsights()) == false) return false; if (other.getPerformanceInsightsKMSKeyId() == null ^ this.getPerformanceInsightsKMSKeyId() == null) return false; if (other.getPerformanceInsightsKMSKeyId() != null && other.getPerformanceInsightsKMSKeyId().equals(this.getPerformanceInsightsKMSKeyId()) == false) return false; if (other.getEnableCloudwatchLogsExports() == null ^ this.getEnableCloudwatchLogsExports() == null) return false; if (other.getEnableCloudwatchLogsExports() != null && other.getEnableCloudwatchLogsExports().equals(this.getEnableCloudwatchLogsExports()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDBName() == null) ? 0 : getDBName().hashCode()); hashCode = prime * hashCode + ((getDBInstanceIdentifier() == null) ? 0 : getDBInstanceIdentifier().hashCode()); hashCode = prime * hashCode + ((getAllocatedStorage() == null) ? 0 : getAllocatedStorage().hashCode()); hashCode = prime * hashCode + ((getDBInstanceClass() == null) ? 0 : getDBInstanceClass().hashCode()); hashCode = prime * hashCode + ((getEngine() == null) ? 0 : getEngine().hashCode()); hashCode = prime * hashCode + ((getMasterUsername() == null) ? 0 : getMasterUsername().hashCode()); hashCode = prime * hashCode + ((getMasterUserPassword() == null) ? 0 : getMasterUserPassword().hashCode()); hashCode = prime * hashCode + ((getDBSecurityGroups() == null) ? 0 : getDBSecurityGroups().hashCode()); hashCode = prime * hashCode + ((getVpcSecurityGroupIds() == null) ? 0 : getVpcSecurityGroupIds().hashCode()); hashCode = prime * hashCode + ((getAvailabilityZone() == null) ? 0 : getAvailabilityZone().hashCode()); hashCode = prime * hashCode + ((getDBSubnetGroupName() == null) ? 0 : getDBSubnetGroupName().hashCode()); hashCode = prime * hashCode + ((getPreferredMaintenanceWindow() == null) ? 0 : getPreferredMaintenanceWindow().hashCode()); hashCode = prime * hashCode + ((getDBParameterGroupName() == null) ? 0 : getDBParameterGroupName().hashCode()); hashCode = prime * hashCode + ((getBackupRetentionPeriod() == null) ? 0 : getBackupRetentionPeriod().hashCode()); hashCode = prime * hashCode + ((getPreferredBackupWindow() == null) ? 0 : getPreferredBackupWindow().hashCode()); hashCode = prime * hashCode + ((getPort() == null) ? 0 : getPort().hashCode()); hashCode = prime * hashCode + ((getMultiAZ() == null) ? 0 : getMultiAZ().hashCode()); hashCode = prime * hashCode + ((getEngineVersion() == null) ? 0 : getEngineVersion().hashCode()); hashCode = prime * hashCode + ((getAutoMinorVersionUpgrade() == null) ? 0 : getAutoMinorVersionUpgrade().hashCode()); hashCode = prime * hashCode + ((getLicenseModel() == null) ? 0 : getLicenseModel().hashCode()); hashCode = prime * hashCode + ((getIops() == null) ? 0 : getIops().hashCode()); hashCode = prime * hashCode + ((getOptionGroupName() == null) ? 0 : getOptionGroupName().hashCode()); hashCode = prime * hashCode + ((getCharacterSetName() == null) ? 0 : getCharacterSetName().hashCode()); hashCode = prime * hashCode + ((getPubliclyAccessible() == null) ? 0 : getPubliclyAccessible().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getDBClusterIdentifier() == null) ? 0 : getDBClusterIdentifier().hashCode()); hashCode = prime * hashCode + ((getStorageType() == null) ? 0 : getStorageType().hashCode()); hashCode = prime * hashCode + ((getTdeCredentialArn() == null) ? 0 : getTdeCredentialArn().hashCode()); hashCode = prime * hashCode + ((getTdeCredentialPassword() == null) ? 0 : getTdeCredentialPassword().hashCode()); hashCode = prime * hashCode + ((getStorageEncrypted() == null) ? 0 : getStorageEncrypted().hashCode()); hashCode = prime * hashCode + ((getKmsKeyId() == null) ? 0 : getKmsKeyId().hashCode()); hashCode = prime * hashCode + ((getDomain() == null) ? 0 : getDomain().hashCode()); hashCode = prime * hashCode + ((getCopyTagsToSnapshot() == null) ? 0 : getCopyTagsToSnapshot().hashCode()); hashCode = prime * hashCode + ((getMonitoringInterval() == null) ? 0 : getMonitoringInterval().hashCode()); hashCode = prime * hashCode + ((getMonitoringRoleArn() == null) ? 0 : getMonitoringRoleArn().hashCode()); hashCode = prime * hashCode + ((getDomainIAMRoleName() == null) ? 0 : getDomainIAMRoleName().hashCode()); hashCode = prime * hashCode + ((getPromotionTier() == null) ? 0 : getPromotionTier().hashCode()); hashCode = prime * hashCode + ((getTimezone() == null) ? 0 : getTimezone().hashCode()); hashCode = prime * hashCode + ((getEnableIAMDatabaseAuthentication() == null) ? 0 : getEnableIAMDatabaseAuthentication().hashCode()); hashCode = prime * hashCode + ((getEnablePerformanceInsights() == null) ? 0 : getEnablePerformanceInsights().hashCode()); hashCode = prime * hashCode + ((getPerformanceInsightsKMSKeyId() == null) ? 0 : getPerformanceInsightsKMSKeyId().hashCode()); hashCode = prime * hashCode + ((getEnableCloudwatchLogsExports() == null) ? 0 : getEnableCloudwatchLogsExports().hashCode()); return hashCode; } @Override public CreateDBInstanceRequest clone() { return (CreateDBInstanceRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy