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

com.amazonaws.services.databasemigrationservice.model.TimestreamSettings Maven / Gradle / Ivy

/*
 * 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.databasemigrationservice.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Provides information that defines an Amazon Timestream endpoint. *

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

* Database name for the endpoint. *

*/ private String databaseName; /** *

* Set this attribute to specify the length of time to store all of the tables in memory that are migrated into * Amazon Timestream from the source database. Time is measured in units of hours. When Timestream data comes in, it * first resides in memory for the specified duration, which allows quick access to it. *

*/ private Integer memoryDuration; /** *

* Set this attribute to specify the default magnetic duration applied to the Amazon Timestream tables in days. This * is the number of days that records remain in magnetic store before being discarded. For more information, see Storage in the Amazon Timestream Developer Guide. *

*/ private Integer magneticDuration; /** *

* Set this attribute to true to specify that DMS only applies inserts and updates, and not deletes. * Amazon Timestream does not allow deleting records, so if this value is false, DMS nulls out the * corresponding record in the Timestream database rather than deleting it. *

*/ private Boolean cdcInsertsAndUpdates; /** *

* Set this attribute to true to enable memory store writes. When this value is false, DMS * does not write records that are older in days than the value specified in MagneticDuration, because * Amazon Timestream does not allow memory writes by default. For more information, see Storage in the Amazon Timestream Developer Guide. *

*/ private Boolean enableMagneticStoreWrites; /** *

* Database name for the endpoint. *

* * @param databaseName * Database name for the endpoint. */ public void setDatabaseName(String databaseName) { this.databaseName = databaseName; } /** *

* Database name for the endpoint. *

* * @return Database name for the endpoint. */ public String getDatabaseName() { return this.databaseName; } /** *

* Database name for the endpoint. *

* * @param databaseName * Database name for the endpoint. * @return Returns a reference to this object so that method calls can be chained together. */ public TimestreamSettings withDatabaseName(String databaseName) { setDatabaseName(databaseName); return this; } /** *

* Set this attribute to specify the length of time to store all of the tables in memory that are migrated into * Amazon Timestream from the source database. Time is measured in units of hours. When Timestream data comes in, it * first resides in memory for the specified duration, which allows quick access to it. *

* * @param memoryDuration * Set this attribute to specify the length of time to store all of the tables in memory that are migrated * into Amazon Timestream from the source database. Time is measured in units of hours. When Timestream data * comes in, it first resides in memory for the specified duration, which allows quick access to it. */ public void setMemoryDuration(Integer memoryDuration) { this.memoryDuration = memoryDuration; } /** *

* Set this attribute to specify the length of time to store all of the tables in memory that are migrated into * Amazon Timestream from the source database. Time is measured in units of hours. When Timestream data comes in, it * first resides in memory for the specified duration, which allows quick access to it. *

* * @return Set this attribute to specify the length of time to store all of the tables in memory that are migrated * into Amazon Timestream from the source database. Time is measured in units of hours. When Timestream data * comes in, it first resides in memory for the specified duration, which allows quick access to it. */ public Integer getMemoryDuration() { return this.memoryDuration; } /** *

* Set this attribute to specify the length of time to store all of the tables in memory that are migrated into * Amazon Timestream from the source database. Time is measured in units of hours. When Timestream data comes in, it * first resides in memory for the specified duration, which allows quick access to it. *

* * @param memoryDuration * Set this attribute to specify the length of time to store all of the tables in memory that are migrated * into Amazon Timestream from the source database. Time is measured in units of hours. When Timestream data * comes in, it first resides in memory for the specified duration, which allows quick access to it. * @return Returns a reference to this object so that method calls can be chained together. */ public TimestreamSettings withMemoryDuration(Integer memoryDuration) { setMemoryDuration(memoryDuration); return this; } /** *

* Set this attribute to specify the default magnetic duration applied to the Amazon Timestream tables in days. This * is the number of days that records remain in magnetic store before being discarded. For more information, see Storage in the Amazon Timestream Developer Guide. *

* * @param magneticDuration * Set this attribute to specify the default magnetic duration applied to the Amazon Timestream tables in * days. This is the number of days that records remain in magnetic store before being discarded. For more * information, see Storage in the Amazon Timestream Developer * Guide. */ public void setMagneticDuration(Integer magneticDuration) { this.magneticDuration = magneticDuration; } /** *

* Set this attribute to specify the default magnetic duration applied to the Amazon Timestream tables in days. This * is the number of days that records remain in magnetic store before being discarded. For more information, see Storage in the Amazon Timestream Developer Guide. *

* * @return Set this attribute to specify the default magnetic duration applied to the Amazon Timestream tables in * days. This is the number of days that records remain in magnetic store before being discarded. For more * information, see Storage in the Amazon Timestream Developer * Guide. */ public Integer getMagneticDuration() { return this.magneticDuration; } /** *

* Set this attribute to specify the default magnetic duration applied to the Amazon Timestream tables in days. This * is the number of days that records remain in magnetic store before being discarded. For more information, see Storage in the Amazon Timestream Developer Guide. *

* * @param magneticDuration * Set this attribute to specify the default magnetic duration applied to the Amazon Timestream tables in * days. This is the number of days that records remain in magnetic store before being discarded. For more * information, see Storage in the Amazon Timestream Developer * Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public TimestreamSettings withMagneticDuration(Integer magneticDuration) { setMagneticDuration(magneticDuration); return this; } /** *

* Set this attribute to true to specify that DMS only applies inserts and updates, and not deletes. * Amazon Timestream does not allow deleting records, so if this value is false, DMS nulls out the * corresponding record in the Timestream database rather than deleting it. *

* * @param cdcInsertsAndUpdates * Set this attribute to true to specify that DMS only applies inserts and updates, and not * deletes. Amazon Timestream does not allow deleting records, so if this value is false, DMS * nulls out the corresponding record in the Timestream database rather than deleting it. */ public void setCdcInsertsAndUpdates(Boolean cdcInsertsAndUpdates) { this.cdcInsertsAndUpdates = cdcInsertsAndUpdates; } /** *

* Set this attribute to true to specify that DMS only applies inserts and updates, and not deletes. * Amazon Timestream does not allow deleting records, so if this value is false, DMS nulls out the * corresponding record in the Timestream database rather than deleting it. *

* * @return Set this attribute to true to specify that DMS only applies inserts and updates, and not * deletes. Amazon Timestream does not allow deleting records, so if this value is false, DMS * nulls out the corresponding record in the Timestream database rather than deleting it. */ public Boolean getCdcInsertsAndUpdates() { return this.cdcInsertsAndUpdates; } /** *

* Set this attribute to true to specify that DMS only applies inserts and updates, and not deletes. * Amazon Timestream does not allow deleting records, so if this value is false, DMS nulls out the * corresponding record in the Timestream database rather than deleting it. *

* * @param cdcInsertsAndUpdates * Set this attribute to true to specify that DMS only applies inserts and updates, and not * deletes. Amazon Timestream does not allow deleting records, so if this value is false, DMS * nulls out the corresponding record in the Timestream database rather than deleting it. * @return Returns a reference to this object so that method calls can be chained together. */ public TimestreamSettings withCdcInsertsAndUpdates(Boolean cdcInsertsAndUpdates) { setCdcInsertsAndUpdates(cdcInsertsAndUpdates); return this; } /** *

* Set this attribute to true to specify that DMS only applies inserts and updates, and not deletes. * Amazon Timestream does not allow deleting records, so if this value is false, DMS nulls out the * corresponding record in the Timestream database rather than deleting it. *

* * @return Set this attribute to true to specify that DMS only applies inserts and updates, and not * deletes. Amazon Timestream does not allow deleting records, so if this value is false, DMS * nulls out the corresponding record in the Timestream database rather than deleting it. */ public Boolean isCdcInsertsAndUpdates() { return this.cdcInsertsAndUpdates; } /** *

* Set this attribute to true to enable memory store writes. When this value is false, DMS * does not write records that are older in days than the value specified in MagneticDuration, because * Amazon Timestream does not allow memory writes by default. For more information, see Storage in the Amazon Timestream Developer Guide. *

* * @param enableMagneticStoreWrites * Set this attribute to true to enable memory store writes. When this value is * false, DMS does not write records that are older in days than the value specified in * MagneticDuration, because Amazon Timestream does not allow memory writes by default. For more * information, see Storage in the Amazon Timestream Developer * Guide. */ public void setEnableMagneticStoreWrites(Boolean enableMagneticStoreWrites) { this.enableMagneticStoreWrites = enableMagneticStoreWrites; } /** *

* Set this attribute to true to enable memory store writes. When this value is false, DMS * does not write records that are older in days than the value specified in MagneticDuration, because * Amazon Timestream does not allow memory writes by default. For more information, see Storage in the Amazon Timestream Developer Guide. *

* * @return Set this attribute to true to enable memory store writes. When this value is * false, DMS does not write records that are older in days than the value specified in * MagneticDuration, because Amazon Timestream does not allow memory writes by default. For * more information, see Storage in the Amazon Timestream Developer * Guide. */ public Boolean getEnableMagneticStoreWrites() { return this.enableMagneticStoreWrites; } /** *

* Set this attribute to true to enable memory store writes. When this value is false, DMS * does not write records that are older in days than the value specified in MagneticDuration, because * Amazon Timestream does not allow memory writes by default. For more information, see Storage in the Amazon Timestream Developer Guide. *

* * @param enableMagneticStoreWrites * Set this attribute to true to enable memory store writes. When this value is * false, DMS does not write records that are older in days than the value specified in * MagneticDuration, because Amazon Timestream does not allow memory writes by default. For more * information, see Storage in the Amazon Timestream Developer * Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public TimestreamSettings withEnableMagneticStoreWrites(Boolean enableMagneticStoreWrites) { setEnableMagneticStoreWrites(enableMagneticStoreWrites); return this; } /** *

* Set this attribute to true to enable memory store writes. When this value is false, DMS * does not write records that are older in days than the value specified in MagneticDuration, because * Amazon Timestream does not allow memory writes by default. For more information, see Storage in the Amazon Timestream Developer Guide. *

* * @return Set this attribute to true to enable memory store writes. When this value is * false, DMS does not write records that are older in days than the value specified in * MagneticDuration, because Amazon Timestream does not allow memory writes by default. For * more information, see Storage in the Amazon Timestream Developer * Guide. */ public Boolean isEnableMagneticStoreWrites() { return this.enableMagneticStoreWrites; } /** * 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 (getDatabaseName() != null) sb.append("DatabaseName: ").append(getDatabaseName()).append(","); if (getMemoryDuration() != null) sb.append("MemoryDuration: ").append(getMemoryDuration()).append(","); if (getMagneticDuration() != null) sb.append("MagneticDuration: ").append(getMagneticDuration()).append(","); if (getCdcInsertsAndUpdates() != null) sb.append("CdcInsertsAndUpdates: ").append(getCdcInsertsAndUpdates()).append(","); if (getEnableMagneticStoreWrites() != null) sb.append("EnableMagneticStoreWrites: ").append(getEnableMagneticStoreWrites()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TimestreamSettings == false) return false; TimestreamSettings other = (TimestreamSettings) obj; if (other.getDatabaseName() == null ^ this.getDatabaseName() == null) return false; if (other.getDatabaseName() != null && other.getDatabaseName().equals(this.getDatabaseName()) == false) return false; if (other.getMemoryDuration() == null ^ this.getMemoryDuration() == null) return false; if (other.getMemoryDuration() != null && other.getMemoryDuration().equals(this.getMemoryDuration()) == false) return false; if (other.getMagneticDuration() == null ^ this.getMagneticDuration() == null) return false; if (other.getMagneticDuration() != null && other.getMagneticDuration().equals(this.getMagneticDuration()) == false) return false; if (other.getCdcInsertsAndUpdates() == null ^ this.getCdcInsertsAndUpdates() == null) return false; if (other.getCdcInsertsAndUpdates() != null && other.getCdcInsertsAndUpdates().equals(this.getCdcInsertsAndUpdates()) == false) return false; if (other.getEnableMagneticStoreWrites() == null ^ this.getEnableMagneticStoreWrites() == null) return false; if (other.getEnableMagneticStoreWrites() != null && other.getEnableMagneticStoreWrites().equals(this.getEnableMagneticStoreWrites()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDatabaseName() == null) ? 0 : getDatabaseName().hashCode()); hashCode = prime * hashCode + ((getMemoryDuration() == null) ? 0 : getMemoryDuration().hashCode()); hashCode = prime * hashCode + ((getMagneticDuration() == null) ? 0 : getMagneticDuration().hashCode()); hashCode = prime * hashCode + ((getCdcInsertsAndUpdates() == null) ? 0 : getCdcInsertsAndUpdates().hashCode()); hashCode = prime * hashCode + ((getEnableMagneticStoreWrites() == null) ? 0 : getEnableMagneticStoreWrites().hashCode()); return hashCode; } @Override public TimestreamSettings clone() { try { return (TimestreamSettings) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.databasemigrationservice.model.transform.TimestreamSettingsMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy