Struct rusoto_glue::PhysicalConnectionRequirements[][src]

pub struct PhysicalConnectionRequirements {
    pub availability_zone: Option<String>,
    pub security_group_id_list: Option<Vec<String>>,
    pub subnet_id: Option<String>,
}

Specifies the physical requirements for a connection.

Fields

The connection's availability zone. This field is deprecated and has no effect.

The security group ID list used by the connection.

The subnet ID used by the connection.

Trait Implementations

impl Default for PhysicalConnectionRequirements
[src]

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

impl Debug for PhysicalConnectionRequirements
[src]

Formats the value using the given formatter. Read more

impl Clone for PhysicalConnectionRequirements
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PhysicalConnectionRequirements
[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