Class: Aws::AppTest::Types::MainframeActionType
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::MainframeActionType
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-apptest/types.rb
Overview
Note:
MainframeActionType is a union - when making an API calls you must set exactly one of the members.
Note:
MainframeActionType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MainframeActionType corresponding to the set member.
Specifies the mainframe action type.
Defined Under Namespace
Classes: Batch, Tn3270, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#batch ⇒ Types::Batch
The batch of the mainframe action type.
-
#tn3270 ⇒ Types::TN3270
The tn3270 port of the mainframe action type.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#batch ⇒ Types::Batch
The batch of the mainframe action type.
2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 |
# File 'lib/aws-sdk-apptest/types.rb', line 2005 class MainframeActionType < Struct.new( :batch, :tn3270, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Batch < MainframeActionType; end class Tn3270 < MainframeActionType; end class Unknown < MainframeActionType; end end |
#tn3270 ⇒ Types::TN3270
The tn3270 port of the mainframe action type.
2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 |
# File 'lib/aws-sdk-apptest/types.rb', line 2005 class MainframeActionType < Struct.new( :batch, :tn3270, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Batch < MainframeActionType; end class Tn3270 < MainframeActionType; end class Unknown < MainframeActionType; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2005 2006 2007 |
# File 'lib/aws-sdk-apptest/types.rb', line 2005 def unknown @unknown end |