Struct aws_sdk_devopsguru::types::builders::AccountHealthBuilder
source · #[non_exhaustive]pub struct AccountHealthBuilder { /* private fields */ }
Expand description
A builder for AccountHealth
.
Implementations§
source§impl AccountHealthBuilder
impl AccountHealthBuilder
sourcepub fn account_id(self, input: impl Into<String>) -> Self
pub fn account_id(self, input: impl Into<String>) -> Self
The ID of the Amazon Web Services account.
sourcepub fn set_account_id(self, input: Option<String>) -> Self
pub fn set_account_id(self, input: Option<String>) -> Self
The ID of the Amazon Web Services account.
sourcepub fn get_account_id(&self) -> &Option<String>
pub fn get_account_id(&self) -> &Option<String>
The ID of the Amazon Web Services account.
sourcepub fn insight(self, input: AccountInsightHealth) -> Self
pub fn insight(self, input: AccountInsightHealth) -> Self
Information about the health of the Amazon Web Services resources in your account, including the number of open proactive, open reactive insights, and the Mean Time to Recover (MTTR) of closed insights.
sourcepub fn set_insight(self, input: Option<AccountInsightHealth>) -> Self
pub fn set_insight(self, input: Option<AccountInsightHealth>) -> Self
Information about the health of the Amazon Web Services resources in your account, including the number of open proactive, open reactive insights, and the Mean Time to Recover (MTTR) of closed insights.
sourcepub fn get_insight(&self) -> &Option<AccountInsightHealth>
pub fn get_insight(&self) -> &Option<AccountInsightHealth>
Information about the health of the Amazon Web Services resources in your account, including the number of open proactive, open reactive insights, and the Mean Time to Recover (MTTR) of closed insights.
sourcepub fn build(self) -> AccountHealth
pub fn build(self) -> AccountHealth
Consumes the builder and constructs a AccountHealth
.
Trait Implementations§
source§impl Clone for AccountHealthBuilder
impl Clone for AccountHealthBuilder
source§fn clone(&self) -> AccountHealthBuilder
fn clone(&self) -> AccountHealthBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AccountHealthBuilder
impl Debug for AccountHealthBuilder
source§impl Default for AccountHealthBuilder
impl Default for AccountHealthBuilder
source§fn default() -> AccountHealthBuilder
fn default() -> AccountHealthBuilder
source§impl PartialEq for AccountHealthBuilder
impl PartialEq for AccountHealthBuilder
impl StructuralPartialEq for AccountHealthBuilder
Auto Trait Implementations§
impl Freeze for AccountHealthBuilder
impl RefUnwindSafe for AccountHealthBuilder
impl Send for AccountHealthBuilder
impl Sync for AccountHealthBuilder
impl Unpin for AccountHealthBuilder
impl UnwindSafe for AccountHealthBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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