Struct aws_sdk_iot::types::builders::TimestreamTimestampBuilder
source · #[non_exhaustive]pub struct TimestreamTimestampBuilder { /* private fields */ }
Expand description
A builder for TimestreamTimestamp
.
Implementations§
source§impl TimestreamTimestampBuilder
impl TimestreamTimestampBuilder
sourcepub fn value(self, input: impl Into<String>) -> Self
pub fn value(self, input: impl Into<String>) -> Self
An expression that returns a long epoch time value.
This field is required.sourcepub fn set_value(self, input: Option<String>) -> Self
pub fn set_value(self, input: Option<String>) -> Self
An expression that returns a long epoch time value.
sourcepub fn unit(self, input: impl Into<String>) -> Self
pub fn unit(self, input: impl Into<String>) -> Self
The precision of the timestamp value that results from the expression described in value
.
Valid values: SECONDS
| MILLISECONDS
| MICROSECONDS
| NANOSECONDS
. The default is MILLISECONDS
.
sourcepub fn set_unit(self, input: Option<String>) -> Self
pub fn set_unit(self, input: Option<String>) -> Self
The precision of the timestamp value that results from the expression described in value
.
Valid values: SECONDS
| MILLISECONDS
| MICROSECONDS
| NANOSECONDS
. The default is MILLISECONDS
.
sourcepub fn get_unit(&self) -> &Option<String>
pub fn get_unit(&self) -> &Option<String>
The precision of the timestamp value that results from the expression described in value
.
Valid values: SECONDS
| MILLISECONDS
| MICROSECONDS
| NANOSECONDS
. The default is MILLISECONDS
.
sourcepub fn build(self) -> Result<TimestreamTimestamp, BuildError>
pub fn build(self) -> Result<TimestreamTimestamp, BuildError>
Consumes the builder and constructs a TimestreamTimestamp
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for TimestreamTimestampBuilder
impl Clone for TimestreamTimestampBuilder
source§fn clone(&self) -> TimestreamTimestampBuilder
fn clone(&self) -> TimestreamTimestampBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TimestreamTimestampBuilder
impl Debug for TimestreamTimestampBuilder
source§impl Default for TimestreamTimestampBuilder
impl Default for TimestreamTimestampBuilder
source§fn default() -> TimestreamTimestampBuilder
fn default() -> TimestreamTimestampBuilder
source§impl PartialEq for TimestreamTimestampBuilder
impl PartialEq for TimestreamTimestampBuilder
source§fn eq(&self, other: &TimestreamTimestampBuilder) -> bool
fn eq(&self, other: &TimestreamTimestampBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.