Module Values.DescribedWorkflowSource

Describes the properties of the specified workflow

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

    Specifies the unique Amazon Resource Name (ARN) for the workflow.

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

    Specifies the text description for the workflow.

    *)
  3. steps : WorkflowSteps.t option;
    (*

    Specifies the details for the steps that are in the specified workflow.

    *)
  4. onExceptionSteps : WorkflowSteps.t option;
    (*

    Specifies the steps (actions) to take if errors are encountered during execution of the workflow.

    *)
  5. workflowId : WorkflowId.t option;
    (*

    A unique identifier for the workflow.

    *)
  6. tags : Tags.t option;
    (*

    Key-value pairs that can be used to group and search for workflows. Tags are metadata attached to workflows for any purpose.

    *)
}
Sourceval make : ?arn:??? -> ?description:??? -> ?steps:??? -> ?onExceptionSteps:??? -> ?workflowId:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of TagKey.t | `Structure of (string * [> `Enum of string | `Integer of CustomStepTimeoutSeconds.t | `List of [> `Structure of (string * [> `String of S3TagKey.t ]) list ] list | `String of WorkflowStepName.t | `Structure of (string * [> `Structure of (string * [> `String of S3Bucket.t ]) list ]) list ]) list ]) list ] list | `String of Arn.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