Module Values.WorkflowVersionSource

Contains details about this version of the workflow.

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

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

    *)
  2. name : ResourceName.t option;
    (*

    The name of the workflow.

    *)
  3. version : VersionNumber.t option;
    (*

    The semantic version of the workflow resource. The format includes three nodes: <major>.<minor>.<patch>.

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

    Describes the workflow.

    *)
  5. type_ : WorkflowType.t option;
    (*

    The image creation stage that this workflow applies to. Image Builder currently supports build and test stage workflows.

    *)
  6. owner : NonEmptyString.t option;
    (*

    The owner of the workflow resource.

    *)
  7. dateCreated : DateTime.t option;
    (*

    The timestamp when Image Builder created the workflow version.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?version:??? -> ?description:??? -> ?type_:??? -> ?owner:??? -> ?dateCreated:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of WorkflowVersionArn.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