Struct aws_sdk_devopsguru::operation::describe_insight::builders::DescribeInsightOutputBuilder
source · #[non_exhaustive]pub struct DescribeInsightOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeInsightOutput
.
Implementations§
source§impl DescribeInsightOutputBuilder
impl DescribeInsightOutputBuilder
sourcepub fn proactive_insight(self, input: ProactiveInsight) -> Self
pub fn proactive_insight(self, input: ProactiveInsight) -> Self
A ProactiveInsight
object that represents the requested insight.
sourcepub fn set_proactive_insight(self, input: Option<ProactiveInsight>) -> Self
pub fn set_proactive_insight(self, input: Option<ProactiveInsight>) -> Self
A ProactiveInsight
object that represents the requested insight.
sourcepub fn get_proactive_insight(&self) -> &Option<ProactiveInsight>
pub fn get_proactive_insight(&self) -> &Option<ProactiveInsight>
A ProactiveInsight
object that represents the requested insight.
sourcepub fn reactive_insight(self, input: ReactiveInsight) -> Self
pub fn reactive_insight(self, input: ReactiveInsight) -> Self
A ReactiveInsight
object that represents the requested insight.
sourcepub fn set_reactive_insight(self, input: Option<ReactiveInsight>) -> Self
pub fn set_reactive_insight(self, input: Option<ReactiveInsight>) -> Self
A ReactiveInsight
object that represents the requested insight.
sourcepub fn get_reactive_insight(&self) -> &Option<ReactiveInsight>
pub fn get_reactive_insight(&self) -> &Option<ReactiveInsight>
A ReactiveInsight
object that represents the requested insight.
sourcepub fn build(self) -> DescribeInsightOutput
pub fn build(self) -> DescribeInsightOutput
Consumes the builder and constructs a DescribeInsightOutput
.
Trait Implementations§
source§impl Clone for DescribeInsightOutputBuilder
impl Clone for DescribeInsightOutputBuilder
source§fn clone(&self) -> DescribeInsightOutputBuilder
fn clone(&self) -> DescribeInsightOutputBuilder
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 DescribeInsightOutputBuilder
impl Debug for DescribeInsightOutputBuilder
source§impl Default for DescribeInsightOutputBuilder
impl Default for DescribeInsightOutputBuilder
source§fn default() -> DescribeInsightOutputBuilder
fn default() -> DescribeInsightOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeInsightOutputBuilder
impl PartialEq for DescribeInsightOutputBuilder
source§fn eq(&self, other: &DescribeInsightOutputBuilder) -> bool
fn eq(&self, other: &DescribeInsightOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeInsightOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeInsightOutputBuilder
impl RefUnwindSafe for DescribeInsightOutputBuilder
impl Send for DescribeInsightOutputBuilder
impl Sync for DescribeInsightOutputBuilder
impl Unpin for DescribeInsightOutputBuilder
impl UnwindSafe for DescribeInsightOutputBuilder
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.