Struct aws_sdk_networkmanager::model::RouteAnalysis
source · #[non_exhaustive]pub struct RouteAnalysis { /* private fields */ }
Expand description
Describes a route analysis.
Implementations§
source§impl RouteAnalysis
impl RouteAnalysis
sourcepub fn global_network_id(&self) -> Option<&str>
pub fn global_network_id(&self) -> Option<&str>
The ID of the global network.
sourcepub fn owner_account_id(&self) -> Option<&str>
pub fn owner_account_id(&self) -> Option<&str>
The ID of the AWS account that created the route analysis.
sourcepub fn route_analysis_id(&self) -> Option<&str>
pub fn route_analysis_id(&self) -> Option<&str>
The ID of the route analysis.
sourcepub fn start_timestamp(&self) -> Option<&DateTime>
pub fn start_timestamp(&self) -> Option<&DateTime>
The time that the analysis started.
sourcepub fn status(&self) -> Option<&RouteAnalysisStatus>
pub fn status(&self) -> Option<&RouteAnalysisStatus>
The status of the route analysis.
sourcepub fn source(&self) -> Option<&RouteAnalysisEndpointOptions>
pub fn source(&self) -> Option<&RouteAnalysisEndpointOptions>
The source.
sourcepub fn destination(&self) -> Option<&RouteAnalysisEndpointOptions>
pub fn destination(&self) -> Option<&RouteAnalysisEndpointOptions>
The destination.
sourcepub fn include_return_path(&self) -> bool
pub fn include_return_path(&self) -> bool
Indicates whether to analyze the return path. The return path is not analyzed if the forward path analysis does not succeed.
sourcepub fn use_middleboxes(&self) -> bool
pub fn use_middleboxes(&self) -> bool
Indicates whether to include the location of middlebox appliances in the route analysis.
sourcepub fn forward_path(&self) -> Option<&RouteAnalysisPath>
pub fn forward_path(&self) -> Option<&RouteAnalysisPath>
The forward path.
sourcepub fn return_path(&self) -> Option<&RouteAnalysisPath>
pub fn return_path(&self) -> Option<&RouteAnalysisPath>
The return path.
source§impl RouteAnalysis
impl RouteAnalysis
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RouteAnalysis
.
Trait Implementations§
source§impl Clone for RouteAnalysis
impl Clone for RouteAnalysis
source§fn clone(&self) -> RouteAnalysis
fn clone(&self) -> RouteAnalysis
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 RouteAnalysis
impl Debug for RouteAnalysis
source§impl PartialEq<RouteAnalysis> for RouteAnalysis
impl PartialEq<RouteAnalysis> for RouteAnalysis
source§fn eq(&self, other: &RouteAnalysis) -> bool
fn eq(&self, other: &RouteAnalysis) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.