Class: Aws::AppTest::Types::ResourceActionSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::ResourceActionSummary
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-apptest/types.rb
Overview
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.
Direct Known Subclasses
CloudFormation, M2ManagedApplication, M2NonManagedApplication, Unknown
Defined Under Namespace
Classes: CloudFormation, M2ManagedApplication, M2NonManagedApplication, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cloud_formation ⇒ Types::CloudFormationStepSummary
The CloudFormation template of the resource action summary.
-
#m2_managed_application ⇒ Types::M2ManagedApplicationStepSummary
The AWS Mainframe Modernization managed application of the resource action summary.
-
#m2_non_managed_application ⇒ Types::M2NonManagedApplicationStepSummary
The AWS Mainframe Modernization non-managed application of the resource action summary.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#cloud_formation ⇒ Types::CloudFormationStepSummary
The CloudFormation template of the resource action summary.
2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 |
# File '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_application ⇒ Types::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 '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_application ⇒ Types::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 '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 |
#unknown ⇒ Object
Returns the value of attribute unknown
2160 2161 2162 |
# File 'lib/aws-sdk-apptest/types.rb', line 2160 def unknown @unknown end |