Module Values.CreateTelemetryPipelineInputSource

Creates 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.

Sourcetype nonrec t = {
  1. name : TelemetryPipelineName.t;
    (*

    The name of the telemetry pipeline to create. The name must be unique within your account.

    *)
  2. 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

    *)
  3. tags : TagMapInput.t option;
    (*

    The key-value pairs to associate with the telemetry pipeline resource for categorization and management purposes.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> name:TelemetryPipelineName.t -> configuration:TelemetryPipelineConfiguration.t -> unit -> t
Sourceval 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 ]
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