Interface CfnCampaign.DataDestinationConfigProperty

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

@Stability(Stable) public static interface CfnCampaign.DataDestinationConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iotfleetwise.*;
 DataDestinationConfigProperty dataDestinationConfigProperty = DataDestinationConfigProperty.builder()
         .s3Config(S3ConfigProperty.builder()
                 .bucketArn("bucketArn")
                 // the properties below are optional
                 .dataFormat("dataFormat")
                 .prefix("prefix")
                 .storageCompressionFormat("storageCompressionFormat")
                 .build())
         .timestreamConfig(TimestreamConfigProperty.builder()
                 .executionRoleArn("executionRoleArn")
                 .timestreamTableArn("timestreamTableArn")
                 .build())
         .build();