Skip to content

Send Workflow Step Action

imagebuilder_send_workflow_step_action R Documentation

Pauses or resumes image creation when the associated workflow runs a WaitForAction step

Description

Pauses or resumes image creation when the associated workflow runs a WaitForAction step.

Usage

imagebuilder_send_workflow_step_action(stepExecutionId,
  imageBuildVersionArn, action, reason, clientToken)

Arguments

stepExecutionId

[required] Uniquely identifies the workflow step that sent the step action.

imageBuildVersionArn

[required] The Amazon Resource Name (ARN) of the image build version to send action for.

action

[required] The action for the image creation process to take while a workflow WaitForAction step waits for an asynchronous action to complete.

reason

The reason why this action is sent.

clientToken

[required] Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring idempotency in the Amazon EC2 API Reference.

Value

A list with the following syntax:

list(
  stepExecutionId = "string",
  imageBuildVersionArn = "string",
  clientToken = "string"
)

Request syntax

svc$send_workflow_step_action(
  stepExecutionId = "string",
  imageBuildVersionArn = "string",
  action = "RESUME"|"STOP",
  reason = "string",
  clientToken = "string"
)