[−][src]Struct rusoto_lightsail::InstancePortInfo
Describes information about the instance ports.
Fields
access_direction: Option<String>
The access direction (inbound
or outbound
).
access_from: Option<String>
The location from which access is allowed (e.g., Anywhere (0.0.0.0/0)
).
access_type: Option<String>
The type of access (Public
or Private
).
common_name: Option<String>
The common name.
from_port: Option<i64>
The first port in the range.
protocol: Option<String>
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.
to_port: Option<i64>
The last port in the range.
Trait Implementations
impl PartialEq<InstancePortInfo> for InstancePortInfo
[src]
fn eq(&self, other: &InstancePortInfo) -> bool
[src]
fn ne(&self, other: &InstancePortInfo) -> bool
[src]
impl Default for InstancePortInfo
[src]
fn default() -> InstancePortInfo
[src]
impl Clone for InstancePortInfo
[src]
fn clone(&self) -> InstancePortInfo
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for InstancePortInfo
[src]
impl<'de> Deserialize<'de> for InstancePortInfo
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for InstancePortInfo
impl Sync for InstancePortInfo
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self