Class: Aws::AppTest::Types::ResourceActionSummary

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb

Overview

Note:

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

Specifies the resource action summary.

Defined Under Namespace

Classes: CloudFormation, M2ManagedApplication, M2NonManagedApplication, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cloud_formationTypes::CloudFormationStepSummary

The CloudFormation template of the resource action summary.



2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 2160

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

  class CloudFormation < ResourceActionSummary; end
  class M2ManagedApplication < ResourceActionSummary; end
  class M2NonManagedApplication < ResourceActionSummary; end
  class Unknown < ResourceActionSummary; end
end

#m2_managed_applicationTypes::M2ManagedApplicationStepSummary

The AWS Mainframe Modernization managed application of the resource action summary.



2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 2160

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

  class CloudFormation < ResourceActionSummary; end
  class M2ManagedApplication < ResourceActionSummary; end
  class M2NonManagedApplication < ResourceActionSummary; end
  class Unknown < ResourceActionSummary; end
end

#m2_non_managed_applicationTypes::M2NonManagedApplicationStepSummary

The AWS Mainframe Modernization non-managed application of the resource action summary.



2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 2160

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

  class CloudFormation < ResourceActionSummary; end
  class M2ManagedApplication < ResourceActionSummary; end
  class M2NonManagedApplication < ResourceActionSummary; end
  class Unknown < ResourceActionSummary; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2160
2161
2162
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 2160

def unknown
  @unknown
end