#[non_exhaustive]pub struct AccountInsightHealthBuilder { /* private fields */ }
Expand description
A builder for AccountInsightHealth
.
Implementations§
source§impl AccountInsightHealthBuilder
impl AccountInsightHealthBuilder
sourcepub fn open_proactive_insights(self, input: i32) -> Self
pub fn open_proactive_insights(self, input: i32) -> Self
An integer that specifies the number of open proactive insights in your Amazon Web Services account.
sourcepub fn set_open_proactive_insights(self, input: Option<i32>) -> Self
pub fn set_open_proactive_insights(self, input: Option<i32>) -> Self
An integer that specifies the number of open proactive insights in your Amazon Web Services account.
sourcepub fn get_open_proactive_insights(&self) -> &Option<i32>
pub fn get_open_proactive_insights(&self) -> &Option<i32>
An integer that specifies the number of open proactive insights in your Amazon Web Services account.
sourcepub fn open_reactive_insights(self, input: i32) -> Self
pub fn open_reactive_insights(self, input: i32) -> Self
An integer that specifies the number of open reactive insights in your Amazon Web Services account.
sourcepub fn set_open_reactive_insights(self, input: Option<i32>) -> Self
pub fn set_open_reactive_insights(self, input: Option<i32>) -> Self
An integer that specifies the number of open reactive insights in your Amazon Web Services account.
sourcepub fn get_open_reactive_insights(&self) -> &Option<i32>
pub fn get_open_reactive_insights(&self) -> &Option<i32>
An integer that specifies the number of open reactive insights in your Amazon Web Services account.
sourcepub fn build(self) -> AccountInsightHealth
pub fn build(self) -> AccountInsightHealth
Consumes the builder and constructs a AccountInsightHealth
.
Trait Implementations§
source§impl Clone for AccountInsightHealthBuilder
impl Clone for AccountInsightHealthBuilder
source§fn clone(&self) -> AccountInsightHealthBuilder
fn clone(&self) -> AccountInsightHealthBuilder
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 AccountInsightHealthBuilder
impl Debug for AccountInsightHealthBuilder
source§impl Default for AccountInsightHealthBuilder
impl Default for AccountInsightHealthBuilder
source§fn default() -> AccountInsightHealthBuilder
fn default() -> AccountInsightHealthBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AccountInsightHealthBuilder
impl PartialEq for AccountInsightHealthBuilder
source§fn eq(&self, other: &AccountInsightHealthBuilder) -> bool
fn eq(&self, other: &AccountInsightHealthBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AccountInsightHealthBuilder
Auto Trait Implementations§
impl Freeze for AccountInsightHealthBuilder
impl RefUnwindSafe for AccountInsightHealthBuilder
impl Send for AccountInsightHealthBuilder
impl Sync for AccountInsightHealthBuilder
impl Unpin for AccountInsightHealthBuilder
impl UnwindSafe for AccountInsightHealthBuilder
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.