Module Values.DataDestinationConfigSource

The destination where the campaign sends data. You can send data to an MQTT topic, or store it in Amazon S3 or Amazon Timestream.

Sourcetype nonrec t = {
  1. s3Config : S3Config.t option;
    (*

    The Amazon S3 bucket where the Amazon Web Services IoT FleetWise campaign sends data.

    *)
  2. timestreamConfig : TimestreamConfig.t option;
    (*

    The Amazon Timestream table where the campaign sends data.

    *)
  3. mqttTopicConfig : MqttTopicConfig.t option;
    (*

    The MQTT topic to which the Amazon Web Services IoT FleetWise campaign routes data. Access to certain Amazon Web Services IoT FleetWise features is currently gated. For more information, see Amazon Web Services Region and feature availability in the Amazon Web Services IoT FleetWise Developer Guide.

    *)
}
Sourceval make : ?s3Config:??? -> ?timestreamConfig:??? -> ?mqttTopicConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of S3BucketArn.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t