Module Values_2.FlowSummarySource

The basic information of the flow exluding its definition specifying the steps.

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

    The Amazon Resource Name (ARN) of the flow.

    *)
  2. flowId : FlowId.t option;
    (*

    The unique identifier of the flow.

    *)
  3. name : Title.t option;
    (*

    The display name of the flow.

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

    The description of the flow.

    *)
  5. createdTime : Values_0.Timestamp.t option;
    (*

    The time this flow was created.

    *)
  6. createdBy : Values_0.String_.t option;
    (*

    The identifier of the principal who created the flow.

    *)
  7. lastUpdatedTime : Values_0.Timestamp.t option;
    (*

    The last time this flow was modified.

    *)
  8. lastUpdatedBy : Values_0.String_.t option;
    (*

    The identifier of the last principal who updated the flow.

    *)
  9. publishState : FlowPublishState.t option;
    (*

    The publish state for the flow. The valid values are DRAFT, PUBLISHED, or PENDING_APPROVAL.

    *)
  10. runCount : Values_0.Integer.t option;
    (*

    The number of runs done for the flow.

    *)
  11. userCount : Values_0.Integer.t option;
    (*

    The number of users who have used the flow.

    *)
  12. lastPublishedBy : Values_0.String_.t option;
    (*

    The identifier of the last principal who published the flow.

    *)
  13. lastPublishedAt : Values_0.Timestamp.t option;
    (*

    The last time this flow was published.

    *)
}
Sourceval make : ?arn:??? -> ?flowId:??? -> ?name:??? -> ?description:??? -> ?createdTime:??? -> ?createdBy:??? -> ?lastUpdatedTime:??? -> ?lastUpdatedBy:??? -> ?publishState:??? -> ?runCount:??? -> ?userCount:??? -> ?lastPublishedBy:??? -> ?lastPublishedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Integer.t | `String of Values_0.String_.t | `Timestamp of Values_0.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