Class: Aws::ConfigService::Types::EvaluationStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::EvaluationStatus
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-configservice/types.rb
Overview
Returns status details of an evaluation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failure_reason ⇒ String
An explanation for failed execution status.
-
#status ⇒ String
The status of an execution.
Instance Attribute Details
#failure_reason ⇒ String
An explanation for failed execution status.
3686 3687 3688 3689 3690 3691 |
# File 'lib/aws-sdk-configservice/types.rb', line 3686 class EvaluationStatus < Struct.new( :status, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of an execution. The valid values are In_Progress, Succeeded or Failed.
3686 3687 3688 3689 3690 3691 |
# File 'lib/aws-sdk-configservice/types.rb', line 3686 class EvaluationStatus < Struct.new( :status, :failure_reason) SENSITIVE = [] include Aws::Structure end |