Class: Aws::AppTest::Types::CloudFormationStepSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::CloudFormationStepSummary
- Includes:
- Structure, Structure::Union
- Defined in:
- 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.
Direct Known Subclasses
Defined Under Namespace
Classes: CreateCloudformation, DeleteCloudformation, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#create_cloudformation ⇒ Types::CreateCloudFormationSummary
Creates the CloudFormation summary of the step.
-
#delete_cloudformation ⇒ Types::DeleteCloudFormationSummary
Deletes the CloudFormation summary of the CloudFormation step summary.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#create_cloudformation ⇒ Types::CreateCloudFormationSummary
Creates the CloudFormation summary of the step.
182 183 184 185 186 187 188 189 190 191 192 193 |
# File '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_cloudformation ⇒ Types::DeleteCloudFormationSummary
Deletes the CloudFormation summary of the CloudFormation step summary.
182 183 184 185 186 187 188 189 190 191 192 193 |
# File '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 |
#unknown ⇒ Object
Returns the value of attribute unknown
182 183 184 |
# File 'lib/aws-sdk-apptest/types.rb', line 182 def unknown @unknown end |