Struct rusoto_glue::GetConnectionsFilter[][src]

pub struct GetConnectionsFilter {
    pub connection_type: Option<String>,
    pub match_criteria: Option<Vec<String>>,
}

Filters the connection definitions returned by the GetConnections API.

Fields

The type of connections to return. Currently, only JDBC is supported; SFTP is not supported.

A criteria string that must match the criteria recorded in the connection definition for that connection definition to be returned.

Trait Implementations

impl Default for GetConnectionsFilter
[src]

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

impl Debug for GetConnectionsFilter
[src]

Formats the value using the given formatter. Read more

impl Clone for GetConnectionsFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetConnectionsFilter
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations