Struct aws_sdk_ssm::types::builders::CompliantSummaryBuilder
source · #[non_exhaustive]pub struct CompliantSummaryBuilder { /* private fields */ }Expand description
A builder for CompliantSummary.
Implementations§
source§impl CompliantSummaryBuilder
impl CompliantSummaryBuilder
sourcepub fn compliant_count(self, input: i32) -> Self
pub fn compliant_count(self, input: i32) -> Self
The total number of resources that are compliant.
sourcepub fn set_compliant_count(self, input: Option<i32>) -> Self
pub fn set_compliant_count(self, input: Option<i32>) -> Self
The total number of resources that are compliant.
sourcepub fn get_compliant_count(&self) -> &Option<i32>
pub fn get_compliant_count(&self) -> &Option<i32>
The total number of resources that are compliant.
sourcepub fn severity_summary(self, input: SeveritySummary) -> Self
pub fn severity_summary(self, input: SeveritySummary) -> Self
A summary of the compliance severity by compliance type.
sourcepub fn set_severity_summary(self, input: Option<SeveritySummary>) -> Self
pub fn set_severity_summary(self, input: Option<SeveritySummary>) -> Self
A summary of the compliance severity by compliance type.
sourcepub fn get_severity_summary(&self) -> &Option<SeveritySummary>
pub fn get_severity_summary(&self) -> &Option<SeveritySummary>
A summary of the compliance severity by compliance type.
sourcepub fn build(self) -> CompliantSummary
pub fn build(self) -> CompliantSummary
Consumes the builder and constructs a CompliantSummary.
Trait Implementations§
source§impl Clone for CompliantSummaryBuilder
impl Clone for CompliantSummaryBuilder
source§fn clone(&self) -> CompliantSummaryBuilder
fn clone(&self) -> CompliantSummaryBuilder
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 CompliantSummaryBuilder
impl Debug for CompliantSummaryBuilder
source§impl Default for CompliantSummaryBuilder
impl Default for CompliantSummaryBuilder
source§fn default() -> CompliantSummaryBuilder
fn default() -> CompliantSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CompliantSummaryBuilder
impl PartialEq for CompliantSummaryBuilder
source§fn eq(&self, other: &CompliantSummaryBuilder) -> bool
fn eq(&self, other: &CompliantSummaryBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CompliantSummaryBuilder
Auto Trait Implementations§
impl Freeze for CompliantSummaryBuilder
impl RefUnwindSafe for CompliantSummaryBuilder
impl Send for CompliantSummaryBuilder
impl Sync for CompliantSummaryBuilder
impl Unpin for CompliantSummaryBuilder
impl UnwindSafe for CompliantSummaryBuilder
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.