[][src]Struct rusoto_iotsecuretunneling::Tunnel

pub struct Tunnel {
    pub created_at: Option<f64>,
    pub description: Option<String>,
    pub destination_config: Option<DestinationConfig>,
    pub destination_connection_state: Option<ConnectionState>,
    pub last_updated_at: Option<f64>,
    pub source_connection_state: Option<ConnectionState>,
    pub status: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub timeout_config: Option<TimeoutConfig>,
    pub tunnel_arn: Option<String>,
    pub tunnel_id: Option<String>,
}

A connection between a source computer and a destination device.

Fields

created_at: Option<f64>

The time when the tunnel was created.

description: Option<String>

A description of the tunnel.

destination_config: Option<DestinationConfig>

The destination configuration that specifies the thing name of the destination device and a service name that the local proxy uses to connect to the destination application.

destination_connection_state: Option<ConnectionState>

The connection state of the destination application.

last_updated_at: Option<f64>

The last time the tunnel was updated.

source_connection_state: Option<ConnectionState>

The connection state of the source application.

status: Option<String>

The status of a tunnel. Valid values are: Open and Closed.

tags: Option<Vec<Tag>>

A list of tag metadata associated with the secure tunnel.

timeout_config: Option<TimeoutConfig>

Timeout configuration for the tunnel.

tunnel_arn: Option<String>

The Amazon Resource Name (ARN) of a tunnel. The tunnel ARN format is arn:aws:tunnel:<region>:<account-id>:tunnel/<tunnel-id>

tunnel_id: Option<String>

A unique alpha-numeric ID that identifies a tunnel.

Trait Implementations

impl Clone for Tunnel[src]

impl Debug for Tunnel[src]

impl Default for Tunnel[src]

impl<'de> Deserialize<'de> for Tunnel[src]

impl PartialEq<Tunnel> for Tunnel[src]

impl StructuralPartialEq for Tunnel[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.