#[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
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 for NetworkInsightsAccessScopeAnalysis
impl PartialEq 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 ==
.impl StructuralPartialEq for NetworkInsightsAccessScopeAnalysis
Auto Trait Implementations§
impl Freeze for NetworkInsightsAccessScopeAnalysis
impl RefUnwindSafe for NetworkInsightsAccessScopeAnalysis
impl Send for NetworkInsightsAccessScopeAnalysis
impl Sync for NetworkInsightsAccessScopeAnalysis
impl Unpin for NetworkInsightsAccessScopeAnalysis
impl UnwindSafe for NetworkInsightsAccessScopeAnalysis
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more