Values.FlowSummarySourceContains the definition of a flow.
type nonrec t = {name : FlowName.t option;The name of the flow.
*)description : FlowDescription.t option;A description of the flow.
*)id : FlowId.t option;The unique identifier of the flow.
*)arn : FlowArn.t option;The Amazon Resource Name (ARN) of the flow.
*)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.
*)createdAt : DateTimestamp.t option;The time at which the flow was created.
*)updatedAt : DateTimestamp.t option;The time at which the flow was last updated.
*)version : DraftVersion.t option;The latest version of the flow.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of FlowName.t
| `Timestamp of DateTimestamp.t ])
list ]