Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BlueprintRun

import type { BlueprintRun } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

The details of a blueprint run.

interface BlueprintRun {
BlueprintName?: string | null;
CompletedOn?: Date | number | null;
ErrorMessage?: string | null;
Parameters?: string | null;
RoleArn?: string | null;
RollbackErrorMessage?: string | null;
RunId?: string | null;
StartedOn?: Date | number | null;
State?: BlueprintRunState | null;
WorkflowName?: string | null;
}

§Properties

§
BlueprintName?: string | null
[src]

The name of the blueprint.

§
CompletedOn?: Date | number | null
[src]

The date and time that the blueprint run completed.

§
ErrorMessage?: string | null
[src]

Indicates any errors that are seen while running the blueprint.

§
Parameters?: string | null
[src]

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?: string | null
[src]

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.

§
RollbackErrorMessage?: string | null
[src]

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.

§
RunId?: string | null
[src]

The run ID for this blueprint run.

§
StartedOn?: Date | number | null
[src]

The date and time that the blueprint run started.

§
State?: BlueprintRunState | null
[src]

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.
§
WorkflowName?: string | null
[src]

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.