Module Values_0.BlueprintRunSource

The details of a blueprint run.

Sourcetype nonrec t = {
  1. blueprintName : OrchestrationNameString.t option;
    (*

    The name of the blueprint.

    *)
  2. runId : IdString.t option;
    (*

    The run ID for this blueprint run.

    *)
  3. workflowName : NameString.t option;
    (*

    The name of a workflow that is created as a result of a successful blueprint run. If a blueprint run has an error, there will not be a workflow created.

    *)
  4. state : BlueprintRunState.t option;
    (*

    The state of the blueprint run. Possible values are: Running — The blueprint run is in progress. Succeeded — The blueprint run completed successfully. Failed — The blueprint run failed and rollback is complete. Rolling Back — The blueprint run failed and rollback is in progress.

    *)
  5. startedOn : TimestampValue.t option;
    (*

    The date and time that the blueprint run started.

    *)
  6. completedOn : TimestampValue.t option;
    (*

    The date and time that the blueprint run completed.

    *)
  7. errorMessage : MessageString.t option;
    (*

    Indicates any errors that are seen while running the blueprint.

    *)
  8. rollbackErrorMessage : MessageString.t option;
    (*

    If there are any errors while creating the entities of a workflow, we try to roll back the created entities until that point and delete them. This attribute indicates the errors seen while trying to delete the entities that are created.

    *)
  9. parameters : BlueprintParameters.t option;
    (*

    The blueprint parameters as a string. You will have to provide a value for each key that is required from the parameter spec that is defined in the Blueprint$ParameterSpec.

    *)
  10. roleArn : OrchestrationIAMRoleArn.t option;
    (*

    The role ARN. This role will be assumed by the Glue service and will be used to create the workflow and other entities of a workflow.

    *)
}
Sourceval make : ?blueprintName:??? -> ?runId:??? -> ?workflowName:??? -> ?state:??? -> ?startedOn:??? -> ?completedOn:??? -> ?errorMessage:??? -> ?rollbackErrorMessage:??? -> ?parameters:??? -> ?roleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of OrchestrationNameString.t | `Timestamp of TimestampValue.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