[][src]Struct rusoto_glue::ConnectionInput

pub struct ConnectionInput {
    pub connection_properties: HashMap<String, String>,
    pub connection_type: String,
    pub description: Option<String>,
    pub match_criteria: Option<Vec<String>>,
    pub name: String,
    pub physical_connection_requirements: Option<PhysicalConnectionRequirements>,
}

A structure used to specify a connection to create or update.

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.

Description of the connection.

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

The name of the connection.

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

Trait Implementations

impl Clone for ConnectionInput
[src]

Performs copy-assignment from source. Read more

impl Default for ConnectionInput
[src]

impl PartialEq<ConnectionInput> for ConnectionInput
[src]

impl Debug for ConnectionInput
[src]

impl Serialize for ConnectionInput
[src]

Auto Trait Implementations

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> Same for T

Should always be Self

impl<T> Erased for T