Struct aws_sdk_iotanalytics::model::DeltaTime
source · [−]#[non_exhaustive]pub struct DeltaTime { /* private fields */ }Expand description
Used to limit data to that which has arrived since the last execution of the action.
Implementations
sourceimpl DeltaTime
impl DeltaTime
sourcepub fn offset_seconds(&self) -> Option<i32>
pub fn offset_seconds(&self) -> Option<i32>
The number of seconds of estimated in-flight lag time of message data. When you create dataset contents using message data from a specified timeframe, some message data might still be in flight when processing begins, and so do not arrive in time to be processed. Use this field to make allowances for the in flight time of your message data, so that data not processed from a previous timeframe is included with the next timeframe. Otherwise, missed message data would be excluded from processing during the next timeframe too, because its timestamp places it within the previous timeframe.
sourcepub fn time_expression(&self) -> Option<&str>
pub fn time_expression(&self) -> Option<&str>
An expression by which the time of the message data might be determined. This can be the name of a timestamp field or a SQL expression that is used to derive the time the message data was generated.
Trait Implementations
impl StructuralPartialEq for DeltaTime
Auto Trait Implementations
impl RefUnwindSafe for DeltaTime
impl Send for DeltaTime
impl Sync for DeltaTime
impl Unpin for DeltaTime
impl UnwindSafe for DeltaTime
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more