Struct aws_sdk_ec2::types::NetworkInsightsAnalysis
source · #[non_exhaustive]pub struct NetworkInsightsAnalysis {Show 16 fields
pub network_insights_analysis_id: Option<String>,
pub network_insights_analysis_arn: Option<String>,
pub network_insights_path_id: Option<String>,
pub additional_accounts: Option<Vec<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 suggested_accounts: Option<Vec<String>>,
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.
additional_accounts: Option<Vec<String>>
The member accounts that contain resources that the path can traverse.
filter_in_arns: Option<Vec<String>>
The Amazon Resource Names (ARN) of the 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.
suggested_accounts: Option<Vec<String>>
Potential intermediate accounts.
The tags.
Implementations§
source§impl 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 additional_accounts(&self) -> Option<&[String]>
pub fn additional_accounts(&self) -> Option<&[String]>
The member accounts that contain resources that the path can traverse.
sourcepub fn filter_in_arns(&self) -> Option<&[String]>
pub fn filter_in_arns(&self) -> Option<&[String]>
The Amazon Resource Names (ARN) of the 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.
sourcepub fn suggested_accounts(&self) -> Option<&[String]>
pub fn suggested_accounts(&self) -> Option<&[String]>
Potential intermediate accounts.
The tags.
source§impl NetworkInsightsAnalysis
impl NetworkInsightsAnalysis
sourcepub fn builder() -> NetworkInsightsAnalysisBuilder
pub fn builder() -> NetworkInsightsAnalysisBuilder
Creates a new builder-style object to manufacture NetworkInsightsAnalysis
.
Trait Implementations§
source§impl Clone for NetworkInsightsAnalysis
impl Clone for NetworkInsightsAnalysis
source§fn clone(&self) -> NetworkInsightsAnalysis
fn clone(&self) -> NetworkInsightsAnalysis
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NetworkInsightsAnalysis
impl Debug for NetworkInsightsAnalysis
source§impl PartialEq<NetworkInsightsAnalysis> for NetworkInsightsAnalysis
impl PartialEq<NetworkInsightsAnalysis> for NetworkInsightsAnalysis
source§fn eq(&self, other: &NetworkInsightsAnalysis) -> bool
fn eq(&self, other: &NetworkInsightsAnalysis) -> bool
self
and other
values to be equal, and is used
by ==
.