Class: Aws::CloudFormation::Types::TemplateProgress
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::TemplateProgress
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
A summary of the progress of the template generation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resources_failed ⇒ Integer
The number of resources that failed the template generation.
-
#resources_pending ⇒ Integer
The number of resources that are still pending the template generation.
-
#resources_processing ⇒ Integer
The number of resources that are in-process for the template generation.
-
#resources_succeeded ⇒ Integer
The number of resources that succeeded the template generation.
Instance Attribute Details
#resources_failed ⇒ Integer
The number of resources that failed the template generation.
10031 10032 10033 10034 10035 10036 10037 10038 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 10031 class TemplateProgress < Struct.new( :resources_succeeded, :resources_failed, :resources_processing, :resources_pending) SENSITIVE = [] include Aws::Structure end |
#resources_pending ⇒ Integer
The number of resources that are still pending the template generation.
10031 10032 10033 10034 10035 10036 10037 10038 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 10031 class TemplateProgress < Struct.new( :resources_succeeded, :resources_failed, :resources_processing, :resources_pending) SENSITIVE = [] include Aws::Structure end |
#resources_processing ⇒ Integer
The number of resources that are in-process for the template generation.
10031 10032 10033 10034 10035 10036 10037 10038 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 10031 class TemplateProgress < Struct.new( :resources_succeeded, :resources_failed, :resources_processing, :resources_pending) SENSITIVE = [] include Aws::Structure end |
#resources_succeeded ⇒ Integer
The number of resources that succeeded the template generation.
10031 10032 10033 10034 10035 10036 10037 10038 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 10031 class TemplateProgress < Struct.new( :resources_succeeded, :resources_failed, :resources_processing, :resources_pending) SENSITIVE = [] include Aws::Structure end |