pub struct PostgresDestinationConfig {
pub max_concurrent_connections: Option<i32>,
pub transaction_timeout: Option<Duration>,
}Expand description
Configuration for Postgres as a destination in a migration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§max_concurrent_connections: Option<i32>Optional. Maximum number of connections Database Migration Service will open to the destination for data migration.
transaction_timeout: Option<Duration>Optional. Timeout for data migration transactions.
Trait Implementations§
Source§impl Clone for PostgresDestinationConfig
impl Clone for PostgresDestinationConfig
Source§fn clone(&self) -> PostgresDestinationConfig
fn clone(&self) -> PostgresDestinationConfig
Returns a duplicate 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 PostgresDestinationConfig
impl Debug for PostgresDestinationConfig
Source§impl Default for PostgresDestinationConfig
impl Default for PostgresDestinationConfig
Source§fn default() -> PostgresDestinationConfig
fn default() -> PostgresDestinationConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PostgresDestinationConfig
impl<'de> Deserialize<'de> for PostgresDestinationConfig
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
impl Part for PostgresDestinationConfig
Auto Trait Implementations§
impl Freeze for PostgresDestinationConfig
impl RefUnwindSafe for PostgresDestinationConfig
impl Send for PostgresDestinationConfig
impl Sync for PostgresDestinationConfig
impl Unpin for PostgresDestinationConfig
impl UnwindSafe for PostgresDestinationConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more