Module Values.EventStreamSummarySource

An instance of EventStream in a list of EventStreams.

Sourcetype nonrec t = {
  1. domainName : Name.t option;
    (*

    The unique name of the domain.

    *)
  2. eventStreamName : Name.t option;
    (*

    The name of the event stream.

    *)
  3. eventStreamArn : String1To255.t option;
    (*

    A unique identifier for the event stream.

    *)
  4. state : EventStreamState.t option;
    (*

    The operational state of destination stream for export.

    *)
  5. stoppedSince : Timestamp.t option;
    (*

    The timestamp when the State changed to STOPPED.

    *)
  6. destinationSummary : DestinationSummary.t option;
    (*

    Summary information about the Kinesis data stream.

    *)
  7. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
}
Sourceval make : ?domainName:??? -> ?eventStreamName:??? -> ?eventStreamArn:??? -> ?state:??? -> ?stoppedSince:??? -> ?destinationSummary:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.t | `Structure of (string * [> `Enum of string | `String of String1To255.t | `Timestamp of Timestamp.t ]) list | `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