@Stability(value=Stable)
public static interface CfnEndpoint.PostgreSqlSettingsProperty
extends software.amazon.jsii.JsiiSerializable
This information includes the output format of records applied to the endpoint and details of transaction and control table data information. For information about other available settings, see Extra connection attributes when using PostgreSQL as a source for AWS DMS and Extra connection attributes when using PostgreSQL as a target for AWS DMS in the AWS Database Migration Service User Guide .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.dms.*;
PostgreSqlSettingsProperty postgreSqlSettingsProperty = PostgreSqlSettingsProperty.builder()
.afterConnectScript("afterConnectScript")
.captureDdls(false)
.ddlArtifactsSchema("ddlArtifactsSchema")
.executeTimeout(123)
.failTasksOnLobTruncation(false)
.heartbeatEnable(false)
.heartbeatFrequency(123)
.heartbeatSchema("heartbeatSchema")
.maxFileSize(123)
.pluginName("pluginName")
.secretsManagerAccessRoleArn("secretsManagerAccessRoleArn")
.secretsManagerSecretId("secretsManagerSecretId")
.slotName("slotName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEndpoint.PostgreSqlSettingsProperty.Builder
A builder for
CfnEndpoint.PostgreSqlSettingsProperty |
static class |
CfnEndpoint.PostgreSqlSettingsProperty.Jsii$Proxy
An implementation for
CfnEndpoint.PostgreSqlSettingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnEndpoint.PostgreSqlSettingsProperty.Builder |
builder() |
default String |
getAfterConnectScript()
For use with change data capture (CDC) only, this attribute has AWS DMS bypass foreign keys and user triggers to reduce the time it takes to bulk load data.
|
default Object |
getCaptureDdls()
To capture DDL events, AWS DMS creates various artifacts in the PostgreSQL database when the task starts.
|
default String |
getDdlArtifactsSchema()
The schema in which the operational DDL database artifacts are created.
|
default Number |
getExecuteTimeout()
Sets the client statement timeout for the PostgreSQL instance, in seconds.
|
default Object |
getFailTasksOnLobTruncation()
When set to `true` , this value causes a task to fail if the actual size of a LOB column is greater than the specified `LobMaxSize` .
|
default Object |
getHeartbeatEnable()
The write-ahead log (WAL) heartbeat feature mimics a dummy transaction.
|
default Number |
getHeartbeatFrequency()
Sets the WAL heartbeat frequency (in minutes).
|
default String |
getHeartbeatSchema()
Sets the schema in which the heartbeat artifacts are created.
|
default Number |
getMaxFileSize()
Specifies the maximum size (in KB) of any .csv file used to transfer data to PostgreSQL.
|
default String |
getPluginName()
Specifies the plugin to use to create a replication slot.
|
default String |
getSecretsManagerAccessRoleArn()
The full Amazon Resource Name (ARN) of the IAM role that specifies AWS DMS as the trusted entity and grants the required permissions to access the value in `SecretsManagerSecret` .
|
default String |
getSecretsManagerSecretId()
The full ARN, partial ARN, or display name of the `SecretsManagerSecret` that contains the PostgreSQL endpoint connection details.
|
default String |
getSlotName()
Sets the name of a previously created logical replication slot for a change data capture (CDC) load of the PostgreSQL source instance.
|
@Stability(value=Stable) @Nullable default String getAfterConnectScript()
Example: afterConnectScript=SET session_replication_role='replica'
@Stability(value=Stable) @Nullable default Object getCaptureDdls()
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.
@Stability(value=Stable) @Nullable default String getDdlArtifactsSchema()
Example: ddlArtifactsSchema=xyzddlschema;
@Stability(value=Stable) @Nullable default Number getExecuteTimeout()
Example: executeTimeout=100;
@Stability(value=Stable) @Nullable default Object getFailTasksOnLobTruncation()
If task is set to Limited LOB mode and this option is set to true, the task fails instead of truncating the LOB data.
@Stability(value=Stable) @Nullable default Object getHeartbeatEnable()
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_lsn moving and prevents storage full scenarios.
@Stability(value=Stable) @Nullable default Number getHeartbeatFrequency()
@Stability(value=Stable) @Nullable default String getHeartbeatSchema()
@Stability(value=Stable) @Nullable default Number getMaxFileSize()
Example: maxFileSize=512
@Stability(value=Stable) @Nullable default String getPluginName()
@Stability(value=Stable) @Nullable default String getSecretsManagerAccessRoleArn()
The role must allow the iam:PassRole action. SecretsManagerSecret has the value of the AWS 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 this
SecretsManagerSecret, the correspondingSecretsManagerAccessRoleArn, and theSecretsManagerSecretIdthat is required to access it, see Using secrets to access AWS Database Migration Service resources in the AWS Database Migration Service User Guide .
@Stability(value=Stable) @Nullable default String getSecretsManagerSecretId()
@Stability(value=Stable) @Nullable default String getSlotName()
When used with the CdcStartPosition request parameter for the AWS 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 of CdcStartPosition . If the specified slot doesn't exist or the task doesn't have a valid CdcStartPosition setting, DMS raises an error.
For more information about setting the CdcStartPosition request parameter, see Determining a CDC native start point in the AWS Database Migration Service User Guide . For more information about using CdcStartPosition , see CreateReplicationTask , StartReplicationTask , and ModifyReplicationTask .
@Stability(value=Stable) static CfnEndpoint.PostgreSqlSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.