Module Values.SendWorkflowStepActionRequestSource

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

Sourcetype nonrec t = {
  1. stepExecutionId : WorkflowStepExecutionId.t;
    (*

    Uniquely identifies the workflow step that sent the step action.

    *)
  2. imageBuildVersionArn : ImageBuildVersionArn.t;
    (*

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

    *)
  3. action : WorkflowStepActionType.t;
    (*

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

    *)
  4. reason : NonEmptyString.t option;
    (*

    The reason why this action is sent.

    *)
  5. clientToken : ClientToken.t;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : ?reason:??? -> stepExecutionId:WorkflowStepExecutionId.t -> imageBuildVersionArn:ImageBuildVersionArn.t -> action:WorkflowStepActionType.t -> clientToken:ClientToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of WorkflowStepExecutionId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t