Class: Aws::AppTest::Types::MainframeActionSummary

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apptest/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.

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::BatchSummary

The batch of the mainframe action summary.

Returns:



1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
# File 'gems/aws-sdk-apptest/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

#tn3270Types::TN3270Summary

The tn3270 port of the mainframe action summary.



1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
# File 'gems/aws-sdk-apptest/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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1976
1977
1978
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 1976

def unknown
  @unknown
end