Class: Aws::Glue::Types::ResumeWorkflowRunRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Note:

When making an API call, you may pass ResumeWorkflowRunRequest data as a hash:

{
  name: "NameString", # required
  run_id: "IdString", # required
  node_ids: ["NameString"], # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the workflow to resume.

Returns:

  • (String)


12975
12976
12977
12978
12979
12980
12981
# File 'lib/aws-sdk-glue/types.rb', line 12975

class ResumeWorkflowRunRequest < Struct.new(
  :name,
  :run_id,
  :node_ids)
  SENSITIVE = []
  include Aws::Structure
end

#node_idsArray<String>

A list of the node IDs for the nodes you want to restart. The nodes that are to be restarted must have a run attempt in the original run.

Returns:

  • (Array<String>)


12975
12976
12977
12978
12979
12980
12981
# File 'lib/aws-sdk-glue/types.rb', line 12975

class ResumeWorkflowRunRequest < Struct.new(
  :name,
  :run_id,
  :node_ids)
  SENSITIVE = []
  include Aws::Structure
end

#run_idString

The ID of the workflow run to resume.

Returns:

  • (String)


12975
12976
12977
12978
12979
12980
12981
# File 'lib/aws-sdk-glue/types.rb', line 12975

class ResumeWorkflowRunRequest < Struct.new(
  :name,
  :run_id,
  :node_ids)
  SENSITIVE = []
  include Aws::Structure
end