#[non_exhaustive]pub struct DeltaTimeSessionWindowConfiguration {
pub timeout_in_minutes: i32,
}
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 IoT Analytics User 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.timeout_in_minutes: i32
A time interval. You can use timeoutInMinutes
so that IoT Analytics can batch up late data notifications that have been generated since the last execution. 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.
Implementations§
source§impl DeltaTimeSessionWindowConfiguration
impl DeltaTimeSessionWindowConfiguration
sourcepub fn timeout_in_minutes(&self) -> i32
pub fn timeout_in_minutes(&self) -> i32
A time interval. You can use timeoutInMinutes
so that IoT Analytics can batch up late data notifications that have been generated since the last execution. 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.
source§impl DeltaTimeSessionWindowConfiguration
impl DeltaTimeSessionWindowConfiguration
sourcepub fn builder() -> DeltaTimeSessionWindowConfigurationBuilder
pub fn builder() -> DeltaTimeSessionWindowConfigurationBuilder
Creates a new builder-style object to manufacture DeltaTimeSessionWindowConfiguration
.
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 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 ==
.impl StructuralPartialEq for DeltaTimeSessionWindowConfiguration
Auto Trait Implementations§
impl Freeze for DeltaTimeSessionWindowConfiguration
impl RefUnwindSafe for DeltaTimeSessionWindowConfiguration
impl Send for DeltaTimeSessionWindowConfiguration
impl Sync for DeltaTimeSessionWindowConfiguration
impl Unpin for DeltaTimeSessionWindowConfiguration
impl UnwindSafe for DeltaTimeSessionWindowConfiguration
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more