Module Values.FlowSummarySource

Contains the definition of a flow.

Sourcetype nonrec t = {
  1. name : FlowName.t option;
    (*

    The name of the flow.

    *)
  2. description : FlowDescription.t option;
    (*

    A description of the flow.

    *)
  3. id : FlowId.t option;
    (*

    The unique identifier of the flow.

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

    The Amazon Resource Name (ARN) of the flow.

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

    The status of the flow. The following statuses are possible: NotPrepared – The flow has been created or updated, but hasn't been prepared. If you just created the flow, you can't test it. If you updated the flow, the DRAFT version won't contain the latest changes for testing. Send a PrepareFlow request to package the latest changes into the DRAFT version. Preparing – The flow is being prepared so that the DRAFT version contains the latest changes for testing. Prepared – The flow is prepared and the DRAFT version contains the latest changes for testing. Failed – The last API operation that you invoked on the flow failed. Send a GetFlow request and check the error message in the validations field.

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

    The time at which the flow was created.

    *)
  7. updatedAt : DateTimestamp.t option;
    (*

    The time at which the flow was last updated.

    *)
  8. version : DraftVersion.t option;
    (*

    The latest version of the flow.

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