interface TimestreamConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnCampaignPropsMixin.TimestreamConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnCampaignPropsMixin_TimestreamConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnCampaignPropsMixin.TimestreamConfigProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnCampaignPropsMixin.TimestreamConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnCampaignPropsMixin » TimestreamConfigProperty |
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 { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const timestreamConfigProperty: iotfleetwise_mixins.CfnCampaignPropsMixin.TimestreamConfigProperty = {
executionRoleArn: 'executionRoleArn',
timestreamTableArn: 'timestreamTableArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| execution | string | The Amazon Resource Name (ARN) of the task execution role that grants AWS IoT FleetWise permission to deliver data to the Amazon Timestream table. |
| timestream | string | The Amazon Resource Name (ARN) of the Amazon Timestream table. |
executionRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the task execution role that grants AWS IoT FleetWise permission to deliver data to the Amazon Timestream table.
timestreamTableArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Amazon Timestream table.

.NET
Go
Java
Python
TypeScript