Class: Aws::AppTest::Types::MainframeResourceSummary

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-apptest/types.rb

Overview

Note:

MainframeResourceSummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MainframeResourceSummary corresponding to the set member.

Specifies the mainframe resource summary.

Defined Under Namespace

Classes: M2ManagedApplication, M2NonManagedApplication, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#m2_managed_applicationTypes::M2ManagedApplicationSummary

The AWS Mainframe Modernization managed application in the mainframe resource summary.



2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
# File 'lib/aws-sdk-apptest/types.rb', line 2034

class MainframeResourceSummary < Struct.new(
  :m2_managed_application,
  :m2_non_managed_application,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class M2ManagedApplication < MainframeResourceSummary; end
  class M2NonManagedApplication < MainframeResourceSummary; end
  class Unknown < MainframeResourceSummary; end
end

#m2_non_managed_applicationTypes::M2NonManagedApplicationSummary

The AWS Mainframe Modernization non-managed application in the mainframe resource summary.



2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
# File 'lib/aws-sdk-apptest/types.rb', line 2034

class MainframeResourceSummary < Struct.new(
  :m2_managed_application,
  :m2_non_managed_application,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class M2ManagedApplication < MainframeResourceSummary; end
  class M2NonManagedApplication < MainframeResourceSummary; end
  class Unknown < MainframeResourceSummary; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2034
2035
2036
# File 'lib/aws-sdk-apptest/types.rb', line 2034

def unknown
  @unknown
end