Interface CfnCampaign.IDataDestinationConfigProperty
The destination where the AWS IoT FleetWise campaign sends data.
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDataDestinationConfigProperty
Syntax (vb)
Public Interface IDataDestinationConfigProperty
Remarks
You can send data to be stored in Amazon S3 or Amazon Timestream .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTFleetWise;
var dataDestinationConfigProperty = new DataDestinationConfigProperty {
MqttTopicConfig = new MqttTopicConfigProperty {
ExecutionRoleArn = "executionRoleArn",
MqttTopicArn = "mqttTopicArn"
},
S3Config = new S3ConfigProperty {
BucketArn = "bucketArn",
// the properties below are optional
DataFormat = "dataFormat",
Prefix = "prefix",
StorageCompressionFormat = "storageCompressionFormat"
},
TimestreamConfig = new TimestreamConfigProperty {
ExecutionRoleArn = "executionRoleArn",
TimestreamTableArn = "timestreamTableArn"
}
};
Synopsis
Properties
Mqtt |
The MQTT topic to which the AWS IoT FleetWise campaign routes data. |
S3Config | The Amazon S3 bucket where the AWS IoT FleetWise campaign sends data. |
Timestream |
The Amazon Timestream table where the campaign sends data. |
Properties
MqttTopicConfig
The MQTT topic to which the AWS IoT FleetWise campaign routes data.
virtual object MqttTopicConfig { get; }
Property Value
System.
Remarks
Access to certain AWS IoT FleetWise features is currently gated. For more information, see AWS Region and feature availability in the AWS IoT FleetWise Developer Guide .
S3Config
The Amazon S3 bucket where the AWS IoT FleetWise campaign sends data.
virtual object S3Config { get; }
Property Value
System.
Remarks
TimestreamConfig
The Amazon Timestream table where the campaign sends data.
virtual object TimestreamConfig { get; }
Property Value
System.