Struct aws_sdk_securityhub::types::builders::AdjustmentBuilder
source · #[non_exhaustive]pub struct AdjustmentBuilder { /* private fields */ }
Expand description
A builder for Adjustment
.
Implementations§
source§impl AdjustmentBuilder
impl AdjustmentBuilder
sourcepub fn set_metric(self, input: Option<String>) -> Self
pub fn set_metric(self, input: Option<String>) -> Self
The metric to adjust.
sourcepub fn get_metric(&self) -> &Option<String>
pub fn get_metric(&self) -> &Option<String>
The metric to adjust.
sourcepub fn set_reason(self, input: Option<String>) -> Self
pub fn set_reason(self, input: Option<String>) -> Self
The reason for the adjustment.
sourcepub fn get_reason(&self) -> &Option<String>
pub fn get_reason(&self) -> &Option<String>
The reason for the adjustment.
sourcepub fn build(self) -> Adjustment
pub fn build(self) -> Adjustment
Consumes the builder and constructs a Adjustment
.
Trait Implementations§
source§impl Clone for AdjustmentBuilder
impl Clone for AdjustmentBuilder
source§fn clone(&self) -> AdjustmentBuilder
fn clone(&self) -> AdjustmentBuilder
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 AdjustmentBuilder
impl Debug for AdjustmentBuilder
source§impl Default for AdjustmentBuilder
impl Default for AdjustmentBuilder
source§fn default() -> AdjustmentBuilder
fn default() -> AdjustmentBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AdjustmentBuilder
impl PartialEq for AdjustmentBuilder
source§fn eq(&self, other: &AdjustmentBuilder) -> bool
fn eq(&self, other: &AdjustmentBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AdjustmentBuilder
Auto Trait Implementations§
impl Freeze for AdjustmentBuilder
impl RefUnwindSafe for AdjustmentBuilder
impl Send for AdjustmentBuilder
impl Sync for AdjustmentBuilder
impl Unpin for AdjustmentBuilder
impl UnwindSafe for AdjustmentBuilder
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.