Struct aws_sdk_databasemigration::model::PostgreSqlSettings [−][src]
#[non_exhaustive]pub struct PostgreSqlSettings {Show 18 fields
pub after_connect_script: Option<String>,
pub capture_ddls: Option<bool>,
pub max_file_size: Option<i32>,
pub database_name: Option<String>,
pub ddl_artifacts_schema: Option<String>,
pub execute_timeout: Option<i32>,
pub fail_tasks_on_lob_truncation: Option<bool>,
pub heartbeat_enable: Option<bool>,
pub heartbeat_schema: Option<String>,
pub heartbeat_frequency: Option<i32>,
pub password: Option<String>,
pub port: Option<i32>,
pub server_name: Option<String>,
pub username: Option<String>,
pub slot_name: Option<String>,
pub plugin_name: Option<PluginNameValue>,
pub secrets_manager_access_role_arn: Option<String>,
pub secrets_manager_secret_id: Option<String>,
}
Expand description
Provides information that defines a PostgreSQL endpoint.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.after_connect_script: Option<String>
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'
capture_ddls: Option<bool>
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.
max_file_size: Option<i32>
Specifies the maximum size (in KB) of any .csv file used to transfer data to PostgreSQL.
Example: maxFileSize=512
database_name: Option<String>
Database name for the endpoint.
ddl_artifacts_schema: Option<String>
The schema in which the operational DDL database artifacts are created.
Example: ddlArtifactsSchema=xyzddlschema;
execute_timeout: Option<i32>
Sets the client statement timeout for the PostgreSQL instance, in seconds. The default value is 60 seconds.
Example: executeTimeout=100;
fail_tasks_on_lob_truncation: Option<bool>
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
.
If task is set to Limited LOB mode and this option is set to true, the task fails instead of truncating the LOB data.
heartbeat_enable: Option<bool>
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_lsn
moving
and prevents storage full scenarios.
heartbeat_schema: Option<String>
Sets the schema in which the heartbeat artifacts are created.
heartbeat_frequency: Option<i32>
Sets the WAL heartbeat frequency (in minutes).
password: Option<String>
Endpoint connection password.
port: Option<i32>
Endpoint TCP port. The default is 5432.
server_name: Option<String>
Fully qualified domain name of the endpoint.
username: Option<String>
Endpoint connection user name.
slot_name: Option<String>
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 CdcStartPosition
request 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 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 Database Migration Service User
Guide. For more information about using CdcStartPosition
, see
CreateReplicationTask, StartReplicationTask, and ModifyReplicationTask.
plugin_name: Option<PluginNameValue>
Specifies the plugin to use to create a replication slot.
secrets_manager_access_role_arn: Option<String>
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 the iam:PassRole
action.
SecretsManagerSecret
has 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 for UserName
, Password
,
ServerName
, and Port
. You can't specify both. For more
information on creating this SecretsManagerSecret
and the
SecretsManagerAccessRoleArn
and SecretsManagerSecretId
required to access it, see Using secrets to access Database Migration Service
resources in the Database Migration Service User
Guide.
secrets_manager_secret_id: Option<String>
The full ARN, partial ARN, or friendly name of the SecretsManagerSecret
that contains the PostgreSQL endpoint connection details.
Implementations
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'
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.
Specifies the maximum size (in KB) of any .csv file used to transfer data to PostgreSQL.
Example: maxFileSize=512
Database name for the endpoint.
The schema in which the operational DDL database artifacts are created.
Example: ddlArtifactsSchema=xyzddlschema;
Sets the client statement timeout for the PostgreSQL instance, in seconds. The default value is 60 seconds.
Example: executeTimeout=100;
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
.
If task is set to Limited LOB mode and this option is set to true, the task fails instead of truncating the LOB data.
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_lsn
moving
and prevents storage full scenarios.
Sets the schema in which the heartbeat artifacts are created.
Sets the WAL heartbeat frequency (in minutes).
Fully qualified domain name of the endpoint.
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 CdcStartPosition
request 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 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 Database Migration Service User
Guide. For more information about using CdcStartPosition
, see
CreateReplicationTask, StartReplicationTask, and ModifyReplicationTask.
Specifies the plugin to use to create a replication slot.
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 the iam:PassRole
action.
SecretsManagerSecret
has 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 for UserName
, Password
,
ServerName
, and Port
. You can't specify both. For more
information on creating this SecretsManagerSecret
and the
SecretsManagerAccessRoleArn
and SecretsManagerSecretId
required to access it, see Using secrets to access Database Migration Service
resources in the Database Migration Service User
Guide.
The full ARN, partial ARN, or friendly name of the SecretsManagerSecret
that contains the PostgreSQL endpoint connection details.
Creates a new builder-style object to manufacture PostgreSqlSettings
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for PostgreSqlSettings
impl Send for PostgreSqlSettings
impl Sync for PostgreSqlSettings
impl Unpin for PostgreSqlSettings
impl UnwindSafe for PostgreSqlSettings
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more