Struct aws_sdk_ec2::model::NetworkInsightsPath
source · [−]#[non_exhaustive]pub struct NetworkInsightsPath {
pub network_insights_path_id: Option<String>,
pub network_insights_path_arn: Option<String>,
pub created_date: Option<DateTime>,
pub source: Option<String>,
pub destination: Option<String>,
pub source_ip: Option<String>,
pub destination_ip: Option<String>,
pub protocol: Option<Protocol>,
pub destination_port: Option<i32>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes a path.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.network_insights_path_id: Option<String>
The ID of the path.
network_insights_path_arn: Option<String>
The Amazon Resource Name (ARN) of the path.
created_date: Option<DateTime>
The time stamp when the path was created.
source: Option<String>
The Amazon Web Services resource that is the source of the path.
destination: Option<String>
The Amazon Web Services resource that is the destination of the path.
source_ip: Option<String>
The IP address of the Amazon Web Services resource that is the source of the path.
destination_ip: Option<String>
The IP address of the Amazon Web Services resource that is the destination of the path.
protocol: Option<Protocol>
The protocol.
destination_port: Option<i32>
The destination port.
The tags associated with the path.
Implementations
sourceimpl NetworkInsightsPath
impl NetworkInsightsPath
sourcepub fn network_insights_path_id(&self) -> Option<&str>
pub fn network_insights_path_id(&self) -> Option<&str>
The ID of the path.
sourcepub fn network_insights_path_arn(&self) -> Option<&str>
pub fn network_insights_path_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the path.
sourcepub fn created_date(&self) -> Option<&DateTime>
pub fn created_date(&self) -> Option<&DateTime>
The time stamp when the path was created.
sourcepub fn source(&self) -> Option<&str>
pub fn source(&self) -> Option<&str>
The Amazon Web Services resource that is the source of the path.
sourcepub fn destination(&self) -> Option<&str>
pub fn destination(&self) -> Option<&str>
The Amazon Web Services resource that is the destination of the path.
sourcepub fn source_ip(&self) -> Option<&str>
pub fn source_ip(&self) -> Option<&str>
The IP address of the Amazon Web Services resource that is the source of the path.
sourcepub fn destination_ip(&self) -> Option<&str>
pub fn destination_ip(&self) -> Option<&str>
The IP address of the Amazon Web Services resource that is the destination of the path.
sourcepub fn destination_port(&self) -> Option<i32>
pub fn destination_port(&self) -> Option<i32>
The destination port.
The tags associated with the path.
sourceimpl NetworkInsightsPath
impl NetworkInsightsPath
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NetworkInsightsPath
.
Trait Implementations
sourceimpl Clone for NetworkInsightsPath
impl Clone for NetworkInsightsPath
sourcefn clone(&self) -> NetworkInsightsPath
fn clone(&self) -> NetworkInsightsPath
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for NetworkInsightsPath
impl Debug for NetworkInsightsPath
sourceimpl PartialEq<NetworkInsightsPath> for NetworkInsightsPath
impl PartialEq<NetworkInsightsPath> for NetworkInsightsPath
sourcefn eq(&self, other: &NetworkInsightsPath) -> bool
fn eq(&self, other: &NetworkInsightsPath) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &NetworkInsightsPath) -> bool
fn ne(&self, other: &NetworkInsightsPath) -> bool
This method tests for !=
.
impl StructuralPartialEq for NetworkInsightsPath
Auto Trait Implementations
impl RefUnwindSafe for NetworkInsightsPath
impl Send for NetworkInsightsPath
impl Sync for NetworkInsightsPath
impl Unpin for NetworkInsightsPath
impl UnwindSafe for NetworkInsightsPath
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more