Class: Aws::AppTest::Types::ResourceType
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::ResourceType
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-apptest/types.rb
Overview
ResourceType is a union - when making an API calls you must set exactly one of the members.
ResourceType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResourceType corresponding to the set member.
Specifies the resource type.
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::CloudFormation
The CloudFormation template of the resource type.
-
#m2_managed_application ⇒ Types::M2ManagedApplication
The AWS Mainframe Modernization managed application of the resource type.
-
#m2_non_managed_application ⇒ Types::M2NonManagedApplication
The AWS Mainframe Modernization non-managed application of the resource type.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#cloud_formation ⇒ Types::CloudFormation
The CloudFormation template of the resource type.
2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 |
# File 'lib/aws-sdk-apptest/types.rb', line 2220 class ResourceType < Struct.new( :cloud_formation, :m2_managed_application, :m2_non_managed_application, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CloudFormation < ResourceType; end class M2ManagedApplication < ResourceType; end class M2NonManagedApplication < ResourceType; end class Unknown < ResourceType; end end |
#m2_managed_application ⇒ Types::M2ManagedApplication
The AWS Mainframe Modernization managed application of the resource type.
2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 |
# File 'lib/aws-sdk-apptest/types.rb', line 2220 class ResourceType < Struct.new( :cloud_formation, :m2_managed_application, :m2_non_managed_application, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CloudFormation < ResourceType; end class M2ManagedApplication < ResourceType; end class M2NonManagedApplication < ResourceType; end class Unknown < ResourceType; end end |
#m2_non_managed_application ⇒ Types::M2NonManagedApplication
The AWS Mainframe Modernization non-managed application of the resource type.
2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 |
# File 'lib/aws-sdk-apptest/types.rb', line 2220 class ResourceType < Struct.new( :cloud_formation, :m2_managed_application, :m2_non_managed_application, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CloudFormation < ResourceType; end class M2ManagedApplication < ResourceType; end class M2NonManagedApplication < ResourceType; end class Unknown < ResourceType; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2220 2221 2222 |
# File 'lib/aws-sdk-apptest/types.rb', line 2220 def unknown @unknown end |