Class: Aws::Glue::Types::CancelMLTaskRunRequest

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

{
  transform_id: "HashString", # required
  task_run_id: "HashString", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#task_run_idString

A unique identifier for the task run.

Returns:

  • (String)


1121
1122
1123
1124
1125
1126
# File 'lib/aws-sdk-glue/types.rb', line 1121

class CancelMLTaskRunRequest < Struct.new(
  :transform_id,
  :task_run_id)
  SENSITIVE = []
  include Aws::Structure
end

#transform_idString

The unique identifier of the machine learning transform.

Returns:

  • (String)


1121
1122
1123
1124
1125
1126
# File 'lib/aws-sdk-glue/types.rb', line 1121

class CancelMLTaskRunRequest < Struct.new(
  :transform_id,
  :task_run_id)
  SENSITIVE = []
  include Aws::Structure
end