Class: Aws::Connect::Types::ObservationSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::ObservationSummary
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Contains summary statistics about a test case execution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#observations_failed ⇒ Integer
The number of observations that failed during execution.
-
#observations_passed ⇒ Integer
The number of observations that passed during execution.
-
#total_observations ⇒ Integer
The total number of observations in the test case.
Instance Attribute Details
#observations_failed ⇒ Integer
The number of observations that failed during execution.
23668 23669 23670 23671 23672 23673 23674 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 23668 class ObservationSummary < Struct.new( :total_observations, :observations_passed, :observations_failed) SENSITIVE = [] include Aws::Structure end |
#observations_passed ⇒ Integer
The number of observations that passed during execution.
23668 23669 23670 23671 23672 23673 23674 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 23668 class ObservationSummary < Struct.new( :total_observations, :observations_passed, :observations_failed) SENSITIVE = [] include Aws::Structure end |
#total_observations ⇒ Integer
The total number of observations in the test case.
23668 23669 23670 23671 23672 23673 23674 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 23668 class ObservationSummary < Struct.new( :total_observations, :observations_passed, :observations_failed) SENSITIVE = [] include Aws::Structure end |