com.amazonaws.services.rds.model.DBSnapshot Maven / Gradle / Ivy
Show all versions of aws-java-sdk-rds Show documentation
/*
* Copyright 2019-2024 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;
/**
*
* Contains the details of an Amazon RDS DB snapshot.
*
*
* This data type is used as a response element in the DescribeDBSnapshots
action.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DBSnapshot implements Serializable, Cloneable {
/**
*
* Specifies the identifier for the DB snapshot.
*
*/
private String dBSnapshotIdentifier;
/**
*
* Specifies the DB instance identifier of the DB instance this DB snapshot was created from.
*
*/
private String dBInstanceIdentifier;
/**
*
* Specifies when the snapshot was taken in Coordinated Universal Time (UTC). Changes for the copy when the snapshot
* is copied.
*
*/
private java.util.Date snapshotCreateTime;
/**
*
* Specifies the name of the database engine.
*
*/
private String engine;
/**
*
* Specifies the allocated storage size in gibibytes (GiB).
*
*/
private Integer allocatedStorage;
/**
*
* Specifies the status of this DB snapshot.
*
*/
private String status;
/**
*
* Specifies the port that the database engine was listening on at the time of the snapshot.
*
*/
private Integer port;
/**
*
* Specifies the name of the Availability Zone the DB instance was located in at the time of the DB snapshot.
*
*/
private String availabilityZone;
/**
*
* Provides the VPC ID associated with the DB snapshot.
*
*/
private String vpcId;
/**
*
* Specifies the time in Coordinated Universal Time (UTC) when the DB instance, from which the snapshot was taken,
* was created.
*
*/
private java.util.Date instanceCreateTime;
/**
*
* Provides the master username for the DB snapshot.
*
*/
private String masterUsername;
/**
*
* Specifies the version of the database engine.
*
*/
private String engineVersion;
/**
*
* License model information for the restored DB instance.
*
*/
private String licenseModel;
/**
*
* Provides the type of the DB snapshot.
*
*/
private String snapshotType;
/**
*
* Specifies the Provisioned IOPS (I/O operations per second) value of the DB instance at the time of the snapshot.
*
*/
private Integer iops;
/**
*
* Provides the option group name for the DB snapshot.
*
*/
private String optionGroupName;
/**
*
* The percentage of the estimated data that has been transferred.
*
*/
private Integer percentProgress;
/**
*
* The Amazon Web Services Region that the DB snapshot was created in or copied from.
*
*/
private String sourceRegion;
/**
*
* The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was copied from. It only has a value in the case
* of a cross-account or cross-Region copy.
*
*/
private String sourceDBSnapshotIdentifier;
/**
*
* Specifies the storage type associated with DB snapshot.
*
*/
private String storageType;
/**
*
* The ARN from the key store with which to associate the instance for TDE encryption.
*
*/
private String tdeCredentialArn;
/**
*
* Indicates whether the DB snapshot is encrypted.
*
*/
private Boolean encrypted;
/**
*
* If Encrypted
is true, the Amazon Web Services KMS key identifier for the encrypted DB snapshot.
*
*
* The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
*
*/
private String kmsKeyId;
/**
*
* The Amazon Resource Name (ARN) for the DB snapshot.
*
*/
private String dBSnapshotArn;
/**
*
* The time zone of the DB snapshot. In most cases, the Timezone
element is empty.
* Timezone
content appears only for snapshots taken from Microsoft SQL Server DB instances that were
* created with a time zone specified.
*
*/
private String timezone;
/**
*
* Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database
* accounts is enabled.
*
*/
private Boolean iAMDatabaseAuthenticationEnabled;
/**
*
* The number of CPU cores and the number of threads per core for the DB instance class of the DB instance when the
* DB snapshot was created.
*
*/
private com.amazonaws.internal.SdkInternalList processorFeatures;
/**
*
* The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services
* Region.
*
*/
private String dbiResourceId;
private com.amazonaws.internal.SdkInternalList tagList;
/**
*
* Specifies the time of the CreateDBSnapshot operation in Coordinated Universal Time (UTC). Doesn't change when the
* snapshot is copied.
*
*/
private java.util.Date originalSnapshotCreateTime;
/**
*
* The timestamp of the most recent transaction applied to the database that you're backing up. Thus, if you restore
* a snapshot, SnapshotDatabaseTime is the most recent transaction in the restored DB instance. In contrast,
* originalSnapshotCreateTime specifies the system time that the snapshot completed.
*
*
* If you back up a read replica, you can determine the replica lag by comparing SnapshotDatabaseTime with
* originalSnapshotCreateTime. For example, if originalSnapshotCreateTime is two hours later than
* SnapshotDatabaseTime, then the replica lag is two hours.
*
*/
private java.util.Date snapshotDatabaseTime;
/**
*
* Specifies where manual snapshots are stored: Amazon Web Services Outposts or the Amazon Web Services Region.
*
*/
private String snapshotTarget;
/**
*
* Specifies the storage throughput for the DB snapshot.
*
*/
private Integer storageThroughput;
/**
*
* The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database
* files. The Oracle SID is also the name of your CDB.
*
*/
private String dBSystemId;
/**
*
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
*
*/
private Boolean dedicatedLogVolume;
/**
*
* Indicates whether the snapshot is of a DB instance using the multi-tenant configuration (TRUE) or the
* single-tenant configuration (FALSE).
*
*/
private Boolean multiTenant;
/**
*
* Specifies the identifier for the DB snapshot.
*
*
* @param dBSnapshotIdentifier
* Specifies the identifier for the DB snapshot.
*/
public void setDBSnapshotIdentifier(String dBSnapshotIdentifier) {
this.dBSnapshotIdentifier = dBSnapshotIdentifier;
}
/**
*
* Specifies the identifier for the DB snapshot.
*
*
* @return Specifies the identifier for the DB snapshot.
*/
public String getDBSnapshotIdentifier() {
return this.dBSnapshotIdentifier;
}
/**
*
* Specifies the identifier for the DB snapshot.
*
*
* @param dBSnapshotIdentifier
* Specifies the identifier for the DB snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withDBSnapshotIdentifier(String dBSnapshotIdentifier) {
setDBSnapshotIdentifier(dBSnapshotIdentifier);
return this;
}
/**
*
* Specifies the DB instance identifier of the DB instance this DB snapshot was created from.
*
*
* @param dBInstanceIdentifier
* Specifies the DB instance identifier of the DB instance this DB snapshot was created from.
*/
public void setDBInstanceIdentifier(String dBInstanceIdentifier) {
this.dBInstanceIdentifier = dBInstanceIdentifier;
}
/**
*
* Specifies the DB instance identifier of the DB instance this DB snapshot was created from.
*
*
* @return Specifies the DB instance identifier of the DB instance this DB snapshot was created from.
*/
public String getDBInstanceIdentifier() {
return this.dBInstanceIdentifier;
}
/**
*
* Specifies the DB instance identifier of the DB instance this DB snapshot was created from.
*
*
* @param dBInstanceIdentifier
* Specifies the DB instance identifier of the DB instance this DB snapshot was created from.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withDBInstanceIdentifier(String dBInstanceIdentifier) {
setDBInstanceIdentifier(dBInstanceIdentifier);
return this;
}
/**
*
* Specifies when the snapshot was taken in Coordinated Universal Time (UTC). Changes for the copy when the snapshot
* is copied.
*
*
* @param snapshotCreateTime
* Specifies when the snapshot was taken in Coordinated Universal Time (UTC). Changes for the copy when the
* snapshot is copied.
*/
public void setSnapshotCreateTime(java.util.Date snapshotCreateTime) {
this.snapshotCreateTime = snapshotCreateTime;
}
/**
*
* Specifies when the snapshot was taken in Coordinated Universal Time (UTC). Changes for the copy when the snapshot
* is copied.
*
*
* @return Specifies when the snapshot was taken in Coordinated Universal Time (UTC). Changes for the copy when the
* snapshot is copied.
*/
public java.util.Date getSnapshotCreateTime() {
return this.snapshotCreateTime;
}
/**
*
* Specifies when the snapshot was taken in Coordinated Universal Time (UTC). Changes for the copy when the snapshot
* is copied.
*
*
* @param snapshotCreateTime
* Specifies when the snapshot was taken in Coordinated Universal Time (UTC). Changes for the copy when the
* snapshot is copied.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withSnapshotCreateTime(java.util.Date snapshotCreateTime) {
setSnapshotCreateTime(snapshotCreateTime);
return this;
}
/**
*
* Specifies the name of the database engine.
*
*
* @param engine
* Specifies the name of the database engine.
*/
public void setEngine(String engine) {
this.engine = engine;
}
/**
*
* Specifies the name of the database engine.
*
*
* @return Specifies the name of the database engine.
*/
public String getEngine() {
return this.engine;
}
/**
*
* Specifies the name of the database engine.
*
*
* @param engine
* Specifies the name of the database engine.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withEngine(String engine) {
setEngine(engine);
return this;
}
/**
*
* Specifies the allocated storage size in gibibytes (GiB).
*
*
* @param allocatedStorage
* Specifies the allocated storage size in gibibytes (GiB).
*/
public void setAllocatedStorage(Integer allocatedStorage) {
this.allocatedStorage = allocatedStorage;
}
/**
*
* Specifies the allocated storage size in gibibytes (GiB).
*
*
* @return Specifies the allocated storage size in gibibytes (GiB).
*/
public Integer getAllocatedStorage() {
return this.allocatedStorage;
}
/**
*
* Specifies the allocated storage size in gibibytes (GiB).
*
*
* @param allocatedStorage
* Specifies the allocated storage size in gibibytes (GiB).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withAllocatedStorage(Integer allocatedStorage) {
setAllocatedStorage(allocatedStorage);
return this;
}
/**
*
* Specifies the status of this DB snapshot.
*
*
* @param status
* Specifies the status of this DB snapshot.
*/
public void setStatus(String status) {
this.status = status;
}
/**
*
* Specifies the status of this DB snapshot.
*
*
* @return Specifies the status of this DB snapshot.
*/
public String getStatus() {
return this.status;
}
/**
*
* Specifies the status of this DB snapshot.
*
*
* @param status
* Specifies the status of this DB snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withStatus(String status) {
setStatus(status);
return this;
}
/**
*
* Specifies the port that the database engine was listening on at the time of the snapshot.
*
*
* @param port
* Specifies the port that the database engine was listening on at the time of the snapshot.
*/
public void setPort(Integer port) {
this.port = port;
}
/**
*
* Specifies the port that the database engine was listening on at the time of the snapshot.
*
*
* @return Specifies the port that the database engine was listening on at the time of the snapshot.
*/
public Integer getPort() {
return this.port;
}
/**
*
* Specifies the port that the database engine was listening on at the time of the snapshot.
*
*
* @param port
* Specifies the port that the database engine was listening on at the time of the snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withPort(Integer port) {
setPort(port);
return this;
}
/**
*
* Specifies the name of the Availability Zone the DB instance was located in at the time of the DB snapshot.
*
*
* @param availabilityZone
* Specifies the name of the Availability Zone the DB instance was located in at the time of the DB snapshot.
*/
public void setAvailabilityZone(String availabilityZone) {
this.availabilityZone = availabilityZone;
}
/**
*
* Specifies the name of the Availability Zone the DB instance was located in at the time of the DB snapshot.
*
*
* @return Specifies the name of the Availability Zone the DB instance was located in at the time of the DB
* snapshot.
*/
public String getAvailabilityZone() {
return this.availabilityZone;
}
/**
*
* Specifies the name of the Availability Zone the DB instance was located in at the time of the DB snapshot.
*
*
* @param availabilityZone
* Specifies the name of the Availability Zone the DB instance was located in at the time of the DB snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withAvailabilityZone(String availabilityZone) {
setAvailabilityZone(availabilityZone);
return this;
}
/**
*
* Provides the VPC ID associated with the DB snapshot.
*
*
* @param vpcId
* Provides the VPC ID associated with the DB snapshot.
*/
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
}
/**
*
* Provides the VPC ID associated with the DB snapshot.
*
*
* @return Provides the VPC ID associated with the DB snapshot.
*/
public String getVpcId() {
return this.vpcId;
}
/**
*
* Provides the VPC ID associated with the DB snapshot.
*
*
* @param vpcId
* Provides the VPC ID associated with the DB snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withVpcId(String vpcId) {
setVpcId(vpcId);
return this;
}
/**
*
* Specifies the time in Coordinated Universal Time (UTC) when the DB instance, from which the snapshot was taken,
* was created.
*
*
* @param instanceCreateTime
* Specifies the time in Coordinated Universal Time (UTC) when the DB instance, from which the snapshot was
* taken, was created.
*/
public void setInstanceCreateTime(java.util.Date instanceCreateTime) {
this.instanceCreateTime = instanceCreateTime;
}
/**
*
* Specifies the time in Coordinated Universal Time (UTC) when the DB instance, from which the snapshot was taken,
* was created.
*
*
* @return Specifies the time in Coordinated Universal Time (UTC) when the DB instance, from which the snapshot was
* taken, was created.
*/
public java.util.Date getInstanceCreateTime() {
return this.instanceCreateTime;
}
/**
*
* Specifies the time in Coordinated Universal Time (UTC) when the DB instance, from which the snapshot was taken,
* was created.
*
*
* @param instanceCreateTime
* Specifies the time in Coordinated Universal Time (UTC) when the DB instance, from which the snapshot was
* taken, was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withInstanceCreateTime(java.util.Date instanceCreateTime) {
setInstanceCreateTime(instanceCreateTime);
return this;
}
/**
*
* Provides the master username for the DB snapshot.
*
*
* @param masterUsername
* Provides the master username for the DB snapshot.
*/
public void setMasterUsername(String masterUsername) {
this.masterUsername = masterUsername;
}
/**
*
* Provides the master username for the DB snapshot.
*
*
* @return Provides the master username for the DB snapshot.
*/
public String getMasterUsername() {
return this.masterUsername;
}
/**
*
* Provides the master username for the DB snapshot.
*
*
* @param masterUsername
* Provides the master username for the DB snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withMasterUsername(String masterUsername) {
setMasterUsername(masterUsername);
return this;
}
/**
*
* Specifies the version of the database engine.
*
*
* @param engineVersion
* Specifies the version of the database engine.
*/
public void setEngineVersion(String engineVersion) {
this.engineVersion = engineVersion;
}
/**
*
* Specifies the version of the database engine.
*
*
* @return Specifies the version of the database engine.
*/
public String getEngineVersion() {
return this.engineVersion;
}
/**
*
* Specifies the version of the database engine.
*
*
* @param engineVersion
* Specifies the version of the database engine.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withEngineVersion(String engineVersion) {
setEngineVersion(engineVersion);
return this;
}
/**
*
* License model information for the restored DB instance.
*
*
* @param licenseModel
* License model information for the restored DB instance.
*/
public void setLicenseModel(String licenseModel) {
this.licenseModel = licenseModel;
}
/**
*
* License model information for the restored DB instance.
*
*
* @return License model information for the restored DB instance.
*/
public String getLicenseModel() {
return this.licenseModel;
}
/**
*
* License model information for the restored DB instance.
*
*
* @param licenseModel
* License model information for the restored DB instance.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withLicenseModel(String licenseModel) {
setLicenseModel(licenseModel);
return this;
}
/**
*
* Provides the type of the DB snapshot.
*
*
* @param snapshotType
* Provides the type of the DB snapshot.
*/
public void setSnapshotType(String snapshotType) {
this.snapshotType = snapshotType;
}
/**
*
* Provides the type of the DB snapshot.
*
*
* @return Provides the type of the DB snapshot.
*/
public String getSnapshotType() {
return this.snapshotType;
}
/**
*
* Provides the type of the DB snapshot.
*
*
* @param snapshotType
* Provides the type of the DB snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withSnapshotType(String snapshotType) {
setSnapshotType(snapshotType);
return this;
}
/**
*
* Specifies the Provisioned IOPS (I/O operations per second) value of the DB instance at the time of the snapshot.
*
*
* @param iops
* Specifies the Provisioned IOPS (I/O operations per second) value of the DB instance at the time of the
* snapshot.
*/
public void setIops(Integer iops) {
this.iops = iops;
}
/**
*
* Specifies the Provisioned IOPS (I/O operations per second) value of the DB instance at the time of the snapshot.
*
*
* @return Specifies the Provisioned IOPS (I/O operations per second) value of the DB instance at the time of the
* snapshot.
*/
public Integer getIops() {
return this.iops;
}
/**
*
* Specifies the Provisioned IOPS (I/O operations per second) value of the DB instance at the time of the snapshot.
*
*
* @param iops
* Specifies the Provisioned IOPS (I/O operations per second) value of the DB instance at the time of the
* snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withIops(Integer iops) {
setIops(iops);
return this;
}
/**
*
* Provides the option group name for the DB snapshot.
*
*
* @param optionGroupName
* Provides the option group name for the DB snapshot.
*/
public void setOptionGroupName(String optionGroupName) {
this.optionGroupName = optionGroupName;
}
/**
*
* Provides the option group name for the DB snapshot.
*
*
* @return Provides the option group name for the DB snapshot.
*/
public String getOptionGroupName() {
return this.optionGroupName;
}
/**
*
* Provides the option group name for the DB snapshot.
*
*
* @param optionGroupName
* Provides the option group name for the DB snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withOptionGroupName(String optionGroupName) {
setOptionGroupName(optionGroupName);
return this;
}
/**
*
* The percentage of the estimated data that has been transferred.
*
*
* @param percentProgress
* The percentage of the estimated data that has been transferred.
*/
public void setPercentProgress(Integer percentProgress) {
this.percentProgress = percentProgress;
}
/**
*
* The percentage of the estimated data that has been transferred.
*
*
* @return The percentage of the estimated data that has been transferred.
*/
public Integer getPercentProgress() {
return this.percentProgress;
}
/**
*
* The percentage of the estimated data that has been transferred.
*
*
* @param percentProgress
* The percentage of the estimated data that has been transferred.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withPercentProgress(Integer percentProgress) {
setPercentProgress(percentProgress);
return this;
}
/**
*
* The Amazon Web Services Region that the DB snapshot was created in or copied from.
*
*
* @param sourceRegion
* The Amazon Web Services Region that the DB snapshot was created in or copied from.
*/
public void setSourceRegion(String sourceRegion) {
this.sourceRegion = sourceRegion;
}
/**
*
* The Amazon Web Services Region that the DB snapshot was created in or copied from.
*
*
* @return The Amazon Web Services Region that the DB snapshot was created in or copied from.
*/
public String getSourceRegion() {
return this.sourceRegion;
}
/**
*
* The Amazon Web Services Region that the DB snapshot was created in or copied from.
*
*
* @param sourceRegion
* The Amazon Web Services Region that the DB snapshot was created in or copied from.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withSourceRegion(String sourceRegion) {
setSourceRegion(sourceRegion);
return this;
}
/**
*
* The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was copied from. It only has a value in the case
* of a cross-account or cross-Region copy.
*
*
* @param sourceDBSnapshotIdentifier
* The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was copied from. It only has a value in
* the case of a cross-account or cross-Region copy.
*/
public void setSourceDBSnapshotIdentifier(String sourceDBSnapshotIdentifier) {
this.sourceDBSnapshotIdentifier = sourceDBSnapshotIdentifier;
}
/**
*
* The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was copied from. It only has a value in the case
* of a cross-account or cross-Region copy.
*
*
* @return The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was copied from. It only has a value in
* the case of a cross-account or cross-Region copy.
*/
public String getSourceDBSnapshotIdentifier() {
return this.sourceDBSnapshotIdentifier;
}
/**
*
* The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was copied from. It only has a value in the case
* of a cross-account or cross-Region copy.
*
*
* @param sourceDBSnapshotIdentifier
* The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was copied from. It only has a value in
* the case of a cross-account or cross-Region copy.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withSourceDBSnapshotIdentifier(String sourceDBSnapshotIdentifier) {
setSourceDBSnapshotIdentifier(sourceDBSnapshotIdentifier);
return this;
}
/**
*
* Specifies the storage type associated with DB snapshot.
*
*
* @param storageType
* Specifies the storage type associated with DB snapshot.
*/
public void setStorageType(String storageType) {
this.storageType = storageType;
}
/**
*
* Specifies the storage type associated with DB snapshot.
*
*
* @return Specifies the storage type associated with DB snapshot.
*/
public String getStorageType() {
return this.storageType;
}
/**
*
* Specifies the storage type associated with DB snapshot.
*
*
* @param storageType
* Specifies the storage type associated with DB snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot 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 DBSnapshot withTdeCredentialArn(String tdeCredentialArn) {
setTdeCredentialArn(tdeCredentialArn);
return this;
}
/**
*
* Indicates whether the DB snapshot is encrypted.
*
*
* @param encrypted
* Indicates whether the DB snapshot is encrypted.
*/
public void setEncrypted(Boolean encrypted) {
this.encrypted = encrypted;
}
/**
*
* Indicates whether the DB snapshot is encrypted.
*
*
* @return Indicates whether the DB snapshot is encrypted.
*/
public Boolean getEncrypted() {
return this.encrypted;
}
/**
*
* Indicates whether the DB snapshot is encrypted.
*
*
* @param encrypted
* Indicates whether the DB snapshot is encrypted.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withEncrypted(Boolean encrypted) {
setEncrypted(encrypted);
return this;
}
/**
*
* Indicates whether the DB snapshot is encrypted.
*
*
* @return Indicates whether the DB snapshot is encrypted.
*/
public Boolean isEncrypted() {
return this.encrypted;
}
/**
*
* If Encrypted
is true, the Amazon Web Services KMS key identifier for the encrypted DB snapshot.
*
*
* The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
*
*
* @param kmsKeyId
* If Encrypted
is true, the Amazon Web Services KMS key identifier for the encrypted DB
* snapshot.
*
* The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS
* key.
*/
public void setKmsKeyId(String kmsKeyId) {
this.kmsKeyId = kmsKeyId;
}
/**
*
* If Encrypted
is true, the Amazon Web Services KMS key identifier for the encrypted DB snapshot.
*
*
* The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
*
*
* @return If Encrypted
is true, the Amazon Web Services KMS key identifier for the encrypted DB
* snapshot.
*
* The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS
* key.
*/
public String getKmsKeyId() {
return this.kmsKeyId;
}
/**
*
* If Encrypted
is true, the Amazon Web Services KMS key identifier for the encrypted DB snapshot.
*
*
* The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
*
*
* @param kmsKeyId
* If Encrypted
is true, the Amazon Web Services KMS key identifier for the encrypted DB
* snapshot.
*
* The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS
* key.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withKmsKeyId(String kmsKeyId) {
setKmsKeyId(kmsKeyId);
return this;
}
/**
*
* The Amazon Resource Name (ARN) for the DB snapshot.
*
*
* @param dBSnapshotArn
* The Amazon Resource Name (ARN) for the DB snapshot.
*/
public void setDBSnapshotArn(String dBSnapshotArn) {
this.dBSnapshotArn = dBSnapshotArn;
}
/**
*
* The Amazon Resource Name (ARN) for the DB snapshot.
*
*
* @return The Amazon Resource Name (ARN) for the DB snapshot.
*/
public String getDBSnapshotArn() {
return this.dBSnapshotArn;
}
/**
*
* The Amazon Resource Name (ARN) for the DB snapshot.
*
*
* @param dBSnapshotArn
* The Amazon Resource Name (ARN) for the DB snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withDBSnapshotArn(String dBSnapshotArn) {
setDBSnapshotArn(dBSnapshotArn);
return this;
}
/**
*
* The time zone of the DB snapshot. In most cases, the Timezone
element is empty.
* Timezone
content appears only for snapshots taken from Microsoft SQL Server DB instances that were
* created with a time zone specified.
*
*
* @param timezone
* The time zone of the DB snapshot. In most cases, the Timezone
element is empty.
* Timezone
content appears only for snapshots taken from Microsoft SQL Server DB instances that
* were created with a time zone specified.
*/
public void setTimezone(String timezone) {
this.timezone = timezone;
}
/**
*
* The time zone of the DB snapshot. In most cases, the Timezone
element is empty.
* Timezone
content appears only for snapshots taken from Microsoft SQL Server DB instances that were
* created with a time zone specified.
*
*
* @return The time zone of the DB snapshot. In most cases, the Timezone
element is empty.
* Timezone
content appears only for snapshots taken from Microsoft SQL Server DB instances
* that were created with a time zone specified.
*/
public String getTimezone() {
return this.timezone;
}
/**
*
* The time zone of the DB snapshot. In most cases, the Timezone
element is empty.
* Timezone
content appears only for snapshots taken from Microsoft SQL Server DB instances that were
* created with a time zone specified.
*
*
* @param timezone
* The time zone of the DB snapshot. In most cases, the Timezone
element is empty.
* Timezone
content appears only for snapshots taken from Microsoft SQL Server DB instances that
* were created with a time zone specified.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withTimezone(String timezone) {
setTimezone(timezone);
return this;
}
/**
*
* Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database
* accounts is enabled.
*
*
* @param iAMDatabaseAuthenticationEnabled
* Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database
* accounts is enabled.
*/
public void setIAMDatabaseAuthenticationEnabled(Boolean iAMDatabaseAuthenticationEnabled) {
this.iAMDatabaseAuthenticationEnabled = iAMDatabaseAuthenticationEnabled;
}
/**
*
* Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database
* accounts is enabled.
*
*
* @return Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to
* database accounts is enabled.
*/
public Boolean getIAMDatabaseAuthenticationEnabled() {
return this.iAMDatabaseAuthenticationEnabled;
}
/**
*
* Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database
* accounts is enabled.
*
*
* @param iAMDatabaseAuthenticationEnabled
* Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database
* accounts is enabled.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withIAMDatabaseAuthenticationEnabled(Boolean iAMDatabaseAuthenticationEnabled) {
setIAMDatabaseAuthenticationEnabled(iAMDatabaseAuthenticationEnabled);
return this;
}
/**
*
* Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database
* accounts is enabled.
*
*
* @return Indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to
* database accounts is enabled.
*/
public Boolean isIAMDatabaseAuthenticationEnabled() {
return this.iAMDatabaseAuthenticationEnabled;
}
/**
*
* The number of CPU cores and the number of threads per core for the DB instance class of the DB instance when the
* DB snapshot was created.
*
*
* @return The number of CPU cores and the number of threads per core for the DB instance class of the DB instance
* when the DB snapshot was created.
*/
public java.util.List getProcessorFeatures() {
if (processorFeatures == null) {
processorFeatures = new com.amazonaws.internal.SdkInternalList();
}
return processorFeatures;
}
/**
*
* The number of CPU cores and the number of threads per core for the DB instance class of the DB instance when the
* DB snapshot was created.
*
*
* @param processorFeatures
* The number of CPU cores and the number of threads per core for the DB instance class of the DB instance
* when the DB snapshot was created.
*/
public void setProcessorFeatures(java.util.Collection processorFeatures) {
if (processorFeatures == null) {
this.processorFeatures = null;
return;
}
this.processorFeatures = new com.amazonaws.internal.SdkInternalList(processorFeatures);
}
/**
*
* The number of CPU cores and the number of threads per core for the DB instance class of the DB instance when the
* DB snapshot was created.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setProcessorFeatures(java.util.Collection)} or {@link #withProcessorFeatures(java.util.Collection)} if
* you want to override the existing values.
*
*
* @param processorFeatures
* The number of CPU cores and the number of threads per core for the DB instance class of the DB instance
* when the DB snapshot was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withProcessorFeatures(ProcessorFeature... processorFeatures) {
if (this.processorFeatures == null) {
setProcessorFeatures(new com.amazonaws.internal.SdkInternalList(processorFeatures.length));
}
for (ProcessorFeature ele : processorFeatures) {
this.processorFeatures.add(ele);
}
return this;
}
/**
*
* The number of CPU cores and the number of threads per core for the DB instance class of the DB instance when the
* DB snapshot was created.
*
*
* @param processorFeatures
* The number of CPU cores and the number of threads per core for the DB instance class of the DB instance
* when the DB snapshot was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withProcessorFeatures(java.util.Collection processorFeatures) {
setProcessorFeatures(processorFeatures);
return this;
}
/**
*
* The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services
* Region.
*
*
* @param dbiResourceId
* The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web
* Services Region.
*/
public void setDbiResourceId(String dbiResourceId) {
this.dbiResourceId = dbiResourceId;
}
/**
*
* The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services
* Region.
*
*
* @return The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web
* Services Region.
*/
public String getDbiResourceId() {
return this.dbiResourceId;
}
/**
*
* The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services
* Region.
*
*
* @param dbiResourceId
* The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web
* Services Region.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withDbiResourceId(String dbiResourceId) {
setDbiResourceId(dbiResourceId);
return this;
}
/**
* @return
*/
public java.util.List getTagList() {
if (tagList == null) {
tagList = new com.amazonaws.internal.SdkInternalList();
}
return tagList;
}
/**
* @param tagList
*/
public void setTagList(java.util.Collection tagList) {
if (tagList == null) {
this.tagList = null;
return;
}
this.tagList = new com.amazonaws.internal.SdkInternalList(tagList);
}
/**
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTagList(java.util.Collection)} or {@link #withTagList(java.util.Collection)} if you want to override
* the existing values.
*
*
* @param tagList
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withTagList(Tag... tagList) {
if (this.tagList == null) {
setTagList(new com.amazonaws.internal.SdkInternalList(tagList.length));
}
for (Tag ele : tagList) {
this.tagList.add(ele);
}
return this;
}
/**
* @param tagList
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withTagList(java.util.Collection tagList) {
setTagList(tagList);
return this;
}
/**
*
* Specifies the time of the CreateDBSnapshot operation in Coordinated Universal Time (UTC). Doesn't change when the
* snapshot is copied.
*
*
* @param originalSnapshotCreateTime
* Specifies the time of the CreateDBSnapshot operation in Coordinated Universal Time (UTC). Doesn't change
* when the snapshot is copied.
*/
public void setOriginalSnapshotCreateTime(java.util.Date originalSnapshotCreateTime) {
this.originalSnapshotCreateTime = originalSnapshotCreateTime;
}
/**
*
* Specifies the time of the CreateDBSnapshot operation in Coordinated Universal Time (UTC). Doesn't change when the
* snapshot is copied.
*
*
* @return Specifies the time of the CreateDBSnapshot operation in Coordinated Universal Time (UTC). Doesn't change
* when the snapshot is copied.
*/
public java.util.Date getOriginalSnapshotCreateTime() {
return this.originalSnapshotCreateTime;
}
/**
*
* Specifies the time of the CreateDBSnapshot operation in Coordinated Universal Time (UTC). Doesn't change when the
* snapshot is copied.
*
*
* @param originalSnapshotCreateTime
* Specifies the time of the CreateDBSnapshot operation in Coordinated Universal Time (UTC). Doesn't change
* when the snapshot is copied.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withOriginalSnapshotCreateTime(java.util.Date originalSnapshotCreateTime) {
setOriginalSnapshotCreateTime(originalSnapshotCreateTime);
return this;
}
/**
*
* The timestamp of the most recent transaction applied to the database that you're backing up. Thus, if you restore
* a snapshot, SnapshotDatabaseTime is the most recent transaction in the restored DB instance. In contrast,
* originalSnapshotCreateTime specifies the system time that the snapshot completed.
*
*
* If you back up a read replica, you can determine the replica lag by comparing SnapshotDatabaseTime with
* originalSnapshotCreateTime. For example, if originalSnapshotCreateTime is two hours later than
* SnapshotDatabaseTime, then the replica lag is two hours.
*
*
* @param snapshotDatabaseTime
* The timestamp of the most recent transaction applied to the database that you're backing up. Thus, if you
* restore a snapshot, SnapshotDatabaseTime is the most recent transaction in the restored DB instance. In
* contrast, originalSnapshotCreateTime specifies the system time that the snapshot completed.
*
* If you back up a read replica, you can determine the replica lag by comparing SnapshotDatabaseTime with
* originalSnapshotCreateTime. For example, if originalSnapshotCreateTime is two hours later than
* SnapshotDatabaseTime, then the replica lag is two hours.
*/
public void setSnapshotDatabaseTime(java.util.Date snapshotDatabaseTime) {
this.snapshotDatabaseTime = snapshotDatabaseTime;
}
/**
*
* The timestamp of the most recent transaction applied to the database that you're backing up. Thus, if you restore
* a snapshot, SnapshotDatabaseTime is the most recent transaction in the restored DB instance. In contrast,
* originalSnapshotCreateTime specifies the system time that the snapshot completed.
*
*
* If you back up a read replica, you can determine the replica lag by comparing SnapshotDatabaseTime with
* originalSnapshotCreateTime. For example, if originalSnapshotCreateTime is two hours later than
* SnapshotDatabaseTime, then the replica lag is two hours.
*
*
* @return The timestamp of the most recent transaction applied to the database that you're backing up. Thus, if you
* restore a snapshot, SnapshotDatabaseTime is the most recent transaction in the restored DB instance. In
* contrast, originalSnapshotCreateTime specifies the system time that the snapshot completed.
*
* If you back up a read replica, you can determine the replica lag by comparing SnapshotDatabaseTime with
* originalSnapshotCreateTime. For example, if originalSnapshotCreateTime is two hours later than
* SnapshotDatabaseTime, then the replica lag is two hours.
*/
public java.util.Date getSnapshotDatabaseTime() {
return this.snapshotDatabaseTime;
}
/**
*
* The timestamp of the most recent transaction applied to the database that you're backing up. Thus, if you restore
* a snapshot, SnapshotDatabaseTime is the most recent transaction in the restored DB instance. In contrast,
* originalSnapshotCreateTime specifies the system time that the snapshot completed.
*
*
* If you back up a read replica, you can determine the replica lag by comparing SnapshotDatabaseTime with
* originalSnapshotCreateTime. For example, if originalSnapshotCreateTime is two hours later than
* SnapshotDatabaseTime, then the replica lag is two hours.
*
*
* @param snapshotDatabaseTime
* The timestamp of the most recent transaction applied to the database that you're backing up. Thus, if you
* restore a snapshot, SnapshotDatabaseTime is the most recent transaction in the restored DB instance. In
* contrast, originalSnapshotCreateTime specifies the system time that the snapshot completed.
*
* If you back up a read replica, you can determine the replica lag by comparing SnapshotDatabaseTime with
* originalSnapshotCreateTime. For example, if originalSnapshotCreateTime is two hours later than
* SnapshotDatabaseTime, then the replica lag is two hours.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withSnapshotDatabaseTime(java.util.Date snapshotDatabaseTime) {
setSnapshotDatabaseTime(snapshotDatabaseTime);
return this;
}
/**
*
* Specifies where manual snapshots are stored: Amazon Web Services Outposts or the Amazon Web Services Region.
*
*
* @param snapshotTarget
* Specifies where manual snapshots are stored: Amazon Web Services Outposts or the Amazon Web Services
* Region.
*/
public void setSnapshotTarget(String snapshotTarget) {
this.snapshotTarget = snapshotTarget;
}
/**
*
* Specifies where manual snapshots are stored: Amazon Web Services Outposts or the Amazon Web Services Region.
*
*
* @return Specifies where manual snapshots are stored: Amazon Web Services Outposts or the Amazon Web Services
* Region.
*/
public String getSnapshotTarget() {
return this.snapshotTarget;
}
/**
*
* Specifies where manual snapshots are stored: Amazon Web Services Outposts or the Amazon Web Services Region.
*
*
* @param snapshotTarget
* Specifies where manual snapshots are stored: Amazon Web Services Outposts or the Amazon Web Services
* Region.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withSnapshotTarget(String snapshotTarget) {
setSnapshotTarget(snapshotTarget);
return this;
}
/**
*
* Specifies the storage throughput for the DB snapshot.
*
*
* @param storageThroughput
* Specifies the storage throughput for the DB snapshot.
*/
public void setStorageThroughput(Integer storageThroughput) {
this.storageThroughput = storageThroughput;
}
/**
*
* Specifies the storage throughput for the DB snapshot.
*
*
* @return Specifies the storage throughput for the DB snapshot.
*/
public Integer getStorageThroughput() {
return this.storageThroughput;
}
/**
*
* Specifies the storage throughput for the DB snapshot.
*
*
* @param storageThroughput
* Specifies the storage throughput for the DB snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withStorageThroughput(Integer storageThroughput) {
setStorageThroughput(storageThroughput);
return this;
}
/**
*
* The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database
* files. The Oracle SID is also the name of your CDB.
*
*
* @param dBSystemId
* The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your
* database files. The Oracle SID is also the name of your CDB.
*/
public void setDBSystemId(String dBSystemId) {
this.dBSystemId = dBSystemId;
}
/**
*
* The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database
* files. The Oracle SID is also the name of your CDB.
*
*
* @return The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your
* database files. The Oracle SID is also the name of your CDB.
*/
public String getDBSystemId() {
return this.dBSystemId;
}
/**
*
* The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database
* files. The Oracle SID is also the name of your CDB.
*
*
* @param dBSystemId
* The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your
* database files. The Oracle SID is also the name of your CDB.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withDBSystemId(String dBSystemId) {
setDBSystemId(dBSystemId);
return this;
}
/**
*
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
*
*
* @param dedicatedLogVolume
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
*/
public void setDedicatedLogVolume(Boolean dedicatedLogVolume) {
this.dedicatedLogVolume = dedicatedLogVolume;
}
/**
*
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
*
*
* @return Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
*/
public Boolean getDedicatedLogVolume() {
return this.dedicatedLogVolume;
}
/**
*
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
*
*
* @param dedicatedLogVolume
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withDedicatedLogVolume(Boolean dedicatedLogVolume) {
setDedicatedLogVolume(dedicatedLogVolume);
return this;
}
/**
*
* Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
*
*
* @return Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
*/
public Boolean isDedicatedLogVolume() {
return this.dedicatedLogVolume;
}
/**
*
* Indicates whether the snapshot is of a DB instance using the multi-tenant configuration (TRUE) or the
* single-tenant configuration (FALSE).
*
*
* @param multiTenant
* Indicates whether the snapshot is of a DB instance using the multi-tenant configuration (TRUE) or the
* single-tenant configuration (FALSE).
*/
public void setMultiTenant(Boolean multiTenant) {
this.multiTenant = multiTenant;
}
/**
*
* Indicates whether the snapshot is of a DB instance using the multi-tenant configuration (TRUE) or the
* single-tenant configuration (FALSE).
*
*
* @return Indicates whether the snapshot is of a DB instance using the multi-tenant configuration (TRUE) or the
* single-tenant configuration (FALSE).
*/
public Boolean getMultiTenant() {
return this.multiTenant;
}
/**
*
* Indicates whether the snapshot is of a DB instance using the multi-tenant configuration (TRUE) or the
* single-tenant configuration (FALSE).
*
*
* @param multiTenant
* Indicates whether the snapshot is of a DB instance using the multi-tenant configuration (TRUE) or the
* single-tenant configuration (FALSE).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DBSnapshot withMultiTenant(Boolean multiTenant) {
setMultiTenant(multiTenant);
return this;
}
/**
*
* Indicates whether the snapshot is of a DB instance using the multi-tenant configuration (TRUE) or the
* single-tenant configuration (FALSE).
*
*
* @return Indicates whether the snapshot is of a DB instance using the multi-tenant configuration (TRUE) or the
* single-tenant configuration (FALSE).
*/
public Boolean isMultiTenant() {
return this.multiTenant;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getDBSnapshotIdentifier() != null)
sb.append("DBSnapshotIdentifier: ").append(getDBSnapshotIdentifier()).append(",");
if (getDBInstanceIdentifier() != null)
sb.append("DBInstanceIdentifier: ").append(getDBInstanceIdentifier()).append(",");
if (getSnapshotCreateTime() != null)
sb.append("SnapshotCreateTime: ").append(getSnapshotCreateTime()).append(",");
if (getEngine() != null)
sb.append("Engine: ").append(getEngine()).append(",");
if (getAllocatedStorage() != null)
sb.append("AllocatedStorage: ").append(getAllocatedStorage()).append(",");
if (getStatus() != null)
sb.append("Status: ").append(getStatus()).append(",");
if (getPort() != null)
sb.append("Port: ").append(getPort()).append(",");
if (getAvailabilityZone() != null)
sb.append("AvailabilityZone: ").append(getAvailabilityZone()).append(",");
if (getVpcId() != null)
sb.append("VpcId: ").append(getVpcId()).append(",");
if (getInstanceCreateTime() != null)
sb.append("InstanceCreateTime: ").append(getInstanceCreateTime()).append(",");
if (getMasterUsername() != null)
sb.append("MasterUsername: ").append(getMasterUsername()).append(",");
if (getEngineVersion() != null)
sb.append("EngineVersion: ").append(getEngineVersion()).append(",");
if (getLicenseModel() != null)
sb.append("LicenseModel: ").append(getLicenseModel()).append(",");
if (getSnapshotType() != null)
sb.append("SnapshotType: ").append(getSnapshotType()).append(",");
if (getIops() != null)
sb.append("Iops: ").append(getIops()).append(",");
if (getOptionGroupName() != null)
sb.append("OptionGroupName: ").append(getOptionGroupName()).append(",");
if (getPercentProgress() != null)
sb.append("PercentProgress: ").append(getPercentProgress()).append(",");
if (getSourceRegion() != null)
sb.append("SourceRegion: ").append(getSourceRegion()).append(",");
if (getSourceDBSnapshotIdentifier() != null)
sb.append("SourceDBSnapshotIdentifier: ").append(getSourceDBSnapshotIdentifier()).append(",");
if (getStorageType() != null)
sb.append("StorageType: ").append(getStorageType()).append(",");
if (getTdeCredentialArn() != null)
sb.append("TdeCredentialArn: ").append(getTdeCredentialArn()).append(",");
if (getEncrypted() != null)
sb.append("Encrypted: ").append(getEncrypted()).append(",");
if (getKmsKeyId() != null)
sb.append("KmsKeyId: ").append(getKmsKeyId()).append(",");
if (getDBSnapshotArn() != null)
sb.append("DBSnapshotArn: ").append(getDBSnapshotArn()).append(",");
if (getTimezone() != null)
sb.append("Timezone: ").append(getTimezone()).append(",");
if (getIAMDatabaseAuthenticationEnabled() != null)
sb.append("IAMDatabaseAuthenticationEnabled: ").append(getIAMDatabaseAuthenticationEnabled()).append(",");
if (getProcessorFeatures() != null)
sb.append("ProcessorFeatures: ").append(getProcessorFeatures()).append(",");
if (getDbiResourceId() != null)
sb.append("DbiResourceId: ").append(getDbiResourceId()).append(",");
if (getTagList() != null)
sb.append("TagList: ").append(getTagList()).append(",");
if (getOriginalSnapshotCreateTime() != null)
sb.append("OriginalSnapshotCreateTime: ").append(getOriginalSnapshotCreateTime()).append(",");
if (getSnapshotDatabaseTime() != null)
sb.append("SnapshotDatabaseTime: ").append(getSnapshotDatabaseTime()).append(",");
if (getSnapshotTarget() != null)
sb.append("SnapshotTarget: ").append(getSnapshotTarget()).append(",");
if (getStorageThroughput() != null)
sb.append("StorageThroughput: ").append(getStorageThroughput()).append(",");
if (getDBSystemId() != null)
sb.append("DBSystemId: ").append(getDBSystemId()).append(",");
if (getDedicatedLogVolume() != null)
sb.append("DedicatedLogVolume: ").append(getDedicatedLogVolume()).append(",");
if (getMultiTenant() != null)
sb.append("MultiTenant: ").append(getMultiTenant());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DBSnapshot == false)
return false;
DBSnapshot other = (DBSnapshot) obj;
if (other.getDBSnapshotIdentifier() == null ^ this.getDBSnapshotIdentifier() == null)
return false;
if (other.getDBSnapshotIdentifier() != null && other.getDBSnapshotIdentifier().equals(this.getDBSnapshotIdentifier()) == 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.getSnapshotCreateTime() == null ^ this.getSnapshotCreateTime() == null)
return false;
if (other.getSnapshotCreateTime() != null && other.getSnapshotCreateTime().equals(this.getSnapshotCreateTime()) == 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.getAllocatedStorage() == null ^ this.getAllocatedStorage() == null)
return false;
if (other.getAllocatedStorage() != null && other.getAllocatedStorage().equals(this.getAllocatedStorage()) == false)
return false;
if (other.getStatus() == null ^ this.getStatus() == null)
return false;
if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == 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.getVpcId() == null ^ this.getVpcId() == null)
return false;
if (other.getVpcId() != null && other.getVpcId().equals(this.getVpcId()) == false)
return false;
if (other.getInstanceCreateTime() == null ^ this.getInstanceCreateTime() == null)
return false;
if (other.getInstanceCreateTime() != null && other.getInstanceCreateTime().equals(this.getInstanceCreateTime()) == 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.getEngineVersion() == null ^ this.getEngineVersion() == null)
return false;
if (other.getEngineVersion() != null && other.getEngineVersion().equals(this.getEngineVersion()) == 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.getSnapshotType() == null ^ this.getSnapshotType() == null)
return false;
if (other.getSnapshotType() != null && other.getSnapshotType().equals(this.getSnapshotType()) == 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.getPercentProgress() == null ^ this.getPercentProgress() == null)
return false;
if (other.getPercentProgress() != null && other.getPercentProgress().equals(this.getPercentProgress()) == false)
return false;
if (other.getSourceRegion() == null ^ this.getSourceRegion() == null)
return false;
if (other.getSourceRegion() != null && other.getSourceRegion().equals(this.getSourceRegion()) == false)
return false;
if (other.getSourceDBSnapshotIdentifier() == null ^ this.getSourceDBSnapshotIdentifier() == null)
return false;
if (other.getSourceDBSnapshotIdentifier() != null && other.getSourceDBSnapshotIdentifier().equals(this.getSourceDBSnapshotIdentifier()) == 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.getEncrypted() == null ^ this.getEncrypted() == null)
return false;
if (other.getEncrypted() != null && other.getEncrypted().equals(this.getEncrypted()) == 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.getDBSnapshotArn() == null ^ this.getDBSnapshotArn() == null)
return false;
if (other.getDBSnapshotArn() != null && other.getDBSnapshotArn().equals(this.getDBSnapshotArn()) == 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.getIAMDatabaseAuthenticationEnabled() == null ^ this.getIAMDatabaseAuthenticationEnabled() == null)
return false;
if (other.getIAMDatabaseAuthenticationEnabled() != null
&& other.getIAMDatabaseAuthenticationEnabled().equals(this.getIAMDatabaseAuthenticationEnabled()) == false)
return false;
if (other.getProcessorFeatures() == null ^ this.getProcessorFeatures() == null)
return false;
if (other.getProcessorFeatures() != null && other.getProcessorFeatures().equals(this.getProcessorFeatures()) == false)
return false;
if (other.getDbiResourceId() == null ^ this.getDbiResourceId() == null)
return false;
if (other.getDbiResourceId() != null && other.getDbiResourceId().equals(this.getDbiResourceId()) == false)
return false;
if (other.getTagList() == null ^ this.getTagList() == null)
return false;
if (other.getTagList() != null && other.getTagList().equals(this.getTagList()) == false)
return false;
if (other.getOriginalSnapshotCreateTime() == null ^ this.getOriginalSnapshotCreateTime() == null)
return false;
if (other.getOriginalSnapshotCreateTime() != null && other.getOriginalSnapshotCreateTime().equals(this.getOriginalSnapshotCreateTime()) == false)
return false;
if (other.getSnapshotDatabaseTime() == null ^ this.getSnapshotDatabaseTime() == null)
return false;
if (other.getSnapshotDatabaseTime() != null && other.getSnapshotDatabaseTime().equals(this.getSnapshotDatabaseTime()) == false)
return false;
if (other.getSnapshotTarget() == null ^ this.getSnapshotTarget() == null)
return false;
if (other.getSnapshotTarget() != null && other.getSnapshotTarget().equals(this.getSnapshotTarget()) == false)
return false;
if (other.getStorageThroughput() == null ^ this.getStorageThroughput() == null)
return false;
if (other.getStorageThroughput() != null && other.getStorageThroughput().equals(this.getStorageThroughput()) == false)
return false;
if (other.getDBSystemId() == null ^ this.getDBSystemId() == null)
return false;
if (other.getDBSystemId() != null && other.getDBSystemId().equals(this.getDBSystemId()) == false)
return false;
if (other.getDedicatedLogVolume() == null ^ this.getDedicatedLogVolume() == null)
return false;
if (other.getDedicatedLogVolume() != null && other.getDedicatedLogVolume().equals(this.getDedicatedLogVolume()) == false)
return false;
if (other.getMultiTenant() == null ^ this.getMultiTenant() == null)
return false;
if (other.getMultiTenant() != null && other.getMultiTenant().equals(this.getMultiTenant()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDBSnapshotIdentifier() == null) ? 0 : getDBSnapshotIdentifier().hashCode());
hashCode = prime * hashCode + ((getDBInstanceIdentifier() == null) ? 0 : getDBInstanceIdentifier().hashCode());
hashCode = prime * hashCode + ((getSnapshotCreateTime() == null) ? 0 : getSnapshotCreateTime().hashCode());
hashCode = prime * hashCode + ((getEngine() == null) ? 0 : getEngine().hashCode());
hashCode = prime * hashCode + ((getAllocatedStorage() == null) ? 0 : getAllocatedStorage().hashCode());
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getPort() == null) ? 0 : getPort().hashCode());
hashCode = prime * hashCode + ((getAvailabilityZone() == null) ? 0 : getAvailabilityZone().hashCode());
hashCode = prime * hashCode + ((getVpcId() == null) ? 0 : getVpcId().hashCode());
hashCode = prime * hashCode + ((getInstanceCreateTime() == null) ? 0 : getInstanceCreateTime().hashCode());
hashCode = prime * hashCode + ((getMasterUsername() == null) ? 0 : getMasterUsername().hashCode());
hashCode = prime * hashCode + ((getEngineVersion() == null) ? 0 : getEngineVersion().hashCode());
hashCode = prime * hashCode + ((getLicenseModel() == null) ? 0 : getLicenseModel().hashCode());
hashCode = prime * hashCode + ((getSnapshotType() == null) ? 0 : getSnapshotType().hashCode());
hashCode = prime * hashCode + ((getIops() == null) ? 0 : getIops().hashCode());
hashCode = prime * hashCode + ((getOptionGroupName() == null) ? 0 : getOptionGroupName().hashCode());
hashCode = prime * hashCode + ((getPercentProgress() == null) ? 0 : getPercentProgress().hashCode());
hashCode = prime * hashCode + ((getSourceRegion() == null) ? 0 : getSourceRegion().hashCode());
hashCode = prime * hashCode + ((getSourceDBSnapshotIdentifier() == null) ? 0 : getSourceDBSnapshotIdentifier().hashCode());
hashCode = prime * hashCode + ((getStorageType() == null) ? 0 : getStorageType().hashCode());
hashCode = prime * hashCode + ((getTdeCredentialArn() == null) ? 0 : getTdeCredentialArn().hashCode());
hashCode = prime * hashCode + ((getEncrypted() == null) ? 0 : getEncrypted().hashCode());
hashCode = prime * hashCode + ((getKmsKeyId() == null) ? 0 : getKmsKeyId().hashCode());
hashCode = prime * hashCode + ((getDBSnapshotArn() == null) ? 0 : getDBSnapshotArn().hashCode());
hashCode = prime * hashCode + ((getTimezone() == null) ? 0 : getTimezone().hashCode());
hashCode = prime * hashCode + ((getIAMDatabaseAuthenticationEnabled() == null) ? 0 : getIAMDatabaseAuthenticationEnabled().hashCode());
hashCode = prime * hashCode + ((getProcessorFeatures() == null) ? 0 : getProcessorFeatures().hashCode());
hashCode = prime * hashCode + ((getDbiResourceId() == null) ? 0 : getDbiResourceId().hashCode());
hashCode = prime * hashCode + ((getTagList() == null) ? 0 : getTagList().hashCode());
hashCode = prime * hashCode + ((getOriginalSnapshotCreateTime() == null) ? 0 : getOriginalSnapshotCreateTime().hashCode());
hashCode = prime * hashCode + ((getSnapshotDatabaseTime() == null) ? 0 : getSnapshotDatabaseTime().hashCode());
hashCode = prime * hashCode + ((getSnapshotTarget() == null) ? 0 : getSnapshotTarget().hashCode());
hashCode = prime * hashCode + ((getStorageThroughput() == null) ? 0 : getStorageThroughput().hashCode());
hashCode = prime * hashCode + ((getDBSystemId() == null) ? 0 : getDBSystemId().hashCode());
hashCode = prime * hashCode + ((getDedicatedLogVolume() == null) ? 0 : getDedicatedLogVolume().hashCode());
hashCode = prime * hashCode + ((getMultiTenant() == null) ? 0 : getMultiTenant().hashCode());
return hashCode;
}
@Override
public DBSnapshot clone() {
try {
return (DBSnapshot) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}