interface FilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatasetPropsMixin.FilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatasetPropsMixin_FilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatasetPropsMixin.FilterProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatasetPropsMixin.FilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnDatasetPropsMixin » FilterProperty |
Information which is used to filter message data, to segregate it according to the time frame in which it arrives.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const filterProperty: iotanalytics_mixins.CfnDatasetPropsMixin.FilterProperty = {
deltaTime: {
offsetSeconds: 123,
timeExpression: 'timeExpression',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| delta | IResolvable | Delta | Used to limit data to that which has arrived since the last execution of the action. |
deltaTime?
Type:
IResolvable | Delta
(optional)
Used to limit data to that which has arrived since the last execution of the action.

.NET
Go
Java
Python
TypeScript