Module Values_2.GetFlowMetadataOutputSource

Retrieves the metadata of a flow, not including 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;
    (*

    A display name for the flow.

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

    The description for the flow.

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

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

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

    The number of users who have used the flow.

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

    The number of runs done for the flow.

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

    The time this flow was created.

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

    The last time this flow was modified.

    *)
  10. requestId : Values_0.String_.t option;
    (*

    The Amazon Web Services request ID for this operation.

    *)
  11. status : Values_1.StatusCode.t option;
    (*

    The HTTP status of the request.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of Values_0.AccessDeniedException.t
  2. | `InternalFailureException of Values_1.InternalFailureException.t
  3. | `InvalidParameterValueException of Values_1.InvalidParameterValueException.t
  4. | `ThrottlingException of Values_1.ThrottlingException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?flowId:??? -> ?name:??? -> ?description:??? -> ?publishState:??? -> ?userCount:??? -> ?runCount:??? -> ?createdTime:??? -> ?lastUpdatedTime:??? -> ?requestId:??? -> ?status:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of Values_0.AccessDeniedException.t | `InternalFailureException of Values_1.InternalFailureException.t | `InvalidParameterValueException of Values_1.InvalidParameterValueException.t | `ThrottlingException of Values_1.ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of Values_0.AccessDeniedException.t | `InternalFailureException of Values_1.InternalFailureException.t | `InvalidParameterValueException of Values_1.InvalidParameterValueException.t | `ThrottlingException of Values_1.ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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