Struct aws_sdk_iot::types::builders::BillingGroupMetadataBuilder
source · #[non_exhaustive]pub struct BillingGroupMetadataBuilder { /* private fields */ }
Expand description
A builder for BillingGroupMetadata
.
Implementations§
source§impl BillingGroupMetadataBuilder
impl BillingGroupMetadataBuilder
sourcepub fn creation_date(self, input: DateTime) -> Self
pub fn creation_date(self, input: DateTime) -> Self
The date the billing group was created.
sourcepub fn set_creation_date(self, input: Option<DateTime>) -> Self
pub fn set_creation_date(self, input: Option<DateTime>) -> Self
The date the billing group was created.
sourcepub fn get_creation_date(&self) -> &Option<DateTime>
pub fn get_creation_date(&self) -> &Option<DateTime>
The date the billing group was created.
sourcepub fn build(self) -> BillingGroupMetadata
pub fn build(self) -> BillingGroupMetadata
Consumes the builder and constructs a BillingGroupMetadata
.
Trait Implementations§
source§impl Clone for BillingGroupMetadataBuilder
impl Clone for BillingGroupMetadataBuilder
source§fn clone(&self) -> BillingGroupMetadataBuilder
fn clone(&self) -> BillingGroupMetadataBuilder
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 BillingGroupMetadataBuilder
impl Debug for BillingGroupMetadataBuilder
source§impl Default for BillingGroupMetadataBuilder
impl Default for BillingGroupMetadataBuilder
source§fn default() -> BillingGroupMetadataBuilder
fn default() -> BillingGroupMetadataBuilder
Returns the “default value” for a type. Read more
impl StructuralPartialEq for BillingGroupMetadataBuilder
Auto Trait Implementations§
impl Freeze for BillingGroupMetadataBuilder
impl RefUnwindSafe for BillingGroupMetadataBuilder
impl Send for BillingGroupMetadataBuilder
impl Sync for BillingGroupMetadataBuilder
impl Unpin for BillingGroupMetadataBuilder
impl UnwindSafe for BillingGroupMetadataBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.