Class: Aws::AppTest::Types::CloudFormationStepSummary

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

Overview

Note:

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

Specifies the CloudFormation step summary.

Defined Under Namespace

Classes: CreateCloudformation, DeleteCloudformation, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#create_cloudformationTypes::CreateCloudFormationSummary

Creates the CloudFormation summary of the step.



182
183
184
185
186
187
188
189
190
191
192
193
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 182

class CloudFormationStepSummary < Struct.new(
  :create_cloudformation,
  :delete_cloudformation,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CreateCloudformation < CloudFormationStepSummary; end
  class DeleteCloudformation < CloudFormationStepSummary; end
  class Unknown < CloudFormationStepSummary; end
end

#delete_cloudformationTypes::DeleteCloudFormationSummary

Deletes the CloudFormation summary of the CloudFormation step summary.



182
183
184
185
186
187
188
189
190
191
192
193
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 182

class CloudFormationStepSummary < Struct.new(
  :create_cloudformation,
  :delete_cloudformation,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CreateCloudformation < CloudFormationStepSummary; end
  class DeleteCloudformation < CloudFormationStepSummary; end
  class Unknown < CloudFormationStepSummary; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



182
183
184
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 182

def unknown
  @unknown
end