Interface AWSAPICallViaCloudTrail.Timeseries
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AWSAPICallViaCloudTrail.Timeseries.Jsii$Proxy
- Enclosing class:
AWSAPICallViaCloudTrail
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.iotanalytics.events.*;
Timeseries timeseries = Timeseries.builder()
.dimensionAttributes(List.of(TimeseriesItem.builder()
.attribute(List.of("attribute"))
.name(List.of("name"))
.build()))
.measureAttributes(List.of(TimeseriesItem.builder()
.attribute(List.of("attribute"))
.name(List.of("name"))
.build()))
.timestampAttribute(List.of("timestampAttribute"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAWSAPICallViaCloudTrail.Timeseriesstatic final classAn implementation forAWSAPICallViaCloudTrail.Timeseries -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) dimensionAttributes property.(experimental) measureAttributes property.(experimental) timestampAttribute property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDimensionAttributes
@Stability(Experimental) @Nullable default List<AWSAPICallViaCloudTrail.TimeseriesItem> getDimensionAttributes()(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getMeasureAttributes
@Stability(Experimental) @Nullable default List<AWSAPICallViaCloudTrail.TimeseriesItem> getMeasureAttributes()(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getTimestampAttribute
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-