Struct rusoto_lightsail::InstancePortState[][src]

pub struct InstancePortState {
    pub from_port: Option<i64>,
    pub protocol: Option<String>,
    pub state: Option<String>,
    pub to_port: Option<i64>,
}

Describes the port state.

Fields

The first port in the range.

The protocol being used. Can be one of the following.

  • tcp - Transmission Control Protocol (TCP) provides reliable, ordered, and error-checked delivery of streamed data between applications running on hosts communicating by an IP network. If you have an application that doesn't require reliable data stream service, use UDP instead.

  • all - All transport layer protocol types. For more general information, see Transport layer on Wikipedia.

  • udp - With User Datagram Protocol (UDP), computer applications can send messages (or datagrams) to other hosts on an Internet Protocol (IP) network. Prior communications are not required to set up transmission channels or data paths. Applications that don't require reliable data stream service can use UDP, which provides a connectionless datagram service that emphasizes reduced latency over reliability. If you do require reliable data stream service, use TCP instead.

Specifies whether the instance port is open or closed.

The last port in the range.

Trait Implementations

impl Default for InstancePortState
[src]

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

impl Debug for InstancePortState
[src]

Formats the value using the given formatter. Read more

impl Clone for InstancePortState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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