Class: Aws::States::Types::StopExecutionInput

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

Overview

Note:

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

{
  execution_arn: "Arn", # required
  error: "SensitiveError",
  cause: "SensitiveCause",
}

Instance Attribute Summary collapse

Instance Attribute Details

#causeString

A more detailed explanation of the cause of the failure.

Returns:

  • (String)


1607
1608
1609
1610
1611
1612
# File 'lib/aws-sdk-states/types.rb', line 1607

class StopExecutionInput < Struct.new(
  :execution_arn,
  :error,
  :cause)
  include Aws::Structure
end

#errorString

The error code of the failure.

Returns:

  • (String)


1607
1608
1609
1610
1611
1612
# File 'lib/aws-sdk-states/types.rb', line 1607

class StopExecutionInput < Struct.new(
  :execution_arn,
  :error,
  :cause)
  include Aws::Structure
end

#execution_arnString

The Amazon Resource Name (ARN) of the execution to stop.

Returns:

  • (String)


1607
1608
1609
1610
1611
1612
# File 'lib/aws-sdk-states/types.rb', line 1607

class StopExecutionInput < Struct.new(
  :execution_arn,
  :error,
  :cause)
  include Aws::Structure
end