Get Blueprint Runs
glue_get_blueprint_runs | R Documentation |
Retrieves the details of blueprint runs for a specified blueprint¶
Description¶
Retrieves the details of blueprint runs for a specified blueprint.
Usage¶
glue_get_blueprint_runs(BlueprintName, NextToken, MaxResults)
Arguments¶
BlueprintName |
[required] The name of the blueprint. |
NextToken |
A continuation token, if this is a continuation request. |
MaxResults |
The maximum size of a list to return. |
Value¶
A list with the following syntax:
list(
BlueprintRuns = list(
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"
)
),
NextToken = "string"
)
Request syntax¶
svc$get_blueprint_runs(
BlueprintName = "string",
NextToken = "string",
MaxResults = 123
)