Struct google_datastream1::api::PostgresqlSourceConfig
source · pub struct PostgresqlSourceConfig {
pub exclude_objects: Option<PostgresqlRdbms>,
pub include_objects: Option<PostgresqlRdbms>,
pub publication: Option<String>,
pub replication_slot: Option<String>,
}Expand description
PostgreSQL data source configuration
This type is not used in any activity, and only used as part of another schema.
Fields§
§exclude_objects: Option<PostgresqlRdbms>PostgreSQL objects to exclude from the stream.
include_objects: Option<PostgresqlRdbms>PostgreSQL objects to include in the stream.
publication: Option<String>Required. The name of the publication that includes the set of all tables that are defined in the stream’s include_objects.
replication_slot: Option<String>Required. Immutable. The name of the logical replication slot that’s configured with the pgoutput plugin.
Trait Implementations§
source§impl Clone for PostgresqlSourceConfig
impl Clone for PostgresqlSourceConfig
source§fn clone(&self) -> PostgresqlSourceConfig
fn clone(&self) -> PostgresqlSourceConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for PostgresqlSourceConfig
impl Debug for PostgresqlSourceConfig
source§impl Default for PostgresqlSourceConfig
impl Default for PostgresqlSourceConfig
source§fn default() -> PostgresqlSourceConfig
fn default() -> PostgresqlSourceConfig
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PostgresqlSourceConfig
impl<'de> Deserialize<'de> for PostgresqlSourceConfig
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more