@Generated(value="software.amazon.awssdk:codegen") public final class TimestreamSettings extends Object implements SdkPojo, Serializable, ToCopyableBuilder<TimestreamSettings.Builder,TimestreamSettings>
Provides information that defines an Amazon Timestream endpoint.
| Modifier and Type | Class and Description |
|---|---|
static interface |
TimestreamSettings.Builder |
| Modifier and Type | Method and Description |
|---|---|
static TimestreamSettings.Builder |
builder() |
Boolean |
cdcInsertsAndUpdates()
Set this attribute to
true to specify that DMS only applies inserts and updates, and not deletes. |
String |
databaseName()
Database name for the endpoint.
|
Boolean |
enableMagneticStoreWrites()
Set this attribute to
true to enable memory store writes. |
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
Integer |
magneticDuration()
Set this attribute to specify the default magnetic duration applied to the Amazon Timestream tables in days.
|
Integer |
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.
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends TimestreamSettings.Builder> |
serializableBuilderClass() |
TimestreamSettings.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic final String databaseName()
Database name for the endpoint.
public final Integer 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 final Integer 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 final Boolean 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.
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 final Boolean 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.
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 TimestreamSettings.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<TimestreamSettings.Builder,TimestreamSettings>public static TimestreamSettings.Builder builder()
public static Class<? extends TimestreamSettings.Builder> serializableBuilderClass()
public final boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic final String toString()
Copyright © 2023. All rights reserved.