Struct aws_sdk_ec2::model::NetworkInsightsAnalysis
source · [−]#[non_exhaustive]pub struct NetworkInsightsAnalysis {Show 14 fields
pub network_insights_analysis_id: Option<String>,
pub network_insights_analysis_arn: Option<String>,
pub network_insights_path_id: Option<String>,
pub filter_in_arns: Option<Vec<String>>,
pub start_date: Option<DateTime>,
pub status: Option<AnalysisStatus>,
pub status_message: Option<String>,
pub warning_message: Option<String>,
pub network_path_found: Option<bool>,
pub forward_path_components: Option<Vec<PathComponent>>,
pub return_path_components: Option<Vec<PathComponent>>,
pub explanations: Option<Vec<Explanation>>,
pub alternate_path_hints: Option<Vec<AlternatePathHint>>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes a network insights analysis.
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_analysis_id: Option<String>
The ID of the network insights analysis.
network_insights_analysis_arn: Option<String>
The Amazon Resource Name (ARN) of the network insights analysis.
network_insights_path_id: Option<String>
The ID of the path.
filter_in_arns: Option<Vec<String>>
The Amazon Resource Names (ARN) of the Amazon Web Services resources that the path must traverse.
start_date: Option<DateTime>
The time the analysis started.
status: Option<AnalysisStatus>
The status of the network insights analysis.
status_message: Option<String>
The status message, if the status is failed
.
warning_message: Option<String>
The warning message.
network_path_found: Option<bool>
Indicates whether the destination is reachable from the source.
forward_path_components: Option<Vec<PathComponent>>
The components in the path from source to destination.
return_path_components: Option<Vec<PathComponent>>
The components in the path from destination to source.
explanations: Option<Vec<Explanation>>
The explanations. For more information, see Reachability Analyzer explanation codes.
alternate_path_hints: Option<Vec<AlternatePathHint>>
Potential intermediate components.
The tags.
Implementations
sourceimpl NetworkInsightsAnalysis
impl NetworkInsightsAnalysis
sourcepub fn network_insights_analysis_id(&self) -> Option<&str>
pub fn network_insights_analysis_id(&self) -> Option<&str>
The ID of the network insights analysis.
sourcepub fn network_insights_analysis_arn(&self) -> Option<&str>
pub fn network_insights_analysis_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the network insights analysis.
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 filter_in_arns(&self) -> Option<&[String]>
pub fn filter_in_arns(&self) -> Option<&[String]>
The Amazon Resource Names (ARN) of the Amazon Web Services resources that the path must traverse.
sourcepub fn start_date(&self) -> Option<&DateTime>
pub fn start_date(&self) -> Option<&DateTime>
The time the analysis started.
sourcepub fn status(&self) -> Option<&AnalysisStatus>
pub fn status(&self) -> Option<&AnalysisStatus>
The status of the network insights analysis.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
The status message, if the status is failed
.
sourcepub fn warning_message(&self) -> Option<&str>
pub fn warning_message(&self) -> Option<&str>
The warning message.
sourcepub fn network_path_found(&self) -> Option<bool>
pub fn network_path_found(&self) -> Option<bool>
Indicates whether the destination is reachable from the source.
sourcepub fn forward_path_components(&self) -> Option<&[PathComponent]>
pub fn forward_path_components(&self) -> Option<&[PathComponent]>
The components in the path from source to destination.
sourcepub fn return_path_components(&self) -> Option<&[PathComponent]>
pub fn return_path_components(&self) -> Option<&[PathComponent]>
The components in the path from destination to source.
sourcepub fn explanations(&self) -> Option<&[Explanation]>
pub fn explanations(&self) -> Option<&[Explanation]>
The explanations. For more information, see Reachability Analyzer explanation codes.
sourcepub fn alternate_path_hints(&self) -> Option<&[AlternatePathHint]>
pub fn alternate_path_hints(&self) -> Option<&[AlternatePathHint]>
Potential intermediate components.
The tags.
sourceimpl NetworkInsightsAnalysis
impl NetworkInsightsAnalysis
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NetworkInsightsAnalysis
.
Trait Implementations
sourceimpl Clone for NetworkInsightsAnalysis
impl Clone for NetworkInsightsAnalysis
sourcefn clone(&self) -> NetworkInsightsAnalysis
fn clone(&self) -> NetworkInsightsAnalysis
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 NetworkInsightsAnalysis
impl Debug for NetworkInsightsAnalysis
sourceimpl PartialEq<NetworkInsightsAnalysis> for NetworkInsightsAnalysis
impl PartialEq<NetworkInsightsAnalysis> for NetworkInsightsAnalysis
sourcefn eq(&self, other: &NetworkInsightsAnalysis) -> bool
fn eq(&self, other: &NetworkInsightsAnalysis) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &NetworkInsightsAnalysis) -> bool
fn ne(&self, other: &NetworkInsightsAnalysis) -> bool
This method tests for !=
.
impl StructuralPartialEq for NetworkInsightsAnalysis
Auto Trait Implementations
impl RefUnwindSafe for NetworkInsightsAnalysis
impl Send for NetworkInsightsAnalysis
impl Sync for NetworkInsightsAnalysis
impl Unpin for NetworkInsightsAnalysis
impl UnwindSafe for NetworkInsightsAnalysis
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