Struct rusoto_glue::ConnectionInput [] [src]

pub struct ConnectionInput {
    pub connection_properties: Option<HashMap<String, String>>,
    pub connection_type: Option<String>,
    pub description: Option<String>,
    pub match_criteria: Option<Vec<String>>,
    pub name: Option<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.

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

[src]

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

impl Debug for ConnectionInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ConnectionInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations