Get Blueprint Run
| glue_get_blueprint_run | R Documentation | 
Retrieves the details of a blueprint run¶
Description¶
Retrieves the details of a blueprint run.
Usage¶
glue_get_blueprint_run(BlueprintName, RunId)
Arguments¶
BlueprintName | 
[required] The name of the blueprint.  | 
RunId | 
[required] The run ID for the blueprint run you want to retrieve.  | 
Value¶
A list with the following syntax:
list(
  BlueprintRun = list(
    BlueprintName = "string",
    RunId = "string",
    WorkflowName = "string",
    State = "RUNNING"|"SUCCEEDED"|"FAILED"|"ROLLING_BACK",
    StartedOn = as.POSIXct(
      "2015-01-01"
    ),
    CompletedOn = as.POSIXct(
      "2015-01-01"
    ),
    ErrorMessage = "string",
    RollbackErrorMessage = "string",
    Parameters = "string",
    RoleArn = "string"
  )
)
Request syntax¶
svc$get_blueprint_run(
  BlueprintName = "string",
  RunId = "string"
)