Method: Aws::AppTest::Types#cloud_formation

Defined in:
lib/aws-sdk-apptest/types.rb,
lib/aws-sdk-apptest/types.rb

#cloud_formationTypes::CloudFormation

The CloudFormation template of the resource type.



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