Module Values.MetricStreamEntrySource

This structure contains the configuration information about one metric stream.

Sourcetype nonrec t = {
  1. arn : AmazonResourceName.t option;
    (*

    The ARN of the metric stream.

    *)
  2. creationDate : Timestamp.t option;
    (*

    The date that the metric stream was originally created.

    *)
  3. lastUpdateDate : Timestamp.t option;
    (*

    The date that the configuration of this metric stream was most recently updated.

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

    The name of the metric stream.

    *)
  5. firehoseArn : AmazonResourceName.t option;
    (*

    The ARN of the Kinesis Firehose devlivery stream that is used for this metric stream.

    *)
  6. state : MetricStreamState.t option;
    (*

    The current state of this stream. Valid values are running and stopped.

    *)
  7. outputFormat : MetricStreamOutputFormat.t option;
    (*

    The output format of this metric stream. Valid values are json, opentelemetry1.0, and opentelemetry0.7.

    *)
}
Sourceval make : ?arn:??? -> ?creationDate:??? -> ?lastUpdateDate:??? -> ?name:??? -> ?firehoseArn:??? -> ?state:??? -> ?outputFormat:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AmazonResourceName.t | `Timestamp of Timestamp.t ]) 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