interface Timeseries
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Events.AWSAPICallViaCloudTrail.Timeseries |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/events#AWSAPICallViaCloudTrail_Timeseries |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.events.AWSAPICallViaCloudTrail.Timeseries |
Python | aws_cdk.mixins_preview.aws_iotanalytics.events.AWSAPICallViaCloudTrail.Timeseries |
TypeScript | @aws-cdk/mixins-preview ยป aws_iotanalytics ยป events ยป AWSAPICallViaCloudTrail ยป Timeseries |
Type definition for Timeseries.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as iotanalytics_events } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const timeseries: iotanalytics_events.AWSAPICallViaCloudTrail.Timeseries = {
dimensionAttributes: [{
attribute: ['attribute'],
name: ['name'],
}],
measureAttributes: [{
attribute: ['attribute'],
name: ['name'],
}],
timestampAttribute: ['timestampAttribute'],
};
Properties
| Name | Type | Description |
|---|---|---|
| dimension | Timeseries[] | dimensionAttributes property. |
| measure | Timeseries[] | measureAttributes property. |
| timestamp | string[] | timestampAttribute property. |
dimensionAttributes?
Type:
Timeseries[]
(optional, default: Do not filter on this field)
dimensionAttributes property.
Specify an array of string values to match this event if the actual value of dimensionAttributes is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
measureAttributes?
Type:
Timeseries[]
(optional, default: Do not filter on this field)
measureAttributes property.
Specify an array of string values to match this event if the actual value of measureAttributes is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
timestampAttribute?
Type:
string[]
(optional, default: Do not filter on this field)
timestampAttribute property.
Specify an array of string values to match this event if the actual value of timestampAttribute is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript