pub struct DeltaTimeSessionWindowConfiguration {
pub timeout_in_minutes: i64,
}
Expand description
A structure that contains the configuration information of a delta time session window.
DeltaTime
specifies a time interval. You can use DeltaTime
to create dataset contents with data that has arrived in the data store since the last execution. For an example of DeltaTime
, see Creating a SQL dataset with a delta window (CLI) in the AWS IoT Analytics User Guide.
Fields§
§timeout_in_minutes: i64
A time interval. You can use timeoutInMinutes
so that AWS IoT Analytics can batch up late data notifications that have been generated since the last execution. AWS IoT Analytics sends one batch of notifications to Amazon CloudWatch Events at one time.
For more information about how to write a timestamp expression, see Date and Time Functions and Operators, in the Presto 0.172 Documentation.
Trait Implementations§
Source§impl Clone for DeltaTimeSessionWindowConfiguration
impl Clone for DeltaTimeSessionWindowConfiguration
Source§fn clone(&self) -> DeltaTimeSessionWindowConfiguration
fn clone(&self) -> DeltaTimeSessionWindowConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for DeltaTimeSessionWindowConfiguration
impl Default for DeltaTimeSessionWindowConfiguration
Source§fn default() -> DeltaTimeSessionWindowConfiguration
fn default() -> DeltaTimeSessionWindowConfiguration
Source§impl<'de> Deserialize<'de> for DeltaTimeSessionWindowConfiguration
impl<'de> Deserialize<'de> for DeltaTimeSessionWindowConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for DeltaTimeSessionWindowConfiguration
impl PartialEq for DeltaTimeSessionWindowConfiguration
Source§fn eq(&self, other: &DeltaTimeSessionWindowConfiguration) -> bool
fn eq(&self, other: &DeltaTimeSessionWindowConfiguration) -> bool
self
and other
values to be equal, and is used by ==
.