Module Values.FlowVersionSummarySource

Contains information about a version of a flow. This data type is used in the following API operations: ListFlowVersions response

Sourcetype nonrec t = {
  1. id : FlowId.t option;
    (*

    The unique identifier of the flow.

    *)
  2. arn : FlowArn.t option;
    (*

    The Amazon Resource Name (ARN) of the flow that the version belongs to.

    *)
  3. status : FlowStatus.t option;
    (*

    The status of the flow.

    *)
  4. createdAt : DateTimestamp.t option;
    (*

    The time at the version was created.

    *)
  5. version : NumericalVersion.t option;
    (*

    The version of the flow.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?status:??? -> ?createdAt:??? -> ?version:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FlowId.t | `Timestamp of DateTimestamp.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