Class: Aws::Connect::Types::ObservationSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::ObservationSummary
- Includes:
- Structure
- Defined in:
- 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.
23809 23810 23811 23812 23813 23814 23815 |
# File 'lib/aws-sdk-connect/types.rb', line 23809 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.
23809 23810 23811 23812 23813 23814 23815 |
# File 'lib/aws-sdk-connect/types.rb', line 23809 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.
23809 23810 23811 23812 23813 23814 23815 |
# File 'lib/aws-sdk-connect/types.rb', line 23809 class ObservationSummary < Struct.new( :total_observations, :observations_passed, :observations_failed) SENSITIVE = [] include Aws::Structure end |