You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DatabaseMigrationService::Types::IBMDb2Settings

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing IBMDb2Settings as input to an Aws::Client method, you can use a vanilla Hash:

{
  database_name: "String",
  password: "SecretString",
  port: 1,
  server_name: "String",
  set_data_capture_changes: false,
  current_lsn: "String",
  max_k_bytes_per_read: 1,
  username: "String",
}

Provides information that defines an IBM Db2 LUW endpoint.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#current_lsnString

For ongoing replication (CDC), use CurrentLSN to specify a log sequence number (LSN) where you want the replication to start.

Returns:

  • (String)

    For ongoing replication (CDC), use CurrentLSN to specify a log sequence number (LSN) where you want the replication to start.

#database_nameString

Database name for the endpoint.

Returns:

  • (String)

    Database name for the endpoint.

#max_k_bytes_per_readInteger

Maximum number of bytes per read, as a NUMBER value. The default is 64 KB.

Returns:

  • (Integer)

    Maximum number of bytes per read, as a NUMBER value.

#passwordString

Endpoint connection password.

Returns:

  • (String)

    Endpoint connection password.

#portInteger

Endpoint TCP port.

Returns:

  • (Integer)

    Endpoint TCP port.

#server_nameString

Fully qualified domain name of the endpoint.

Returns:

  • (String)

    Fully qualified domain name of the endpoint.

#set_data_capture_changesBoolean

Enables ongoing replication (CDC) as a BOOLEAN value. The default is true.

Returns:

  • (Boolean)

    Enables ongoing replication (CDC) as a BOOLEAN value.

#usernameString

Endpoint connection user name.

Returns:

  • (String)

    Endpoint connection user name.