ConnectorTypeSQLPG
class connector_types.connector_type_sqlpg.ConnectorTypeSQLPG(*args, **kwargs)
Base class: SqlLiveOutputMixin
Parameters
| Name | Type | Description |
|---|---|---|
| **kwargs | ||
| *args |
Input Schema
-
schema_version = '10.0'Type:
string -
authenticationType:
anyOfOptions: -
hostThe remote hostname or IP address.
Type:
string -
portType:
anyOfOptions: -
tlsIf to connect using TLS/SSL.
Type:
anyOfOptions: -
modeType:
anyOfOptions: -
databaseThe database to use.
Type:
string -
live_outputStream partial output_value updates while the connection is running.
Type:
booleanDefault:
True -
live_output_fetch_batch_sizeNumber of rows per output_value update during fetch.
Type:
integerDefault:
100 -
live_output_max_bytesStop streaming fetch results to output_value once the serialized result exceeds this size in bytes. Set to 0 for no limit. The final output_value still contains all rows.
Type:
integerDefault:
1048576 -
idempotentWhether re-running this connection from the start is safe (no duplicate side effects). Controls recovery after the connection between Cloudomation and the remote system is lost and later re-established (network glitch, workspace restart, ...): repeatable connections are left running to be reattached or re-run, others are cancelled. Leave unset to let the connector decide based on the operation.