#[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
sourceimpl 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.
sourceimpl NetworkInsightsAccessScopeAnalysis
impl NetworkInsightsAccessScopeAnalysis
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NetworkInsightsAccessScopeAnalysis
.
Trait Implementations
sourceimpl Clone for NetworkInsightsAccessScopeAnalysis
impl Clone for NetworkInsightsAccessScopeAnalysis
sourcefn clone(&self) -> NetworkInsightsAccessScopeAnalysis
fn clone(&self) -> NetworkInsightsAccessScopeAnalysis
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 PartialEq<NetworkInsightsAccessScopeAnalysis> for NetworkInsightsAccessScopeAnalysis
impl PartialEq<NetworkInsightsAccessScopeAnalysis> for NetworkInsightsAccessScopeAnalysis
sourcefn eq(&self, other: &NetworkInsightsAccessScopeAnalysis) -> bool
fn eq(&self, other: &NetworkInsightsAccessScopeAnalysis) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &NetworkInsightsAccessScopeAnalysis) -> bool
fn ne(&self, other: &NetworkInsightsAccessScopeAnalysis) -> bool
This method tests for !=
.
impl StructuralPartialEq for NetworkInsightsAccessScopeAnalysis
Auto Trait Implementations
impl RefUnwindSafe for NetworkInsightsAccessScopeAnalysis
impl Send for NetworkInsightsAccessScopeAnalysis
impl Sync for NetworkInsightsAccessScopeAnalysis
impl Unpin for NetworkInsightsAccessScopeAnalysis
impl UnwindSafe for NetworkInsightsAccessScopeAnalysis
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