Interface CfnCampaign.TimestreamConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCampaign.TimestreamConfigProperty.Jsii$Proxy
Enclosing class:
CfnCampaign

@Stability(Stable) public static interface CfnCampaign.TimestreamConfigProperty extends software.amazon.jsii.JsiiSerializable
The Amazon Timestream table where the AWS IoT FleetWise campaign sends data.

Timestream stores and organizes data to optimize query processing time and to reduce storage costs. For more information, see Data modeling in the Amazon Timestream Developer 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.iotfleetwise.*;
 TimestreamConfigProperty timestreamConfigProperty = TimestreamConfigProperty.builder()
         .executionRoleArn("executionRoleArn")
         .timestreamTableArn("timestreamTableArn")
         .build();
 

See Also: