Struct aws_sdk_devopsguru::operation::describe_anomaly::builders::DescribeAnomalyOutputBuilder
source · #[non_exhaustive]pub struct DescribeAnomalyOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeAnomalyOutput
.
Implementations§
source§impl DescribeAnomalyOutputBuilder
impl DescribeAnomalyOutputBuilder
sourcepub fn proactive_anomaly(self, input: ProactiveAnomaly) -> Self
pub fn proactive_anomaly(self, input: ProactiveAnomaly) -> Self
A ProactiveAnomaly
object that represents the requested anomaly.
sourcepub fn set_proactive_anomaly(self, input: Option<ProactiveAnomaly>) -> Self
pub fn set_proactive_anomaly(self, input: Option<ProactiveAnomaly>) -> Self
A ProactiveAnomaly
object that represents the requested anomaly.
sourcepub fn get_proactive_anomaly(&self) -> &Option<ProactiveAnomaly>
pub fn get_proactive_anomaly(&self) -> &Option<ProactiveAnomaly>
A ProactiveAnomaly
object that represents the requested anomaly.
sourcepub fn reactive_anomaly(self, input: ReactiveAnomaly) -> Self
pub fn reactive_anomaly(self, input: ReactiveAnomaly) -> Self
A ReactiveAnomaly
object that represents the requested anomaly.
sourcepub fn set_reactive_anomaly(self, input: Option<ReactiveAnomaly>) -> Self
pub fn set_reactive_anomaly(self, input: Option<ReactiveAnomaly>) -> Self
A ReactiveAnomaly
object that represents the requested anomaly.
sourcepub fn get_reactive_anomaly(&self) -> &Option<ReactiveAnomaly>
pub fn get_reactive_anomaly(&self) -> &Option<ReactiveAnomaly>
A ReactiveAnomaly
object that represents the requested anomaly.
sourcepub fn build(self) -> DescribeAnomalyOutput
pub fn build(self) -> DescribeAnomalyOutput
Consumes the builder and constructs a DescribeAnomalyOutput
.
Trait Implementations§
source§impl Clone for DescribeAnomalyOutputBuilder
impl Clone for DescribeAnomalyOutputBuilder
source§fn clone(&self) -> DescribeAnomalyOutputBuilder
fn clone(&self) -> DescribeAnomalyOutputBuilder
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 DescribeAnomalyOutputBuilder
impl Debug for DescribeAnomalyOutputBuilder
source§impl Default for DescribeAnomalyOutputBuilder
impl Default for DescribeAnomalyOutputBuilder
source§fn default() -> DescribeAnomalyOutputBuilder
fn default() -> DescribeAnomalyOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeAnomalyOutputBuilder
impl PartialEq for DescribeAnomalyOutputBuilder
source§fn eq(&self, other: &DescribeAnomalyOutputBuilder) -> bool
fn eq(&self, other: &DescribeAnomalyOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeAnomalyOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeAnomalyOutputBuilder
impl RefUnwindSafe for DescribeAnomalyOutputBuilder
impl Send for DescribeAnomalyOutputBuilder
impl Sync for DescribeAnomalyOutputBuilder
impl Unpin for DescribeAnomalyOutputBuilder
impl UnwindSafe for DescribeAnomalyOutputBuilder
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.