Class PostgreSQLSettings
- java.lang.Object
-
- software.amazon.awssdk.services.databasemigration.model.PostgreSQLSettings
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<PostgreSQLSettings.Builder,PostgreSQLSettings>
@Generated("software.amazon.awssdk:codegen") public final class PostgreSQLSettings extends Object implements SdkPojo, Serializable, ToCopyableBuilder<PostgreSQLSettings.Builder,PostgreSQLSettings>
Provides information that defines a PostgreSQL endpoint.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfacePostgreSQLSettings.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringafterConnectScript()For use with change data capture (CDC) only, this attribute has DMS bypass foreign keys and user triggers to reduce the time it takes to bulk load data.StringbabelfishDatabaseName()The Babelfish for Aurora PostgreSQL database name for the endpoint.static PostgreSQLSettings.Builderbuilder()BooleancaptureDdls()To capture DDL events, DMS creates various artifacts in the PostgreSQL database when the task starts.DatabaseModedatabaseMode()Specifies the default behavior of the replication's handling of PostgreSQL- compatible endpoints that require some additional configuration, such as Babelfish endpoints.StringdatabaseModeAsString()Specifies the default behavior of the replication's handling of PostgreSQL- compatible endpoints that require some additional configuration, such as Babelfish endpoints.StringdatabaseName()Database name for the endpoint.StringddlArtifactsSchema()The schema in which the operational DDL database artifacts are created.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)IntegerexecuteTimeout()Sets the client statement timeout for the PostgreSQL instance, in seconds.BooleanfailTasksOnLobTruncation()When set totrue, this value causes a task to fail if the actual size of a LOB column is greater than the specifiedLobMaxSize.<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()BooleanheartbeatEnable()The write-ahead log (WAL) heartbeat feature mimics a dummy transaction.IntegerheartbeatFrequency()Sets the WAL heartbeat frequency (in minutes).StringheartbeatSchema()Sets the schema in which the heartbeat artifacts are created.BooleanmapBooleanAsBoolean()When true, lets PostgreSQL migrate the boolean type as boolean.BooleanmapJsonbAsClob()When true, DMS migrates JSONB values as CLOB.LongVarcharMappingTypemapLongVarcharAs()When true, DMS migrates LONG values as VARCHAR.StringmapLongVarcharAsAsString()When true, DMS migrates LONG values as VARCHAR.IntegermaxFileSize()Specifies the maximum size (in KB) of any .csv file used to transfer data to PostgreSQL.Stringpassword()Endpoint connection password.PluginNameValuepluginName()Specifies the plugin to use to create a replication slot.StringpluginNameAsString()Specifies the plugin to use to create a replication slot.Integerport()Endpoint TCP port.List<SdkField<?>>sdkFields()StringsecretsManagerAccessRoleArn()The full Amazon Resource Name (ARN) of the IAM role that specifies DMS as the trusted entity and grants the required permissions to access the value inSecretsManagerSecret.StringsecretsManagerSecretId()The full ARN, partial ARN, or friendly name of theSecretsManagerSecretthat contains the PostgreSQL endpoint connection details.static Class<? extends PostgreSQLSettings.Builder>serializableBuilderClass()StringserverName()The host name of the endpoint database.StringslotName()Sets the name of a previously created logical replication slot for a change data capture (CDC) load of the PostgreSQL source instance.PostgreSQLSettings.BuildertoBuilder()StringtoString()Returns a string representation of this object.BooleantrimSpaceInChar()Use theTrimSpaceInCharsource endpoint setting to trim data on CHAR and NCHAR data types during migration.Stringusername()Endpoint connection user name.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
afterConnectScript
public final String afterConnectScript()
For use with change data capture (CDC) only, this attribute has DMS bypass foreign keys and user triggers to reduce the time it takes to bulk load data.
Example:
afterConnectScript=SET session_replication_role='replica'- Returns:
- For use with change data capture (CDC) only, this attribute has DMS bypass foreign keys and user triggers
to reduce the time it takes to bulk load data.
Example:
afterConnectScript=SET session_replication_role='replica'
-
captureDdls
public final Boolean captureDdls()
To capture DDL events, DMS creates various artifacts in the PostgreSQL database when the task starts. You can later remove these artifacts.
If this value is set to
N, you don't have to create tables or triggers on the source database.- Returns:
- To capture DDL events, DMS creates various artifacts in the PostgreSQL database when the task starts. You
can later remove these artifacts.
If this value is set to
N, you don't have to create tables or triggers on the source database.
-
maxFileSize
public final Integer maxFileSize()
Specifies the maximum size (in KB) of any .csv file used to transfer data to PostgreSQL.
Example:
maxFileSize=512- Returns:
- Specifies the maximum size (in KB) of any .csv file used to transfer data to PostgreSQL.
Example:
maxFileSize=512
-
databaseName
public final String databaseName()
Database name for the endpoint.
- Returns:
- Database name for the endpoint.
-
ddlArtifactsSchema
public final String ddlArtifactsSchema()
The schema in which the operational DDL database artifacts are created.
Example:
ddlArtifactsSchema=xyzddlschema;- Returns:
- The schema in which the operational DDL database artifacts are created.
Example:
ddlArtifactsSchema=xyzddlschema;
-
executeTimeout
public final Integer executeTimeout()
Sets the client statement timeout for the PostgreSQL instance, in seconds. The default value is 60 seconds.
Example:
executeTimeout=100;- Returns:
- Sets the client statement timeout for the PostgreSQL instance, in seconds. The default value is 60
seconds.
Example:
executeTimeout=100;
-
failTasksOnLobTruncation
public final Boolean failTasksOnLobTruncation()
When set to
true, this value causes a task to fail if the actual size of a LOB column is greater than the specifiedLobMaxSize.If task is set to Limited LOB mode and this option is set to true, the task fails instead of truncating the LOB data.
- Returns:
- When set to
true, this value causes a task to fail if the actual size of a LOB column is greater than the specifiedLobMaxSize.If task is set to Limited LOB mode and this option is set to true, the task fails instead of truncating the LOB data.
-
heartbeatEnable
public final Boolean heartbeatEnable()
The write-ahead log (WAL) heartbeat feature mimics a dummy transaction. By doing this, it prevents idle logical replication slots from holding onto old WAL logs, which can result in storage full situations on the source. This heartbeat keeps
restart_lsnmoving and prevents storage full scenarios.- Returns:
- The write-ahead log (WAL) heartbeat feature mimics a dummy transaction. By doing this, it prevents idle
logical replication slots from holding onto old WAL logs, which can result in storage full situations on
the source. This heartbeat keeps
restart_lsnmoving and prevents storage full scenarios.
-
heartbeatSchema
public final String heartbeatSchema()
Sets the schema in which the heartbeat artifacts are created.
- Returns:
- Sets the schema in which the heartbeat artifacts are created.
-
heartbeatFrequency
public final Integer heartbeatFrequency()
Sets the WAL heartbeat frequency (in minutes).
- Returns:
- Sets the WAL heartbeat frequency (in minutes).
-
password
public final String password()
Endpoint connection password.
- Returns:
- Endpoint connection password.
-
port
public final Integer port()
Endpoint TCP port. The default is 5432.
- Returns:
- Endpoint TCP port. The default is 5432.
-
serverName
public final String serverName()
The host name of the endpoint database.
For an Amazon RDS PostgreSQL instance, this is the output of DescribeDBInstances, in the
Endpoint.Addressfield.For an Aurora PostgreSQL instance, this is the output of DescribeDBClusters, in the
Endpointfield.- Returns:
- The host name of the endpoint database.
For an Amazon RDS PostgreSQL instance, this is the output of DescribeDBInstances, in the
Endpoint.Addressfield.For an Aurora PostgreSQL instance, this is the output of DescribeDBClusters, in the
Endpointfield.
-
username
public final String username()
Endpoint connection user name.
- Returns:
- Endpoint connection user name.
-
slotName
public final String slotName()
Sets the name of a previously created logical replication slot for a change data capture (CDC) load of the PostgreSQL source instance.
When used with the
CdcStartPositionrequest parameter for the DMS API , this attribute also makes it possible to use native CDC start points. DMS verifies that the specified logical replication slot exists before starting the CDC load task. It also verifies that the task was created with a valid setting ofCdcStartPosition. If the specified slot doesn't exist or the task doesn't have a validCdcStartPositionsetting, DMS raises an error.For more information about setting the
CdcStartPositionrequest parameter, see Determining a CDC native start point in the Database Migration Service User Guide. For more information about usingCdcStartPosition, see CreateReplicationTask, StartReplicationTask, and ModifyReplicationTask.- Returns:
- Sets the name of a previously created logical replication slot for a change data capture (CDC) load of
the PostgreSQL source instance.
When used with the
CdcStartPositionrequest parameter for the DMS API , this attribute also makes it possible to use native CDC start points. DMS verifies that the specified logical replication slot exists before starting the CDC load task. It also verifies that the task was created with a valid setting ofCdcStartPosition. If the specified slot doesn't exist or the task doesn't have a validCdcStartPositionsetting, DMS raises an error.For more information about setting the
CdcStartPositionrequest parameter, see Determining a CDC native start point in the Database Migration Service User Guide. For more information about usingCdcStartPosition, see CreateReplicationTask, StartReplicationTask, and ModifyReplicationTask.
-
pluginName
public final PluginNameValue pluginName()
Specifies the plugin to use to create a replication slot.
If the service returns an enum value that is not available in the current SDK version,
pluginNamewill returnPluginNameValue.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available frompluginNameAsString().- Returns:
- Specifies the plugin to use to create a replication slot.
- See Also:
PluginNameValue
-
pluginNameAsString
public final String pluginNameAsString()
Specifies the plugin to use to create a replication slot.
If the service returns an enum value that is not available in the current SDK version,
pluginNamewill returnPluginNameValue.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available frompluginNameAsString().- Returns:
- Specifies the plugin to use to create a replication slot.
- See Also:
PluginNameValue
-
secretsManagerAccessRoleArn
public final String secretsManagerAccessRoleArn()
The full Amazon Resource Name (ARN) of the IAM role that specifies DMS as the trusted entity and grants the required permissions to access the value in
SecretsManagerSecret. The role must allow theiam:PassRoleaction.SecretsManagerSecrethas the value of the Amazon Web Services Secrets Manager secret that allows access to the PostgreSQL endpoint.You can specify one of two sets of values for these permissions. You can specify the values for this setting and
SecretsManagerSecretId. Or you can specify clear-text values forUserName,Password,ServerName, andPort. You can't specify both. For more information on creating thisSecretsManagerSecretand theSecretsManagerAccessRoleArnandSecretsManagerSecretIdrequired to access it, see Using secrets to access Database Migration Service resources in the Database Migration Service User Guide.- Returns:
- The full Amazon Resource Name (ARN) of the IAM role that specifies DMS as the trusted entity and grants
the required permissions to access the value in
SecretsManagerSecret. The role must allow theiam:PassRoleaction.SecretsManagerSecrethas the value of the Amazon Web Services Secrets Manager secret that allows access to the PostgreSQL endpoint.You can specify one of two sets of values for these permissions. You can specify the values for this setting and
SecretsManagerSecretId. Or you can specify clear-text values forUserName,Password,ServerName, andPort. You can't specify both. For more information on creating thisSecretsManagerSecretand theSecretsManagerAccessRoleArnandSecretsManagerSecretIdrequired to access it, see Using secrets to access Database Migration Service resources in the Database Migration Service User Guide.
-
secretsManagerSecretId
public final String secretsManagerSecretId()
The full ARN, partial ARN, or friendly name of the
SecretsManagerSecretthat contains the PostgreSQL endpoint connection details.- Returns:
- The full ARN, partial ARN, or friendly name of the
SecretsManagerSecretthat contains the PostgreSQL endpoint connection details.
-
trimSpaceInChar
public final Boolean trimSpaceInChar()
Use the
TrimSpaceInCharsource endpoint setting to trim data on CHAR and NCHAR data types during migration. The default value istrue.- Returns:
- Use the
TrimSpaceInCharsource endpoint setting to trim data on CHAR and NCHAR data types during migration. The default value istrue.
-
mapBooleanAsBoolean
public final Boolean mapBooleanAsBoolean()
When true, lets PostgreSQL migrate the boolean type as boolean. By default, PostgreSQL migrates booleans as
varchar(5). You must set this setting on both the source and target endpoints for it to take effect.- Returns:
- When true, lets PostgreSQL migrate the boolean type as boolean. By default, PostgreSQL migrates booleans
as
varchar(5). You must set this setting on both the source and target endpoints for it to take effect.
-
mapJsonbAsClob
public final Boolean mapJsonbAsClob()
When true, DMS migrates JSONB values as CLOB.
- Returns:
- When true, DMS migrates JSONB values as CLOB.
-
mapLongVarcharAs
public final LongVarcharMappingType mapLongVarcharAs()
When true, DMS migrates LONG values as VARCHAR.
If the service returns an enum value that is not available in the current SDK version,
mapLongVarcharAswill returnLongVarcharMappingType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available frommapLongVarcharAsAsString().- Returns:
- When true, DMS migrates LONG values as VARCHAR.
- See Also:
LongVarcharMappingType
-
mapLongVarcharAsAsString
public final String mapLongVarcharAsAsString()
When true, DMS migrates LONG values as VARCHAR.
If the service returns an enum value that is not available in the current SDK version,
mapLongVarcharAswill returnLongVarcharMappingType.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available frommapLongVarcharAsAsString().- Returns:
- When true, DMS migrates LONG values as VARCHAR.
- See Also:
LongVarcharMappingType
-
databaseMode
public final DatabaseMode databaseMode()
Specifies the default behavior of the replication's handling of PostgreSQL- compatible endpoints that require some additional configuration, such as Babelfish endpoints.
If the service returns an enum value that is not available in the current SDK version,
databaseModewill returnDatabaseMode.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromdatabaseModeAsString().- Returns:
- Specifies the default behavior of the replication's handling of PostgreSQL- compatible endpoints that require some additional configuration, such as Babelfish endpoints.
- See Also:
DatabaseMode
-
databaseModeAsString
public final String databaseModeAsString()
Specifies the default behavior of the replication's handling of PostgreSQL- compatible endpoints that require some additional configuration, such as Babelfish endpoints.
If the service returns an enum value that is not available in the current SDK version,
databaseModewill returnDatabaseMode.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available fromdatabaseModeAsString().- Returns:
- Specifies the default behavior of the replication's handling of PostgreSQL- compatible endpoints that require some additional configuration, such as Babelfish endpoints.
- See Also:
DatabaseMode
-
babelfishDatabaseName
public final String babelfishDatabaseName()
The Babelfish for Aurora PostgreSQL database name for the endpoint.
- Returns:
- The Babelfish for Aurora PostgreSQL database name for the endpoint.
-
toBuilder
public PostgreSQLSettings.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<PostgreSQLSettings.Builder,PostgreSQLSettings>
-
builder
public static PostgreSQLSettings.Builder builder()
-
serializableBuilderClass
public static Class<? extends PostgreSQLSettings.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
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.
-
-