Module Values.TelemetryPipelineSummarySource

Contains summary information about a telemetry pipeline for listing operations.

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. status : TelemetryPipelineStatus.t option;
    (*

    The current status of the telemetry pipeline.

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

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

    *)
  7. configurationSummary : ConfigurationSummary.t option;
    (*

    A summary of the pipeline configuration components.

    *)
}
Sourceval make : ?createdTimeStamp:??? -> ?lastUpdateTimeStamp:??? -> ?arn:??? -> ?name:??? -> ?status:??? -> ?tags:??? -> ?configurationSummary:??? -> 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 * [> `Integer of Integer.t | `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list ]) 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