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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCampaign.TimestreamConfigProperty
static final class
An implementation forCfnCampaign.TimestreamConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The Amazon Resource Name (ARN) of the task execution role that grants AWS IoT FleetWise permission to deliver data to the Amazon Timestream table.The Amazon Resource Name (ARN) of the Amazon Timestream table.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExecutionRoleArn
The Amazon Resource Name (ARN) of the task execution role that grants AWS IoT FleetWise permission to deliver data to the Amazon Timestream table. -
getTimestreamTableArn
The Amazon Resource Name (ARN) of the Amazon Timestream table. -
builder
-