Struct aws_sdk_ec2::types::NetworkInsightsPath
source · #[non_exhaustive]pub struct NetworkInsightsPath { /* private fields */ }
Expand description
Describes a path.
Implementations§
source§impl 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 destination(&self) -> Option<&str>
pub fn destination(&self) -> Option<&str>
The ID of the destination.
sourcepub fn source_arn(&self) -> Option<&str>
pub fn source_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the source.
sourcepub fn destination_arn(&self) -> Option<&str>
pub fn destination_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the destination.
sourcepub fn destination_ip(&self) -> Option<&str>
pub fn destination_ip(&self) -> Option<&str>
The IP address of the destination.
sourcepub fn destination_port(&self) -> Option<i32>
pub fn destination_port(&self) -> Option<i32>
The destination port.
The tags associated with the path.
sourcepub fn filter_at_source(&self) -> Option<&PathFilter>
pub fn filter_at_source(&self) -> Option<&PathFilter>
Scopes the analysis to network paths that match specific filters at the source.
sourcepub fn filter_at_destination(&self) -> Option<&PathFilter>
pub fn filter_at_destination(&self) -> Option<&PathFilter>
Scopes the analysis to network paths that match specific filters at the destination.
source§impl NetworkInsightsPath
impl NetworkInsightsPath
sourcepub fn builder() -> NetworkInsightsPathBuilder
pub fn builder() -> NetworkInsightsPathBuilder
Creates a new builder-style object to manufacture NetworkInsightsPath
.
Trait Implementations§
source§impl Clone for NetworkInsightsPath
impl Clone for NetworkInsightsPath
source§fn clone(&self) -> NetworkInsightsPath
fn clone(&self) -> NetworkInsightsPath
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for NetworkInsightsPath
impl Debug for NetworkInsightsPath
source§impl PartialEq<NetworkInsightsPath> for NetworkInsightsPath
impl PartialEq<NetworkInsightsPath> for NetworkInsightsPath
source§fn 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 ==
.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more