Module Values.TelemetryPipelineSource

Represents a complete telemetry pipeline resource with configuration, status, and metadata for data processing and transformation.

Sourcetype nonrec t = {
  1. createdTimeStamp : Long.t option;
    (*

    The timestamp when the telemetry pipeline was created.

    *)
  2. lastUpdateTimeStamp : Long.t option;
    (*

    The timestamp when the telemetry pipeline was last updated.

    *)
  3. arn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the telemetry pipeline.

    *)
  4. name : TelemetryPipelineName.t option;
    (*

    The name of the telemetry pipeline.

    *)
  5. configuration : TelemetryPipelineConfiguration.t option;
    (*

    The configuration that defines how the telemetry pipeline processes data.

    *)
  6. status : TelemetryPipelineStatus.t option;
    (*

    The current status of the telemetry pipeline.

    *)
  7. statusReason : TelemetryPipelineStatusReason.t option;
    (*

    Additional information about the pipeline status, including reasons for failure states.

    *)
  8. tags : TagMapOutput.t option;
    (*

    The key-value pairs associated with the telemetry pipeline resource.

    *)
}
Sourceval make : ?createdTimeStamp:??? -> ?lastUpdateTimeStamp:??? -> ?arn:??? -> ?name:??? -> ?configuration:??? -> ?status:??? -> ?statusReason:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of ResourceArn.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