Struct rusoto_glue::Connection [] [src]

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 Default for Connection
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for Connection
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Connection
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Connection

impl Sync for Connection