Interface CfnEndpoint.PostgreSqlSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEndpoint.PostgreSqlSettingsProperty.Jsii$Proxy
Enclosing class:
CfnEndpoint

@Stability(Stable) public static interface CfnEndpoint.PostgreSqlSettingsProperty extends software.amazon.jsii.JsiiSerializable
Provides information that defines a PostgreSQL endpoint.

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")
         .babelfishDatabaseName("babelfishDatabaseName")
         .captureDdls(false)
         .databaseMode("databaseMode")
         .ddlArtifactsSchema("ddlArtifactsSchema")
         .executeTimeout(123)
         .failTasksOnLobTruncation(false)
         .heartbeatEnable(false)
         .heartbeatFrequency(123)
         .heartbeatSchema("heartbeatSchema")
         .mapBooleanAsBoolean(false)
         .maxFileSize(123)
         .pluginName("pluginName")
         .secretsManagerAccessRoleArn("secretsManagerAccessRoleArn")
         .secretsManagerSecretId("secretsManagerSecretId")
         .slotName("slotName")
         .build();
 

See Also: