Struct aws_sdk_iotfleetwise::types::TimestreamConfig
source · #[non_exhaustive]pub struct TimestreamConfig {
pub timestream_table_arn: String,
pub execution_role_arn: String,
}
Expand description
The Amazon Timestream table where the Amazon Web Services IoT FleetWise campaign sends data. Timestream stores and organizes data to optimize query processing time and to reduce storage costs. For more information, see Data modeling in the Amazon Timestream Developer Guide.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.timestream_table_arn: String
The Amazon Resource Name (ARN) of the Amazon Timestream table.
execution_role_arn: String
The Amazon Resource Name (ARN) of the task execution role that grants Amazon Web Services IoT FleetWise permission to deliver data to the Amazon Timestream table.
Implementations§
source§impl TimestreamConfig
impl TimestreamConfig
sourcepub fn timestream_table_arn(&self) -> &str
pub fn timestream_table_arn(&self) -> &str
The Amazon Resource Name (ARN) of the Amazon Timestream table.
sourcepub fn execution_role_arn(&self) -> &str
pub fn execution_role_arn(&self) -> &str
The Amazon Resource Name (ARN) of the task execution role that grants Amazon Web Services IoT FleetWise permission to deliver data to the Amazon Timestream table.
source§impl TimestreamConfig
impl TimestreamConfig
sourcepub fn builder() -> TimestreamConfigBuilder
pub fn builder() -> TimestreamConfigBuilder
Creates a new builder-style object to manufacture TimestreamConfig
.
Trait Implementations§
source§impl Clone for TimestreamConfig
impl Clone for TimestreamConfig
source§fn clone(&self) -> TimestreamConfig
fn clone(&self) -> TimestreamConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TimestreamConfig
impl Debug for TimestreamConfig
source§impl PartialEq for TimestreamConfig
impl PartialEq for TimestreamConfig
source§fn eq(&self, other: &TimestreamConfig) -> bool
fn eq(&self, other: &TimestreamConfig) -> bool
self
and other
values to be equal, and is used
by ==
.