Class: Aws::AppTest::Types::MainframeActionSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::MainframeActionSummary
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-apptest/types.rb
Overview
Note:
MainframeActionSummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MainframeActionSummary corresponding to the set member.
Specifies the mainframe action summary.
Defined Under Namespace
Classes: Batch, Tn3270, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#batch ⇒ Types::BatchSummary
The batch of the mainframe action summary.
-
#tn3270 ⇒ Types::TN3270Summary
The tn3270 port of the mainframe action summary.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#batch ⇒ Types::BatchSummary
The batch of the mainframe action summary.
1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 |
# File 'lib/aws-sdk-apptest/types.rb', line 1976 class MainframeActionSummary < Struct.new( :batch, :tn3270, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Batch < MainframeActionSummary; end class Tn3270 < MainframeActionSummary; end class Unknown < MainframeActionSummary; end end |
#tn3270 ⇒ Types::TN3270Summary
The tn3270 port of the mainframe action summary.
1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 |
# File 'lib/aws-sdk-apptest/types.rb', line 1976 class MainframeActionSummary < Struct.new( :batch, :tn3270, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Batch < MainframeActionSummary; end class Tn3270 < MainframeActionSummary; end class Unknown < MainframeActionSummary; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1976 1977 1978 |
# File 'lib/aws-sdk-apptest/types.rb', line 1976 def unknown @unknown end |