Struct aws_sdk_ec2::types::builders::RecurringChargeBuilder
source · #[non_exhaustive]pub struct RecurringChargeBuilder { /* private fields */ }
Expand description
A builder for RecurringCharge
.
Implementations§
source§impl RecurringChargeBuilder
impl RecurringChargeBuilder
sourcepub fn set_amount(self, input: Option<f64>) -> Self
pub fn set_amount(self, input: Option<f64>) -> Self
The amount of the recurring charge.
sourcepub fn get_amount(&self) -> &Option<f64>
pub fn get_amount(&self) -> &Option<f64>
The amount of the recurring charge.
sourcepub fn frequency(self, input: RecurringChargeFrequency) -> Self
pub fn frequency(self, input: RecurringChargeFrequency) -> Self
The frequency of the recurring charge.
sourcepub fn set_frequency(self, input: Option<RecurringChargeFrequency>) -> Self
pub fn set_frequency(self, input: Option<RecurringChargeFrequency>) -> Self
The frequency of the recurring charge.
sourcepub fn get_frequency(&self) -> &Option<RecurringChargeFrequency>
pub fn get_frequency(&self) -> &Option<RecurringChargeFrequency>
The frequency of the recurring charge.
sourcepub fn build(self) -> RecurringCharge
pub fn build(self) -> RecurringCharge
Consumes the builder and constructs a RecurringCharge
.
Trait Implementations§
source§impl Clone for RecurringChargeBuilder
impl Clone for RecurringChargeBuilder
source§fn clone(&self) -> RecurringChargeBuilder
fn clone(&self) -> RecurringChargeBuilder
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 RecurringChargeBuilder
impl Debug for RecurringChargeBuilder
source§impl Default for RecurringChargeBuilder
impl Default for RecurringChargeBuilder
source§fn default() -> RecurringChargeBuilder
fn default() -> RecurringChargeBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for RecurringChargeBuilder
impl PartialEq for RecurringChargeBuilder
source§fn eq(&self, other: &RecurringChargeBuilder) -> bool
fn eq(&self, other: &RecurringChargeBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RecurringChargeBuilder
Auto Trait Implementations§
impl Freeze for RecurringChargeBuilder
impl RefUnwindSafe for RecurringChargeBuilder
impl Send for RecurringChargeBuilder
impl Sync for RecurringChargeBuilder
impl Unpin for RecurringChargeBuilder
impl UnwindSafe for RecurringChargeBuilder
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.