[][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

A list of key-value pairs used as parameters for this connection.

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

The time this connection definition was created.

Description of the connection.

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

The last time this connection definition was updated.

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

The name of the connection definition.

A map of physical connection requirements, such as VPC and SecurityGroup, needed for making this connection successfully.

Trait Implementations

impl Clone for Connection
[src]

Performs copy-assignment from source. Read more

impl Default for Connection
[src]

impl PartialEq<Connection> for Connection
[src]

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]

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

🔬 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, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T