[][src]Struct rusoto_glue::Connection

pub struct Connection {
    pub connection_properties: Option<HashMap<String, String>>,
    pub connection_type: Option<String>,
    pub creation_time: Option<f64>,
    pub description: Option<String>,
    pub last_updated_by: Option<String>,
    pub last_updated_time: Option<f64>,
    pub match_criteria: Option<Vec<String>>,
    pub name: Option<String>,
    pub physical_connection_requirements: Option<PhysicalConnectionRequirements>,
}

Defines a connection to a data source.

Fields

connection_properties: Option<HashMap<String, String>>

These key-value pairs define parameters for the connection:

connection_type: Option<String>

The type of the connection. Currently, only JDBC is supported; SFTP is not supported.

creation_time: Option<f64>

The time that this connection definition was created.

description: Option<String>

The description of the connection.

last_updated_by: Option<String>

The user, group, or role that last updated this connection definition.

last_updated_time: Option<f64>

The last time that this connection definition was updated.

match_criteria: Option<Vec<String>>

A list of criteria that can be used in selecting this connection.

name: Option<String>

The name of the connection definition.

physical_connection_requirements: Option<PhysicalConnectionRequirements>

A map of physical connection requirements, such as virtual private cloud (VPC) and SecurityGroup, that are needed to make this connection successfully.

Trait Implementations

impl PartialEq<Connection> for Connection[src]

impl Default for Connection[src]

impl Clone for Connection[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Connection[src]

impl<'de> Deserialize<'de> for Connection[src]

Auto Trait Implementations

impl Send for Connection

impl Sync for Connection

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self