#[non_exhaustive]pub struct NetworkInsightsAccessScopeAnalysis {
pub network_insights_access_scope_analysis_id: Option<String>,
pub network_insights_access_scope_analysis_arn: Option<String>,
pub network_insights_access_scope_id: Option<String>,
pub status: Option<AnalysisStatus>,
pub status_message: Option<String>,
pub warning_message: Option<String>,
pub start_date: Option<DateTime>,
pub end_date: Option<DateTime>,
pub findings_found: Option<FindingsFound>,
pub analyzed_eni_count: Option<i32>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes a Network Access Scope 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_access_scope_analysis_id: Option<String>
The ID of the Network Access Scope analysis.
network_insights_access_scope_analysis_arn: Option<String>
The Amazon Resource Name (ARN) of the Network Access Scope analysis.
network_insights_access_scope_id: Option<String>
The ID of the Network Access Scope.
status: Option<AnalysisStatus>
The status.
status_message: Option<String>
The status message.
warning_message: Option<String>
The warning message.
start_date: Option<DateTime>
The analysis start date.
end_date: Option<DateTime>
The analysis end date.
findings_found: Option<FindingsFound>
Indicates whether there are findings.
analyzed_eni_count: Option<i32>
The number of network interfaces analyzed.
The tags.
Implementations§
source§impl NetworkInsightsAccessScopeAnalysis
impl NetworkInsightsAccessScopeAnalysis
sourcepub fn network_insights_access_scope_analysis_id(&self) -> Option<&str>
pub fn network_insights_access_scope_analysis_id(&self) -> Option<&str>
The ID of the Network Access Scope analysis.
sourcepub fn network_insights_access_scope_analysis_arn(&self) -> Option<&str>
pub fn network_insights_access_scope_analysis_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Network Access Scope analysis.
sourcepub fn network_insights_access_scope_id(&self) -> Option<&str>
pub fn network_insights_access_scope_id(&self) -> Option<&str>
The ID of the Network Access Scope.
sourcepub fn status(&self) -> Option<&AnalysisStatus>
pub fn status(&self) -> Option<&AnalysisStatus>
The status.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
The status message.
sourcepub fn warning_message(&self) -> Option<&str>
pub fn warning_message(&self) -> Option<&str>
The warning message.
sourcepub fn start_date(&self) -> Option<&DateTime>
pub fn start_date(&self) -> Option<&DateTime>
The analysis start date.
sourcepub fn findings_found(&self) -> Option<&FindingsFound>
pub fn findings_found(&self) -> Option<&FindingsFound>
Indicates whether there are findings.
sourcepub fn analyzed_eni_count(&self) -> Option<i32>
pub fn analyzed_eni_count(&self) -> Option<i32>
The number of network interfaces analyzed.
The tags.
source§impl NetworkInsightsAccessScopeAnalysis
impl NetworkInsightsAccessScopeAnalysis
sourcepub fn builder() -> NetworkInsightsAccessScopeAnalysisBuilder
pub fn builder() -> NetworkInsightsAccessScopeAnalysisBuilder
Creates a new builder-style object to manufacture NetworkInsightsAccessScopeAnalysis
.
Trait Implementations§
source§impl Clone for NetworkInsightsAccessScopeAnalysis
impl Clone for NetworkInsightsAccessScopeAnalysis
source§fn clone(&self) -> NetworkInsightsAccessScopeAnalysis
fn clone(&self) -> NetworkInsightsAccessScopeAnalysis
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<NetworkInsightsAccessScopeAnalysis> for NetworkInsightsAccessScopeAnalysis
impl PartialEq<NetworkInsightsAccessScopeAnalysis> for NetworkInsightsAccessScopeAnalysis
source§fn eq(&self, other: &NetworkInsightsAccessScopeAnalysis) -> bool
fn eq(&self, other: &NetworkInsightsAccessScopeAnalysis) -> bool
self
and other
values to be equal, and is used
by ==
.