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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCampaign.DataDestinationConfigProperty
static final class
An implementation forCfnCampaign.DataDestinationConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Config
(Optional) The Amazon S3 bucket where the AWS IoT FleetWise campaign sends data. -
getTimestreamConfig
(Optional) The Amazon Timestream table where the campaign sends data. -
builder
-