Class: Aws::Glue::Types::StopWorkflowRunRequest

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 StopWorkflowRunRequest data as a hash:

{
  name: "NameString", # required
  run_id: "IdString", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the workflow to stop.

Returns:

  • (String)


14168
14169
14170
14171
14172
14173
# File 'lib/aws-sdk-glue/types.rb', line 14168

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

#run_idString

The ID of the workflow run to stop.

Returns:

  • (String)


14168
14169
14170
14171
14172
14173
# File 'lib/aws-sdk-glue/types.rb', line 14168

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