Class: Aws::AppTest::Types::MainframeActionType

Inherits:
Struct
  • Object
show all
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.

Direct Known Subclasses

Batch, Tn3270, Unknown

Defined Under Namespace

Classes: Batch, Tn3270, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#batchTypes::Batch

The batch of the mainframe action type.

Returns:



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

#tn3270Types::TN3270

The tn3270 port of the mainframe action type.

Returns:



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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2005
2006
2007
# File 'lib/aws-sdk-apptest/types.rb', line 2005

def unknown
  @unknown
end