Struct aws_sdk_devopsguru::operation::describe_organization_overview::builders::DescribeOrganizationOverviewOutputBuilder
source · #[non_exhaustive]pub struct DescribeOrganizationOverviewOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeOrganizationOverviewOutput
.
Implementations§
source§impl DescribeOrganizationOverviewOutputBuilder
impl DescribeOrganizationOverviewOutputBuilder
sourcepub fn reactive_insights(self, input: i32) -> Self
pub fn reactive_insights(self, input: i32) -> Self
An integer that specifies the number of open reactive insights in your Amazon Web Services account.
This field is required.sourcepub fn set_reactive_insights(self, input: Option<i32>) -> Self
pub fn set_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_reactive_insights(&self) -> &Option<i32>
pub fn get_reactive_insights(&self) -> &Option<i32>
An integer that specifies the number of open reactive insights in your Amazon Web Services account.
sourcepub fn proactive_insights(self, input: i32) -> Self
pub fn proactive_insights(self, input: i32) -> Self
An integer that specifies the number of open proactive insights in your Amazon Web Services account.
This field is required.sourcepub fn set_proactive_insights(self, input: Option<i32>) -> Self
pub fn set_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_proactive_insights(&self) -> &Option<i32>
pub fn get_proactive_insights(&self) -> &Option<i32>
An integer that specifies the number of open proactive insights in your Amazon Web Services account.
sourcepub fn build(self) -> DescribeOrganizationOverviewOutput
pub fn build(self) -> DescribeOrganizationOverviewOutput
Consumes the builder and constructs a DescribeOrganizationOverviewOutput
.
Trait Implementations§
source§impl Clone for DescribeOrganizationOverviewOutputBuilder
impl Clone for DescribeOrganizationOverviewOutputBuilder
source§fn clone(&self) -> DescribeOrganizationOverviewOutputBuilder
fn clone(&self) -> DescribeOrganizationOverviewOutputBuilder
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 Default for DescribeOrganizationOverviewOutputBuilder
impl Default for DescribeOrganizationOverviewOutputBuilder
source§fn default() -> DescribeOrganizationOverviewOutputBuilder
fn default() -> DescribeOrganizationOverviewOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeOrganizationOverviewOutputBuilder
impl PartialEq for DescribeOrganizationOverviewOutputBuilder
source§fn eq(&self, other: &DescribeOrganizationOverviewOutputBuilder) -> bool
fn eq(&self, other: &DescribeOrganizationOverviewOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeOrganizationOverviewOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeOrganizationOverviewOutputBuilder
impl RefUnwindSafe for DescribeOrganizationOverviewOutputBuilder
impl Send for DescribeOrganizationOverviewOutputBuilder
impl Sync for DescribeOrganizationOverviewOutputBuilder
impl Unpin for DescribeOrganizationOverviewOutputBuilder
impl UnwindSafe for DescribeOrganizationOverviewOutputBuilder
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.