public static interface CfnDataset.DeltaTimeSessionWindowConfigurationProperty
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 .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iotanalytics.*; DeltaTimeSessionWindowConfigurationProperty deltaTimeSessionWindowConfigurationProperty = DeltaTimeSessionWindowConfigurationProperty.builder() .timeoutInMinutes(123) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataset.DeltaTimeSessionWindowConfigurationProperty.Builder
A builder for
CfnDataset.DeltaTimeSessionWindowConfigurationProperty |
static class |
CfnDataset.DeltaTimeSessionWindowConfigurationProperty.Jsii$Proxy
An implementation for
CfnDataset.DeltaTimeSessionWindowConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataset.DeltaTimeSessionWindowConfigurationProperty.Builder |
builder() |
java.lang.Number |
getTimeoutInMinutes()
A time interval.
|
java.lang.Number getTimeoutInMinutes()
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 .