Values.CreateTelemetryPipelineInputSourceCreates a telemetry pipeline for processing and transforming telemetry data. The pipeline defines how data flows from sources through processors to destinations, enabling data transformation and delivering capabilities.
type nonrec t = {name : TelemetryPipelineName.t;The name of the telemetry pipeline to create. The name must be unique within your account.
*)configuration : TelemetryPipelineConfiguration.t;The configuration that defines how the telemetry pipeline processes data, including sources, processors, and destinations. For more information about pipeline components, see the Amazon CloudWatch User Guide
*)}val make :
?tags:??? ->
name:TelemetryPipelineName.t ->
configuration:TelemetryPipelineConfiguration.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of TelemetryPipelineName.t
| `Structure of
(string * [> `String of TelemetryPipelineConfigurationBody.t ])
list ])
list ]