Module Values.WorkflowConfigurationSource

Contains control settings and configurable inputs for a workflow resource.

Sourcetype nonrec t = {
  1. workflowArn : WorkflowVersionArnOrBuildVersionArn.t;
    (*

    The Amazon Resource Name (ARN) of the workflow resource.

    *)
  2. parameters : WorkflowParameterList.t option;
    (*

    Contains parameter values for each of the parameters that the workflow document defined for the workflow resource.

    *)
  3. parallelGroup : ParallelGroup.t option;
    (*

    Test workflows are defined within named runtime groups called parallel groups. The parallel group is the named group that contains this test workflow. Test workflows within a parallel group can run at the same time. Image Builder starts up to five test workflows in the group at the same time, and starts additional workflows as others complete, until all workflows in the group have completed. This field only applies for test workflows.

    *)
  4. onFailure : OnWorkflowFailure.t option;
    (*

    The action to take if the workflow fails.

    *)
}
Sourceval context_ : string
Sourceval make : ?parameters:??? -> ?parallelGroup:??? -> ?onFailure:??? -> workflowArn:WorkflowVersionArnOrBuildVersionArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `String of WorkflowParameterValue.t ] list | `String of WorkflowParameterName.t ]) list ] list | `String of WorkflowVersionArnOrBuildVersionArn.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