Module Values.WorkflowSummarySource

Contains metadata about the workflow resource.

Sourcetype nonrec t = {
  1. arn : WorkflowNameArn.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 version of the workflow.

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

    Describes the workflow.

    *)
  5. changeDescription : NonEmptyString.t option;
    (*

    The change description for the current version of the workflow resource.

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

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

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

    The owner of the workflow resource.

    *)
  8. state : WorkflowState.t option;
    (*

    Describes the current state of the workflow resource.

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

    The original creation date of the workflow resource.

    *)
  10. tags : TagMap.t option;
    (*

    Contains a list of tags that are defined for the workflow.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?version:??? -> ?description:??? -> ?changeDescription:??? -> ?type_:??? -> ?owner:??? -> ?state:??? -> ?dateCreated:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of WorkflowNameArn.t | `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) list ]) 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