#[non_exhaustive]pub struct AntipatternReportResult {
pub analyzer_name: Option<AnalyzerNameUnion>,
pub anti_pattern_report_s3_object: Option<S3Object>,
pub antipattern_report_status: Option<AntipatternReportStatus>,
pub antipattern_report_status_message: Option<String>,
}Expand description
The anti-pattern report result.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.analyzer_name: Option<AnalyzerNameUnion>The analyzer name.
anti_pattern_report_s3_object: Option<S3Object>Contains the S3 bucket name and the Amazon S3 key name.
antipattern_report_status: Option<AntipatternReportStatus>The status of the anti-pattern report generation.
antipattern_report_status_message: Option<String>The status message for the anti-pattern.
Implementations§
source§impl AntipatternReportResult
impl AntipatternReportResult
sourcepub fn analyzer_name(&self) -> Option<&AnalyzerNameUnion>
pub fn analyzer_name(&self) -> Option<&AnalyzerNameUnion>
The analyzer name.
sourcepub fn anti_pattern_report_s3_object(&self) -> Option<&S3Object>
pub fn anti_pattern_report_s3_object(&self) -> Option<&S3Object>
Contains the S3 bucket name and the Amazon S3 key name.
sourcepub fn antipattern_report_status(&self) -> Option<&AntipatternReportStatus>
pub fn antipattern_report_status(&self) -> Option<&AntipatternReportStatus>
The status of the anti-pattern report generation.
sourcepub fn antipattern_report_status_message(&self) -> Option<&str>
pub fn antipattern_report_status_message(&self) -> Option<&str>
The status message for the anti-pattern.
source§impl AntipatternReportResult
impl AntipatternReportResult
sourcepub fn builder() -> AntipatternReportResultBuilder
pub fn builder() -> AntipatternReportResultBuilder
Creates a new builder-style object to manufacture AntipatternReportResult.
Trait Implementations§
source§impl Clone for AntipatternReportResult
impl Clone for AntipatternReportResult
source§fn clone(&self) -> AntipatternReportResult
fn clone(&self) -> AntipatternReportResult
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for AntipatternReportResult
impl Debug for AntipatternReportResult
source§impl PartialEq for AntipatternReportResult
impl PartialEq for AntipatternReportResult
source§fn eq(&self, other: &AntipatternReportResult) -> bool
fn eq(&self, other: &AntipatternReportResult) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AntipatternReportResult
Auto Trait Implementations§
impl Freeze for AntipatternReportResult
impl RefUnwindSafe for AntipatternReportResult
impl Send for AntipatternReportResult
impl Sync for AntipatternReportResult
impl Unpin for AntipatternReportResult
impl UnwindSafe for AntipatternReportResult
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.