Struct aws_sdk_iot::types::builders::AssetPropertyTimestampBuilder
source · #[non_exhaustive]pub struct AssetPropertyTimestampBuilder { /* private fields */ }
Expand description
A builder for AssetPropertyTimestamp
.
Implementations§
source§impl AssetPropertyTimestampBuilder
impl AssetPropertyTimestampBuilder
sourcepub fn time_in_seconds(self, input: impl Into<String>) -> Self
pub fn time_in_seconds(self, input: impl Into<String>) -> Self
A string that contains the time in seconds since epoch. Accepts substitution templates.
This field is required.sourcepub fn set_time_in_seconds(self, input: Option<String>) -> Self
pub fn set_time_in_seconds(self, input: Option<String>) -> Self
A string that contains the time in seconds since epoch. Accepts substitution templates.
sourcepub fn get_time_in_seconds(&self) -> &Option<String>
pub fn get_time_in_seconds(&self) -> &Option<String>
A string that contains the time in seconds since epoch. Accepts substitution templates.
sourcepub fn offset_in_nanos(self, input: impl Into<String>) -> Self
pub fn offset_in_nanos(self, input: impl Into<String>) -> Self
Optional. A string that contains the nanosecond time offset. Accepts substitution templates.
sourcepub fn set_offset_in_nanos(self, input: Option<String>) -> Self
pub fn set_offset_in_nanos(self, input: Option<String>) -> Self
Optional. A string that contains the nanosecond time offset. Accepts substitution templates.
sourcepub fn get_offset_in_nanos(&self) -> &Option<String>
pub fn get_offset_in_nanos(&self) -> &Option<String>
Optional. A string that contains the nanosecond time offset. Accepts substitution templates.
sourcepub fn build(self) -> Result<AssetPropertyTimestamp, BuildError>
pub fn build(self) -> Result<AssetPropertyTimestamp, BuildError>
Consumes the builder and constructs a AssetPropertyTimestamp
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for AssetPropertyTimestampBuilder
impl Clone for AssetPropertyTimestampBuilder
source§fn clone(&self) -> AssetPropertyTimestampBuilder
fn clone(&self) -> AssetPropertyTimestampBuilder
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 Default for AssetPropertyTimestampBuilder
impl Default for AssetPropertyTimestampBuilder
source§fn default() -> AssetPropertyTimestampBuilder
fn default() -> AssetPropertyTimestampBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AssetPropertyTimestampBuilder
impl PartialEq for AssetPropertyTimestampBuilder
source§fn eq(&self, other: &AssetPropertyTimestampBuilder) -> bool
fn eq(&self, other: &AssetPropertyTimestampBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AssetPropertyTimestampBuilder
Auto Trait Implementations§
impl Freeze for AssetPropertyTimestampBuilder
impl RefUnwindSafe for AssetPropertyTimestampBuilder
impl Send for AssetPropertyTimestampBuilder
impl Sync for AssetPropertyTimestampBuilder
impl Unpin for AssetPropertyTimestampBuilder
impl UnwindSafe for AssetPropertyTimestampBuilder
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>
Creates a shared type from an unshared type.