interface DataDestinationConfigProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.IoTFleetWise.CfnCampaign.DataDestinationConfigProperty |
![]() | software.amazon.awscdk.services.iotfleetwise.CfnCampaign.DataDestinationConfigProperty |
![]() | aws_cdk.aws_iotfleetwise.CfnCampaign.DataDestinationConfigProperty |
![]() | @aws-cdk/aws-iotfleetwise » CfnCampaign » DataDestinationConfigProperty |
The destination where the AWS IoT FleetWise campaign sends data.
You can send data to be stored in Amazon S3 or Amazon Timestream .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotfleetwise from '@aws-cdk/aws-iotfleetwise';
const dataDestinationConfigProperty: iotfleetwise.CfnCampaign.DataDestinationConfigProperty = {
s3Config: {
bucketArn: 'bucketArn',
// the properties below are optional
dataFormat: 'dataFormat',
prefix: 'prefix',
storageCompressionFormat: 'storageCompressionFormat',
},
timestreamConfig: {
executionRoleArn: 'executionRoleArn',
timestreamTableArn: 'timestreamTableArn',
},
};
Properties
Name | Type | Description |
---|---|---|
s3 | IResolvable | S3 | (Optional) The Amazon S3 bucket where the AWS IoT FleetWise campaign sends data. |
timestream | IResolvable | Timestream | (Optional) The Amazon Timestream table where the campaign sends data. |
s3Config?
Type:
IResolvable
|
S3
(optional)
(Optional) The Amazon S3 bucket where the AWS IoT FleetWise campaign sends data.
timestreamConfig?
Type:
IResolvable
|
Timestream
(optional)
(Optional) The Amazon Timestream table where the campaign sends data.