Struct aws_sdk_iot::types::builders::TimestreamActionBuilder
source · #[non_exhaustive]pub struct TimestreamActionBuilder { /* private fields */ }
Expand description
A builder for TimestreamAction
.
Implementations§
source§impl TimestreamActionBuilder
impl TimestreamActionBuilder
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The ARN of the role that grants permission to write to the Amazon Timestream database table.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The ARN of the role that grants permission to write to the Amazon Timestream database table.
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
The ARN of the role that grants permission to write to the Amazon Timestream database table.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
The name of an Amazon Timestream database.
sourcepub fn set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
The name of an Amazon Timestream database.
sourcepub fn get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
The name of an Amazon Timestream database.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The name of the database table into which to write the measure records.
sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
The name of the database table into which to write the measure records.
sourcepub fn get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
The name of the database table into which to write the measure records.
sourcepub fn dimensions(self, input: TimestreamDimension) -> Self
pub fn dimensions(self, input: TimestreamDimension) -> Self
Appends an item to dimensions
.
To override the contents of this collection use set_dimensions
.
Metadata attributes of the time series that are written in each measure record.
sourcepub fn set_dimensions(self, input: Option<Vec<TimestreamDimension>>) -> Self
pub fn set_dimensions(self, input: Option<Vec<TimestreamDimension>>) -> Self
Metadata attributes of the time series that are written in each measure record.
sourcepub fn get_dimensions(&self) -> &Option<Vec<TimestreamDimension>>
pub fn get_dimensions(&self) -> &Option<Vec<TimestreamDimension>>
Metadata attributes of the time series that are written in each measure record.
sourcepub fn timestamp(self, input: TimestreamTimestamp) -> Self
pub fn timestamp(self, input: TimestreamTimestamp) -> Self
Specifies an application-defined value to replace the default value assigned to the Timestream record's timestamp in the time
column.
You can use this property to specify the value and the precision of the Timestream record's timestamp. You can specify a value from the message payload or a value computed by a substitution template.
If omitted, the topic rule action assigns the timestamp, in milliseconds, at the time it processed the rule.
sourcepub fn set_timestamp(self, input: Option<TimestreamTimestamp>) -> Self
pub fn set_timestamp(self, input: Option<TimestreamTimestamp>) -> Self
Specifies an application-defined value to replace the default value assigned to the Timestream record's timestamp in the time
column.
You can use this property to specify the value and the precision of the Timestream record's timestamp. You can specify a value from the message payload or a value computed by a substitution template.
If omitted, the topic rule action assigns the timestamp, in milliseconds, at the time it processed the rule.
sourcepub fn get_timestamp(&self) -> &Option<TimestreamTimestamp>
pub fn get_timestamp(&self) -> &Option<TimestreamTimestamp>
Specifies an application-defined value to replace the default value assigned to the Timestream record's timestamp in the time
column.
You can use this property to specify the value and the precision of the Timestream record's timestamp. You can specify a value from the message payload or a value computed by a substitution template.
If omitted, the topic rule action assigns the timestamp, in milliseconds, at the time it processed the rule.
sourcepub fn build(self) -> TimestreamAction
pub fn build(self) -> TimestreamAction
Consumes the builder and constructs a TimestreamAction
.
Trait Implementations§
source§impl Clone for TimestreamActionBuilder
impl Clone for TimestreamActionBuilder
source§fn clone(&self) -> TimestreamActionBuilder
fn clone(&self) -> TimestreamActionBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TimestreamActionBuilder
impl Debug for TimestreamActionBuilder
source§impl Default for TimestreamActionBuilder
impl Default for TimestreamActionBuilder
source§fn default() -> TimestreamActionBuilder
fn default() -> TimestreamActionBuilder
source§impl PartialEq for TimestreamActionBuilder
impl PartialEq for TimestreamActionBuilder
source§fn eq(&self, other: &TimestreamActionBuilder) -> bool
fn eq(&self, other: &TimestreamActionBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.