Values_0.BlueprintRunSourceThe details of a blueprint run.
type nonrec t = {blueprintName : OrchestrationNameString.t option;The name of the blueprint.
*)runId : IdString.t option;The run ID for this blueprint run.
*)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.
*)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.
*)startedOn : TimestampValue.t option;The date and time that the blueprint run started.
*)completedOn : TimestampValue.t option;The date and time that the blueprint run completed.
*)errorMessage : MessageString.t option;Indicates any errors that are seen while running the blueprint.
*)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.
*)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.
*)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.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of OrchestrationNameString.t
| `Timestamp of TimestampValue.t ])
list ]