com.amazonaws.services.rds.model.RestoreDBInstanceFromDBSnapshotRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-rds Show documentation
/*
* Copyright 2012-2017 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 RestoreDBInstanceFromDBSnapshotRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* Name of the DB instance to create from the DB snapshot. This parameter isn't case-sensitive.
*
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 63 alphanumeric characters or hyphens (1 to 15 for SQL Server)
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* Example: my-snapshot-id
*
*/
private String dBInstanceIdentifier;
/**
*
* The identifier for the DB snapshot to restore from.
*
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 255 alphanumeric characters or hyphens
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier
must be the ARN of
* the shared DB snapshot.
*
*/
private String dBSnapshotIdentifier;
/**
*
* The compute and memory capacity of the Amazon RDS DB instance.
*
*
* Valid Values:
* db.t1.micro | db.m1.small | db.m1.medium | db.m1.large | db.m1.xlarge | db.m2.2xlarge | db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.m4.large | db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge | db.m4.10xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium | db.t2.large
*
*/
private String dBInstanceClass;
/**
*
* The port number on which the database accepts connections.
*
*
* Default: The same port as the original DB instance
*
*
* Constraints: Value must be 1150-65535
*
*/
private Integer port;
/**
*
* The EC2 Availability Zone that the database instance will be created in.
*
*
* Default: A random, system-chosen Availability Zone.
*
*
* Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to
* true
.
*
*
* Example: us-east-1a
*
*/
private String availabilityZone;
/**
*
* The DB subnet group name to use for the new instance.
*
*
* Constraints: Must contain no more than 255 alphanumeric characters, periods, underscores, spaces, or hyphens.
* Must not be default.
*
*
* Example: mySubnetgroup
*
*/
private String dBSubnetGroupName;
/**
*
* Specifies if the DB instance is a Multi-AZ deployment.
*
*
* Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to
* true
.
*
*/
private Boolean multiAZ;
/**
*
* 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 will be 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 will be private.
*
*/
private Boolean publiclyAccessible;
/**
*
* Indicates that minor version upgrades will be applied automatically to the DB instance during the maintenance
* window.
*
*/
private Boolean autoMinorVersionUpgrade;
/**
*
* License model information for the restored DB instance.
*
*
* Default: Same as source.
*
*
* Valid values: license-included
| bring-your-own-license
|
* general-public-license
*
*/
private String licenseModel;
/**
*
* The database name for the restored DB instance.
*
*
*
* This parameter doesn't apply to the MySQL, PostgreSQL, or MariaDB engines.
*
*
*/
private String dBName;
/**
*
* The database engine to use for the new instance.
*
*
* Default: The same as source
*
*
* Constraint: Must be compatible with the engine of the source. You can restore a MariaDB 10.1 DB instance from a
* MySQL 5.6 snapshot.
*
*
* Valid Values: MySQL
| mariadb
| oracle-se1
| oracle-se
|
* oracle-ee
| sqlserver-ee
| sqlserver-se
| sqlserver-ex
|
* sqlserver-web
| postgres
| aurora
*
*/
private String engine;
/**
*
* Specifies the amount of provisioned IOPS for the DB instance, expressed in I/O operations per second. If this
* parameter is not specified, the IOPS value will be taken from the backup. If this parameter is set to 0, the new
* instance will be converted to a non-PIOPS instance, which will take additional time, though your DB instance will
* be available for connections before the conversion starts.
*
*
* Constraints: Must be an integer greater than 1000.
*
*
* SQL Server
*
*
* Setting the IOPS value for the SQL Server database engine is not supported.
*
*/
private Integer iops;
/**
*
* The name of the option group to be used for the restored DB instance.
*
*
* Permanent options, such as the TDE option for Oracle Advanced Security TDE, cannot be removed from an option
* group, and that option group cannot be removed from a DB instance once it is associated with a DB instance
*
*/
private String optionGroupName;
private com.amazonaws.internal.SdkInternalList tags;
/**
*
* 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;
/**
*
* Specify the Active Directory Domain to restore the instance in.
*
*/
private String domain;
/**
*
* True to copy all tags from the restored DB instance to snapshots of the DB instance; otherwise false. The default
* is false.
*
*/
private Boolean copyTagsToSnapshot;
/**
*
* Specify the name of the IAM role to be used when making API calls to the Directory Service.
*
*/
private String domainIAMRoleName;
/**
* Default constructor for RestoreDBInstanceFromDBSnapshotRequest object. Callers should use the setter or fluent
* setter (with...) methods to initialize the object after creating it.
*/
public RestoreDBInstanceFromDBSnapshotRequest() {
}
/**
* Constructs a new RestoreDBInstanceFromDBSnapshotRequest object. Callers should use the setter or fluent setter
* (with...) methods to initialize any additional object members.
*
* @param dBInstanceIdentifier
* Name of the DB instance to create from the DB snapshot. This parameter isn't case-sensitive.
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 63 alphanumeric characters or hyphens (1 to 15 for SQL Server)
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* Example: my-snapshot-id
* @param dBSnapshotIdentifier
* The identifier for the DB snapshot to restore from.
*
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 255 alphanumeric characters or hyphens
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier
must be the
* ARN of the shared DB snapshot.
*/
public RestoreDBInstanceFromDBSnapshotRequest(String dBInstanceIdentifier, String dBSnapshotIdentifier) {
setDBInstanceIdentifier(dBInstanceIdentifier);
setDBSnapshotIdentifier(dBSnapshotIdentifier);
}
/**
*
* Name of the DB instance to create from the DB snapshot. This parameter isn't case-sensitive.
*
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 63 alphanumeric characters or hyphens (1 to 15 for SQL Server)
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* Example: my-snapshot-id
*
*
* @param dBInstanceIdentifier
* Name of the DB instance to create from the DB snapshot. This parameter isn't case-sensitive.
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 63 alphanumeric characters or hyphens (1 to 15 for SQL Server)
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* Example: my-snapshot-id
*/
public void setDBInstanceIdentifier(String dBInstanceIdentifier) {
this.dBInstanceIdentifier = dBInstanceIdentifier;
}
/**
*
* Name of the DB instance to create from the DB snapshot. This parameter isn't case-sensitive.
*
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 63 alphanumeric characters or hyphens (1 to 15 for SQL Server)
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* Example: my-snapshot-id
*
*
* @return Name of the DB instance to create from the DB snapshot. This parameter isn't case-sensitive.
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 63 alphanumeric characters or hyphens (1 to 15 for SQL Server)
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* Example: my-snapshot-id
*/
public String getDBInstanceIdentifier() {
return this.dBInstanceIdentifier;
}
/**
*
* Name of the DB instance to create from the DB snapshot. This parameter isn't case-sensitive.
*
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 63 alphanumeric characters or hyphens (1 to 15 for SQL Server)
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* Example: my-snapshot-id
*
*
* @param dBInstanceIdentifier
* Name of the DB instance to create from the DB snapshot. This parameter isn't case-sensitive.
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 63 alphanumeric characters or hyphens (1 to 15 for SQL Server)
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* Example: my-snapshot-id
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RestoreDBInstanceFromDBSnapshotRequest withDBInstanceIdentifier(String dBInstanceIdentifier) {
setDBInstanceIdentifier(dBInstanceIdentifier);
return this;
}
/**
*
* The identifier for the DB snapshot to restore from.
*
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 255 alphanumeric characters or hyphens
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier
must be the ARN of
* the shared DB snapshot.
*
*
* @param dBSnapshotIdentifier
* The identifier for the DB snapshot to restore from.
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 255 alphanumeric characters or hyphens
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier
must be the
* ARN of the shared DB snapshot.
*/
public void setDBSnapshotIdentifier(String dBSnapshotIdentifier) {
this.dBSnapshotIdentifier = dBSnapshotIdentifier;
}
/**
*
* The identifier for the DB snapshot to restore from.
*
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 255 alphanumeric characters or hyphens
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier
must be the ARN of
* the shared DB snapshot.
*
*
* @return The identifier for the DB snapshot to restore from.
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 255 alphanumeric characters or hyphens
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier
must be the
* ARN of the shared DB snapshot.
*/
public String getDBSnapshotIdentifier() {
return this.dBSnapshotIdentifier;
}
/**
*
* The identifier for the DB snapshot to restore from.
*
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 255 alphanumeric characters or hyphens
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier
must be the ARN of
* the shared DB snapshot.
*
*
* @param dBSnapshotIdentifier
* The identifier for the DB snapshot to restore from.
*
* Constraints:
*
*
* -
*
* Must contain from 1 to 255 alphanumeric characters or hyphens
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
*
*
* If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier
must be the
* ARN of the shared DB snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RestoreDBInstanceFromDBSnapshotRequest withDBSnapshotIdentifier(String dBSnapshotIdentifier) {
setDBSnapshotIdentifier(dBSnapshotIdentifier);
return this;
}
/**
*
* The compute and memory capacity of the Amazon RDS DB instance.
*
*
* Valid Values:
* db.t1.micro | db.m1.small | db.m1.medium | db.m1.large | db.m1.xlarge | db.m2.2xlarge | db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.m4.large | db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge | db.m4.10xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium | db.t2.large
*
*
* @param dBInstanceClass
* The compute and memory capacity of the Amazon RDS DB instance.
*
* Valid Values:
* db.t1.micro | db.m1.small | db.m1.medium | db.m1.large | db.m1.xlarge | db.m2.2xlarge | db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.m4.large | db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge | db.m4.10xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium | db.t2.large
*/
public void setDBInstanceClass(String dBInstanceClass) {
this.dBInstanceClass = dBInstanceClass;
}
/**
*
* The compute and memory capacity of the Amazon RDS DB instance.
*
*
* Valid Values:
* db.t1.micro | db.m1.small | db.m1.medium | db.m1.large | db.m1.xlarge | db.m2.2xlarge | db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.m4.large | db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge | db.m4.10xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium | db.t2.large
*
*
* @return The compute and memory capacity of the Amazon RDS DB instance.
*
* Valid Values:
* db.t1.micro | db.m1.small | db.m1.medium | db.m1.large | db.m1.xlarge | db.m2.2xlarge | db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.m4.large | db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge | db.m4.10xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium | db.t2.large
*/
public String getDBInstanceClass() {
return this.dBInstanceClass;
}
/**
*
* The compute and memory capacity of the Amazon RDS DB instance.
*
*
* Valid Values:
* db.t1.micro | db.m1.small | db.m1.medium | db.m1.large | db.m1.xlarge | db.m2.2xlarge | db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.m4.large | db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge | db.m4.10xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium | db.t2.large
*
*
* @param dBInstanceClass
* The compute and memory capacity of the Amazon RDS DB instance.
*
* Valid Values:
* db.t1.micro | db.m1.small | db.m1.medium | db.m1.large | db.m1.xlarge | db.m2.2xlarge | db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.m4.large | db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge | db.m4.10xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium | db.t2.large
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RestoreDBInstanceFromDBSnapshotRequest withDBInstanceClass(String dBInstanceClass) {
setDBInstanceClass(dBInstanceClass);
return this;
}
/**
*
* The port number on which the database accepts connections.
*
*
* Default: The same port as the original DB instance
*
*
* Constraints: Value must be 1150-65535
*
*
* @param port
* The port number on which the database accepts connections.
*
* Default: The same port as the original DB instance
*
*
* Constraints: Value must be 1150-65535
*/
public void setPort(Integer port) {
this.port = port;
}
/**
*
* The port number on which the database accepts connections.
*
*
* Default: The same port as the original DB instance
*
*
* Constraints: Value must be 1150-65535
*
*
* @return The port number on which the database accepts connections.
*
* Default: The same port as the original DB instance
*
*
* Constraints: Value must be 1150-65535
*/
public Integer getPort() {
return this.port;
}
/**
*
* The port number on which the database accepts connections.
*
*
* Default: The same port as the original DB instance
*
*
* Constraints: Value must be 1150-65535
*
*
* @param port
* The port number on which the database accepts connections.
*
* Default: The same port as the original DB instance
*
*
* Constraints: Value must be 1150-65535
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RestoreDBInstanceFromDBSnapshotRequest withPort(Integer port) {
setPort(port);
return this;
}
/**
*
* The EC2 Availability Zone that the database instance will be created in.
*
*
* Default: A random, system-chosen Availability Zone.
*
*
* Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to
* true
.
*
*
* Example: us-east-1a
*
*
* @param availabilityZone
* The EC2 Availability Zone that the database instance will be created in.
*
* Default: A random, system-chosen Availability Zone.
*
*
* Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to
* true
.
*
*
* Example: us-east-1a
*/
public void setAvailabilityZone(String availabilityZone) {
this.availabilityZone = availabilityZone;
}
/**
*
* The EC2 Availability Zone that the database instance will be created in.
*
*
* Default: A random, system-chosen Availability Zone.
*
*
* Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to
* true
.
*
*
* Example: us-east-1a
*
*
* @return The EC2 Availability Zone that the database instance will be created in.
*
* Default: A random, system-chosen Availability Zone.
*
*
* Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to
* true
.
*
*
* Example: us-east-1a
*/
public String getAvailabilityZone() {
return this.availabilityZone;
}
/**
*
* The EC2 Availability Zone that the database instance will be created in.
*
*
* Default: A random, system-chosen Availability Zone.
*
*
* Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to
* true
.
*
*
* Example: us-east-1a
*
*
* @param availabilityZone
* The EC2 Availability Zone that the database instance will be created in.
*
* Default: A random, system-chosen Availability Zone.
*
*
* Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to
* true
.
*
*
* Example: us-east-1a
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RestoreDBInstanceFromDBSnapshotRequest withAvailabilityZone(String availabilityZone) {
setAvailabilityZone(availabilityZone);
return this;
}
/**
*
* The DB subnet group name to use for the new instance.
*
*
* Constraints: Must contain no more than 255 alphanumeric characters, periods, underscores, spaces, or hyphens.
* Must not be default.
*
*
* Example: mySubnetgroup
*
*
* @param dBSubnetGroupName
* The DB subnet group name to use for the new instance.
*
* Constraints: Must contain no more than 255 alphanumeric characters, periods, underscores, spaces, or
* hyphens. Must not be default.
*
*
* Example: mySubnetgroup
*/
public void setDBSubnetGroupName(String dBSubnetGroupName) {
this.dBSubnetGroupName = dBSubnetGroupName;
}
/**
*
* The DB subnet group name to use for the new instance.
*
*
* Constraints: Must contain no more than 255 alphanumeric characters, periods, underscores, spaces, or hyphens.
* Must not be default.
*
*
* Example: mySubnetgroup
*
*
* @return The DB subnet group name to use for the new instance.
*
* Constraints: Must contain no more than 255 alphanumeric characters, periods, underscores, spaces, or
* hyphens. Must not be default.
*
*
* Example: mySubnetgroup
*/
public String getDBSubnetGroupName() {
return this.dBSubnetGroupName;
}
/**
*
* The DB subnet group name to use for the new instance.
*
*
* Constraints: Must contain no more than 255 alphanumeric characters, periods, underscores, spaces, or hyphens.
* Must not be default.
*
*
* Example: mySubnetgroup
*
*
* @param dBSubnetGroupName
* The DB subnet group name to use for the new instance.
*
* Constraints: Must contain no more than 255 alphanumeric characters, periods, underscores, spaces, or
* hyphens. Must not be default.
*
*
* Example: mySubnetgroup
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RestoreDBInstanceFromDBSnapshotRequest withDBSubnetGroupName(String dBSubnetGroupName) {
setDBSubnetGroupName(dBSubnetGroupName);
return this;
}
/**
*
* Specifies if the DB instance is a Multi-AZ deployment.
*
*
* Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to
* true
.
*
*
* @param multiAZ
* Specifies if the DB instance is a Multi-AZ deployment.
*
* Constraint: You cannot specify 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.
*
*
* Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to
* true
.
*
*
* @return Specifies if the DB instance is a Multi-AZ deployment.
*
* Constraint: You cannot specify 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.
*
*
* Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to
* true
.
*
*
* @param multiAZ
* Specifies if the DB instance is a Multi-AZ deployment.
*
* Constraint: You cannot specify 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 RestoreDBInstanceFromDBSnapshotRequest withMultiAZ(Boolean multiAZ) {
setMultiAZ(multiAZ);
return this;
}
/**
*
* Specifies if the DB instance is a Multi-AZ deployment.
*
*
* Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to
* true
.
*
*
* @return Specifies if the DB instance is a Multi-AZ deployment.
*
* Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to
* true
.
*/
public Boolean isMultiAZ() {
return this.multiAZ;
}
/**
*
* 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 will be 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 will be 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 will be 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 will be 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 will be 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 will be 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 will be 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 will be
* 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 will be 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 will be 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 will be 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 will be private.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RestoreDBInstanceFromDBSnapshotRequest 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 will be 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 will be 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 will be 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 will be
* private.
*/
public Boolean isPubliclyAccessible() {
return this.publiclyAccessible;
}
/**
*
* Indicates that minor version upgrades will be applied automatically to the DB instance during the maintenance
* window.
*
*
* @param autoMinorVersionUpgrade
* Indicates that minor version upgrades will be applied automatically to the DB instance during the
* maintenance window.
*/
public void setAutoMinorVersionUpgrade(Boolean autoMinorVersionUpgrade) {
this.autoMinorVersionUpgrade = autoMinorVersionUpgrade;
}
/**
*
* Indicates that minor version upgrades will be applied automatically to the DB instance during the maintenance
* window.
*
*
* @return Indicates that minor version upgrades will be applied automatically to the DB instance during the
* maintenance window.
*/
public Boolean getAutoMinorVersionUpgrade() {
return this.autoMinorVersionUpgrade;
}
/**
*
* Indicates that minor version upgrades will be applied automatically to the DB instance during the maintenance
* window.
*
*
* @param autoMinorVersionUpgrade
* Indicates that minor version upgrades will be applied automatically to the DB instance during the
* maintenance window.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RestoreDBInstanceFromDBSnapshotRequest withAutoMinorVersionUpgrade(Boolean autoMinorVersionUpgrade) {
setAutoMinorVersionUpgrade(autoMinorVersionUpgrade);
return this;
}
/**
*
* Indicates that minor version upgrades will be applied automatically to the DB instance during the maintenance
* window.
*
*
* @return Indicates that minor version upgrades will be applied automatically to the DB instance during the
* maintenance window.
*/
public Boolean isAutoMinorVersionUpgrade() {
return this.autoMinorVersionUpgrade;
}
/**
*
* License model information for the restored DB instance.
*
*
* Default: Same as source.
*
*
* Valid values: license-included
| bring-your-own-license
|
* general-public-license
*
*
* @param licenseModel
* License model information for the restored DB instance.
*
* Default: Same as source.
*
*
* Valid values: license-included
| bring-your-own-license
|
* general-public-license
*/
public void setLicenseModel(String licenseModel) {
this.licenseModel = licenseModel;
}
/**
*
* License model information for the restored DB instance.
*
*
* Default: Same as source.
*
*
* Valid values: license-included
| bring-your-own-license
|
* general-public-license
*
*
* @return License model information for the restored DB instance.
*
* Default: Same as source.
*
*
* Valid values: license-included
| bring-your-own-license
|
* general-public-license
*/
public String getLicenseModel() {
return this.licenseModel;
}
/**
*
* License model information for the restored DB instance.
*
*
* Default: Same as source.
*
*
* Valid values: license-included
| bring-your-own-license
|
* general-public-license
*
*
* @param licenseModel
* License model information for the restored DB instance.
*
* Default: Same as source.
*
*
* 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 RestoreDBInstanceFromDBSnapshotRequest withLicenseModel(String licenseModel) {
setLicenseModel(licenseModel);
return this;
}
/**
*
* The database name for the restored DB instance.
*
*
*
* This parameter doesn't apply to the MySQL, PostgreSQL, or MariaDB engines.
*
*
*
* @param dBName
* The database name for the restored DB instance.
*
* This parameter doesn't apply to the MySQL, PostgreSQL, or MariaDB engines.
*
*/
public void setDBName(String dBName) {
this.dBName = dBName;
}
/**
*
* The database name for the restored DB instance.
*
*
*
* This parameter doesn't apply to the MySQL, PostgreSQL, or MariaDB engines.
*
*
*
* @return The database name for the restored DB instance.
*
* This parameter doesn't apply to the MySQL, PostgreSQL, or MariaDB engines.
*
*/
public String getDBName() {
return this.dBName;
}
/**
*
* The database name for the restored DB instance.
*
*
*
* This parameter doesn't apply to the MySQL, PostgreSQL, or MariaDB engines.
*
*
*
* @param dBName
* The database name for the restored DB instance.
*
* This parameter doesn't apply to the MySQL, PostgreSQL, or MariaDB engines.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RestoreDBInstanceFromDBSnapshotRequest withDBName(String dBName) {
setDBName(dBName);
return this;
}
/**
*
* The database engine to use for the new instance.
*
*
* Default: The same as source
*
*
* Constraint: Must be compatible with the engine of the source. You can restore a MariaDB 10.1 DB instance from a
* MySQL 5.6 snapshot.
*
*
* Valid Values: MySQL
| mariadb
| oracle-se1
| oracle-se
|
* oracle-ee
| sqlserver-ee
| sqlserver-se
| sqlserver-ex
|
* sqlserver-web
| postgres
| aurora
*
*
* @param engine
* The database engine to use for the new instance.
*
* Default: The same as source
*
*
* Constraint: Must be compatible with the engine of the source. You can restore a MariaDB 10.1 DB instance
* from a MySQL 5.6 snapshot.
*
*
* Valid Values: MySQL
| mariadb
| oracle-se1
| oracle-se
* | oracle-ee
| sqlserver-ee
| sqlserver-se
|
* sqlserver-ex
| sqlserver-web
| postgres
| aurora
*/
public void setEngine(String engine) {
this.engine = engine;
}
/**
*
* The database engine to use for the new instance.
*
*
* Default: The same as source
*
*
* Constraint: Must be compatible with the engine of the source. You can restore a MariaDB 10.1 DB instance from a
* MySQL 5.6 snapshot.
*
*
* Valid Values: MySQL
| mariadb
| oracle-se1
| oracle-se
|
* oracle-ee
| sqlserver-ee
| sqlserver-se
| sqlserver-ex
|
* sqlserver-web
| postgres
| aurora
*
*
* @return The database engine to use for the new instance.
*
* Default: The same as source
*
*
* Constraint: Must be compatible with the engine of the source. You can restore a MariaDB 10.1 DB instance
* from a MySQL 5.6 snapshot.
*
*
* Valid Values: MySQL
| mariadb
| oracle-se1
|
* oracle-se
| oracle-ee
| sqlserver-ee
| sqlserver-se
|
* sqlserver-ex
| sqlserver-web
| postgres
| aurora
*/
public String getEngine() {
return this.engine;
}
/**
*
* The database engine to use for the new instance.
*
*
* Default: The same as source
*
*
* Constraint: Must be compatible with the engine of the source. You can restore a MariaDB 10.1 DB instance from a
* MySQL 5.6 snapshot.
*
*
* Valid Values: MySQL
| mariadb
| oracle-se1
| oracle-se
|
* oracle-ee
| sqlserver-ee
| sqlserver-se
| sqlserver-ex
|
* sqlserver-web
| postgres
| aurora
*
*
* @param engine
* The database engine to use for the new instance.
*
* Default: The same as source
*
*
* Constraint: Must be compatible with the engine of the source. You can restore a MariaDB 10.1 DB instance
* from a MySQL 5.6 snapshot.
*
*
* Valid Values: MySQL
| mariadb
| oracle-se1
| oracle-se
* | oracle-ee
| sqlserver-ee
| sqlserver-se
|
* sqlserver-ex
| sqlserver-web
| postgres
| aurora
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RestoreDBInstanceFromDBSnapshotRequest withEngine(String engine) {
setEngine(engine);
return this;
}
/**
*
* Specifies the amount of provisioned IOPS for the DB instance, expressed in I/O operations per second. If this
* parameter is not specified, the IOPS value will be taken from the backup. If this parameter is set to 0, the new
* instance will be converted to a non-PIOPS instance, which will take additional time, though your DB instance will
* be available for connections before the conversion starts.
*
*
* Constraints: Must be an integer greater than 1000.
*
*
* SQL Server
*
*
* Setting the IOPS value for the SQL Server database engine is not supported.
*
*
* @param iops
* Specifies the amount of provisioned IOPS for the DB instance, expressed in I/O operations per second. If
* this parameter is not specified, the IOPS value will be taken from the backup. If this parameter is set to
* 0, the new instance will be converted to a non-PIOPS instance, which will take additional time, though
* your DB instance will be available for connections before the conversion starts.
*
* Constraints: Must be an integer greater than 1000.
*
*
* SQL Server
*
*
* Setting the IOPS value for the SQL Server database engine is not supported.
*/
public void setIops(Integer iops) {
this.iops = iops;
}
/**
*
* Specifies the amount of provisioned IOPS for the DB instance, expressed in I/O operations per second. If this
* parameter is not specified, the IOPS value will be taken from the backup. If this parameter is set to 0, the new
* instance will be converted to a non-PIOPS instance, which will take additional time, though your DB instance will
* be available for connections before the conversion starts.
*
*
* Constraints: Must be an integer greater than 1000.
*
*
* SQL Server
*
*
* Setting the IOPS value for the SQL Server database engine is not supported.
*
*
* @return Specifies the amount of provisioned IOPS for the DB instance, expressed in I/O operations per second. If
* this parameter is not specified, the IOPS value will be taken from the backup. If this parameter is set
* to 0, the new instance will be converted to a non-PIOPS instance, which will take additional time, though
* your DB instance will be available for connections before the conversion starts.
*
* Constraints: Must be an integer greater than 1000.
*
*
* SQL Server
*
*
* Setting the IOPS value for the SQL Server database engine is not supported.
*/
public Integer getIops() {
return this.iops;
}
/**
*
* Specifies the amount of provisioned IOPS for the DB instance, expressed in I/O operations per second. If this
* parameter is not specified, the IOPS value will be taken from the backup. If this parameter is set to 0, the new
* instance will be converted to a non-PIOPS instance, which will take additional time, though your DB instance will
* be available for connections before the conversion starts.
*
*
* Constraints: Must be an integer greater than 1000.
*
*
* SQL Server
*
*
* Setting the IOPS value for the SQL Server database engine is not supported.
*
*
* @param iops
* Specifies the amount of provisioned IOPS for the DB instance, expressed in I/O operations per second. If
* this parameter is not specified, the IOPS value will be taken from the backup. If this parameter is set to
* 0, the new instance will be converted to a non-PIOPS instance, which will take additional time, though
* your DB instance will be available for connections before the conversion starts.
*
* Constraints: Must be an integer greater than 1000.
*
*
* SQL Server
*
*
* Setting the IOPS value for the SQL Server database engine is not supported.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RestoreDBInstanceFromDBSnapshotRequest withIops(Integer iops) {
setIops(iops);
return this;
}
/**
*
* The name of the option group to be used for the restored DB instance.
*
*
* Permanent options, such as the TDE option for Oracle Advanced Security TDE, cannot be removed from an option
* group, and that option group cannot be removed from a DB instance once it is associated with a DB instance
*
*
* @param optionGroupName
* The name of the option group to be used for the restored DB instance.
*
* Permanent options, such as the TDE option for Oracle Advanced Security TDE, cannot be removed from an
* option group, and that option group cannot be removed from a DB instance once it is associated with a DB
* instance
*/
public void setOptionGroupName(String optionGroupName) {
this.optionGroupName = optionGroupName;
}
/**
*
* The name of the option group to be used for the restored DB instance.
*
*
* Permanent options, such as the TDE option for Oracle Advanced Security TDE, cannot be removed from an option
* group, and that option group cannot be removed from a DB instance once it is associated with a DB instance
*
*
* @return The name of the option group to be used for the restored DB instance.
*
* Permanent options, such as the TDE option for Oracle Advanced Security TDE, cannot be removed from an
* option group, and that option group cannot be removed from a DB instance once it is associated with a DB
* instance
*/
public String getOptionGroupName() {
return this.optionGroupName;
}
/**
*
* The name of the option group to be used for the restored DB instance.
*
*
* Permanent options, such as the TDE option for Oracle Advanced Security TDE, cannot be removed from an option
* group, and that option group cannot be removed from a DB instance once it is associated with a DB instance
*
*
* @param optionGroupName
* The name of the option group to be used for the restored DB instance.
*
* Permanent options, such as the TDE option for Oracle Advanced Security TDE, cannot be removed from an
* option group, and that option group cannot 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 RestoreDBInstanceFromDBSnapshotRequest withOptionGroupName(String optionGroupName) {
setOptionGroupName(optionGroupName);
return this;
}
/**
* @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 RestoreDBInstanceFromDBSnapshotRequest 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 RestoreDBInstanceFromDBSnapshotRequest withTags(java.util.Collection tags) {
setTags(tags);
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 RestoreDBInstanceFromDBSnapshotRequest 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 RestoreDBInstanceFromDBSnapshotRequest 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 RestoreDBInstanceFromDBSnapshotRequest withTdeCredentialPassword(String tdeCredentialPassword) {
setTdeCredentialPassword(tdeCredentialPassword);
return this;
}
/**
*
* Specify the Active Directory Domain to restore the instance in.
*
*
* @param domain
* Specify the Active Directory Domain to restore the instance in.
*/
public void setDomain(String domain) {
this.domain = domain;
}
/**
*
* Specify the Active Directory Domain to restore the instance in.
*
*
* @return Specify the Active Directory Domain to restore the instance in.
*/
public String getDomain() {
return this.domain;
}
/**
*
* Specify the Active Directory Domain to restore the instance in.
*
*
* @param domain
* Specify the Active Directory Domain to restore the instance in.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RestoreDBInstanceFromDBSnapshotRequest withDomain(String domain) {
setDomain(domain);
return this;
}
/**
*
* True to copy all tags from the restored DB instance to snapshots of the DB instance; otherwise false. The default
* is false.
*
*
* @param copyTagsToSnapshot
* True to copy all tags from the restored DB instance to snapshots of the DB instance; otherwise false. The
* default is false.
*/
public void setCopyTagsToSnapshot(Boolean copyTagsToSnapshot) {
this.copyTagsToSnapshot = copyTagsToSnapshot;
}
/**
*
* True to copy all tags from the restored DB instance to snapshots of the DB instance; otherwise false. The default
* is false.
*
*
* @return True to copy all tags from the restored DB instance to snapshots of the DB instance; otherwise false. The
* default is false.
*/
public Boolean getCopyTagsToSnapshot() {
return this.copyTagsToSnapshot;
}
/**
*
* True to copy all tags from the restored DB instance to snapshots of the DB instance; otherwise false. The default
* is false.
*
*
* @param copyTagsToSnapshot
* True to copy all tags from the restored DB instance to snapshots of the DB instance; otherwise false. The
* default is false.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RestoreDBInstanceFromDBSnapshotRequest withCopyTagsToSnapshot(Boolean copyTagsToSnapshot) {
setCopyTagsToSnapshot(copyTagsToSnapshot);
return this;
}
/**
*
* True to copy all tags from the restored DB instance to snapshots of the DB instance; otherwise false. The default
* is false.
*
*
* @return True to copy all tags from the restored DB instance to snapshots of the DB instance; otherwise false. The
* default is false.
*/
public Boolean isCopyTagsToSnapshot() {
return this.copyTagsToSnapshot;
}
/**
*
* 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 RestoreDBInstanceFromDBSnapshotRequest withDomainIAMRoleName(String domainIAMRoleName) {
setDomainIAMRoleName(domainIAMRoleName);
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 (getDBInstanceIdentifier() != null)
sb.append("DBInstanceIdentifier: ").append(getDBInstanceIdentifier()).append(",");
if (getDBSnapshotIdentifier() != null)
sb.append("DBSnapshotIdentifier: ").append(getDBSnapshotIdentifier()).append(",");
if (getDBInstanceClass() != null)
sb.append("DBInstanceClass: ").append(getDBInstanceClass()).append(",");
if (getPort() != null)
sb.append("Port: ").append(getPort()).append(",");
if (getAvailabilityZone() != null)
sb.append("AvailabilityZone: ").append(getAvailabilityZone()).append(",");
if (getDBSubnetGroupName() != null)
sb.append("DBSubnetGroupName: ").append(getDBSubnetGroupName()).append(",");
if (getMultiAZ() != null)
sb.append("MultiAZ: ").append(getMultiAZ()).append(",");
if (getPubliclyAccessible() != null)
sb.append("PubliclyAccessible: ").append(getPubliclyAccessible()).append(",");
if (getAutoMinorVersionUpgrade() != null)
sb.append("AutoMinorVersionUpgrade: ").append(getAutoMinorVersionUpgrade()).append(",");
if (getLicenseModel() != null)
sb.append("LicenseModel: ").append(getLicenseModel()).append(",");
if (getDBName() != null)
sb.append("DBName: ").append(getDBName()).append(",");
if (getEngine() != null)
sb.append("Engine: ").append(getEngine()).append(",");
if (getIops() != null)
sb.append("Iops: ").append(getIops()).append(",");
if (getOptionGroupName() != null)
sb.append("OptionGroupName: ").append(getOptionGroupName()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags()).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 (getDomain() != null)
sb.append("Domain: ").append(getDomain()).append(",");
if (getCopyTagsToSnapshot() != null)
sb.append("CopyTagsToSnapshot: ").append(getCopyTagsToSnapshot()).append(",");
if (getDomainIAMRoleName() != null)
sb.append("DomainIAMRoleName: ").append(getDomainIAMRoleName());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof RestoreDBInstanceFromDBSnapshotRequest == false)
return false;
RestoreDBInstanceFromDBSnapshotRequest other = (RestoreDBInstanceFromDBSnapshotRequest) obj;
if (other.getDBInstanceIdentifier() == null ^ this.getDBInstanceIdentifier() == null)
return false;
if (other.getDBInstanceIdentifier() != null && other.getDBInstanceIdentifier().equals(this.getDBInstanceIdentifier()) == false)
return false;
if (other.getDBSnapshotIdentifier() == null ^ this.getDBSnapshotIdentifier() == null)
return false;
if (other.getDBSnapshotIdentifier() != null && other.getDBSnapshotIdentifier().equals(this.getDBSnapshotIdentifier()) == 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.getPort() == null ^ this.getPort() == null)
return false;
if (other.getPort() != null && other.getPort().equals(this.getPort()) == 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.getMultiAZ() == null ^ this.getMultiAZ() == null)
return false;
if (other.getMultiAZ() != null && other.getMultiAZ().equals(this.getMultiAZ()) == 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.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.getDBName() == null ^ this.getDBName() == null)
return false;
if (other.getDBName() != null && other.getDBName().equals(this.getDBName()) == 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.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.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == 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.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.getDomainIAMRoleName() == null ^ this.getDomainIAMRoleName() == null)
return false;
if (other.getDomainIAMRoleName() != null && other.getDomainIAMRoleName().equals(this.getDomainIAMRoleName()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDBInstanceIdentifier() == null) ? 0 : getDBInstanceIdentifier().hashCode());
hashCode = prime * hashCode + ((getDBSnapshotIdentifier() == null) ? 0 : getDBSnapshotIdentifier().hashCode());
hashCode = prime * hashCode + ((getDBInstanceClass() == null) ? 0 : getDBInstanceClass().hashCode());
hashCode = prime * hashCode + ((getPort() == null) ? 0 : getPort().hashCode());
hashCode = prime * hashCode + ((getAvailabilityZone() == null) ? 0 : getAvailabilityZone().hashCode());
hashCode = prime * hashCode + ((getDBSubnetGroupName() == null) ? 0 : getDBSubnetGroupName().hashCode());
hashCode = prime * hashCode + ((getMultiAZ() == null) ? 0 : getMultiAZ().hashCode());
hashCode = prime * hashCode + ((getPubliclyAccessible() == null) ? 0 : getPubliclyAccessible().hashCode());
hashCode = prime * hashCode + ((getAutoMinorVersionUpgrade() == null) ? 0 : getAutoMinorVersionUpgrade().hashCode());
hashCode = prime * hashCode + ((getLicenseModel() == null) ? 0 : getLicenseModel().hashCode());
hashCode = prime * hashCode + ((getDBName() == null) ? 0 : getDBName().hashCode());
hashCode = prime * hashCode + ((getEngine() == null) ? 0 : getEngine().hashCode());
hashCode = prime * hashCode + ((getIops() == null) ? 0 : getIops().hashCode());
hashCode = prime * hashCode + ((getOptionGroupName() == null) ? 0 : getOptionGroupName().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().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 + ((getDomain() == null) ? 0 : getDomain().hashCode());
hashCode = prime * hashCode + ((getCopyTagsToSnapshot() == null) ? 0 : getCopyTagsToSnapshot().hashCode());
hashCode = prime * hashCode + ((getDomainIAMRoleName() == null) ? 0 : getDomainIAMRoleName().hashCode());
return hashCode;
}
@Override
public RestoreDBInstanceFromDBSnapshotRequest clone() {
return (RestoreDBInstanceFromDBSnapshotRequest) super.clone();
}
}