List Workflow Executions
imagebuilder_list_workflow_executions | R Documentation |
Returns a list of workflow runtime instance metadata objects for a specific image build version¶
Description¶
Returns a list of workflow runtime instance metadata objects for a specific image build version.
Usage¶
Arguments¶
maxResults
The maximum items to return in a request.
nextToken
A token to specify where to start paginating. This is the nextToken from a previously truncated response.
imageBuildVersionArn
[required] List all workflow runtime instances for the specified image build version resource ARN.
Value¶
A list with the following syntax:
list(
requestId = "string",
workflowExecutions = list(
list(
workflowBuildVersionArn = "string",
workflowExecutionId = "string",
type = "BUILD"|"TEST"|"DISTRIBUTION",
status = "PENDING"|"SKIPPED"|"RUNNING"|"COMPLETED"|"FAILED"|"ROLLBACK_IN_PROGRESS"|"ROLLBACK_COMPLETED"|"CANCELLED",
message = "string",
totalStepCount = 123,
totalStepsSucceeded = 123,
totalStepsFailed = 123,
totalStepsSkipped = 123,
startTime = "string",
endTime = "string",
parallelGroup = "string"
)
),
imageBuildVersionArn = "string",
message = "string",
nextToken = "string"
)