Class: Aws::AppTest::Types::StepRunSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::StepRunSummary
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-apptest/types.rb
Overview
Note:
StepRunSummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of StepRunSummary corresponding to the set member.
Defines the step run summary.
Direct Known Subclasses
Defined Under Namespace
Classes: CompareAction, MainframeAction, ResourceAction, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compare_action ⇒ Types::CompareActionSummary
The compare action of the step run summary.
-
#mainframe_action ⇒ Types::MainframeActionSummary
The mainframe action of the step run summary.
-
#resource_action ⇒ Types::ResourceActionSummary
The resource action of the step run summary.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#compare_action ⇒ Types::CompareActionSummary
The compare action of the step run summary.
2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 |
# File 'lib/aws-sdk-apptest/types.rb', line 2464 class StepRunSummary < Struct.new( :mainframe_action, :compare_action, :resource_action, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class MainframeAction < StepRunSummary; end class CompareAction < StepRunSummary; end class ResourceAction < StepRunSummary; end class Unknown < StepRunSummary; end end |
#mainframe_action ⇒ Types::MainframeActionSummary
The mainframe action of the step run summary.
2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 |
# File 'lib/aws-sdk-apptest/types.rb', line 2464 class StepRunSummary < Struct.new( :mainframe_action, :compare_action, :resource_action, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class MainframeAction < StepRunSummary; end class CompareAction < StepRunSummary; end class ResourceAction < StepRunSummary; end class Unknown < StepRunSummary; end end |
#resource_action ⇒ Types::ResourceActionSummary
The resource action of the step run summary.
2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 |
# File 'lib/aws-sdk-apptest/types.rb', line 2464 class StepRunSummary < Struct.new( :mainframe_action, :compare_action, :resource_action, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class MainframeAction < StepRunSummary; end class CompareAction < StepRunSummary; end class ResourceAction < StepRunSummary; end class Unknown < StepRunSummary; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2464 2465 2466 |
# File 'lib/aws-sdk-apptest/types.rb', line 2464 def unknown @unknown end |