Class: Aws::AppTest::Types::StepAction

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb

Overview

Note:

StepAction is a union - when making an API calls you must set exactly one of the members.

Note:

StepAction is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of StepAction corresponding to the set member.

Specifies a step action.

Defined Under Namespace

Classes: CompareAction, MainframeAction, ResourceAction, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#compare_actionTypes::CompareAction

The compare action of the step action.



2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 2431

class StepAction < Struct.new(
  :resource_action,
  :mainframe_action,
  :compare_action,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ResourceAction < StepAction; end
  class MainframeAction < StepAction; end
  class CompareAction < StepAction; end
  class Unknown < StepAction; end
end

#mainframe_actionTypes::MainframeAction

The mainframe action of the step action.



2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 2431

class StepAction < Struct.new(
  :resource_action,
  :mainframe_action,
  :compare_action,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ResourceAction < StepAction; end
  class MainframeAction < StepAction; end
  class CompareAction < StepAction; end
  class Unknown < StepAction; end
end

#resource_actionTypes::ResourceAction

The resource action of the step action.



2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 2431

class StepAction < Struct.new(
  :resource_action,
  :mainframe_action,
  :compare_action,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ResourceAction < StepAction; end
  class MainframeAction < StepAction; end
  class CompareAction < StepAction; end
  class Unknown < StepAction; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2431
2432
2433
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 2431

def unknown
  @unknown
end