Class: Aws::Synthetics::Types::CanaryRunStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::CanaryRunStatus
- Defined in:
- gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb
Overview
This structure contains the status information about a canary run.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#state ⇒ String
The current state of the run.
-
#state_reason ⇒ String
If run of the canary failed, this field contains the reason for the error.
-
#state_reason_code ⇒ String
If this value is
CANARY_FAILURE
, an exception occurred in the canary code.
Instance Attribute Details
#state ⇒ String
The current state of the run.
520 521 522 523 524 525 526 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 520 class CanaryRunStatus < Struct.new( :state, :state_reason, :state_reason_code) SENSITIVE = [] include Aws::Structure end |
#state_reason ⇒ String
If run of the canary failed, this field contains the reason for the error.
520 521 522 523 524 525 526 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 520 class CanaryRunStatus < Struct.new( :state, :state_reason, :state_reason_code) SENSITIVE = [] include Aws::Structure end |
#state_reason_code ⇒ String
If this value is CANARY_FAILURE
, an exception occurred in the
canary code. If this value is EXECUTION_FAILURE
, an exception
occurred in CloudWatch Synthetics.
520 521 522 523 524 525 526 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 520 class CanaryRunStatus < Struct.new( :state, :state_reason, :state_reason_code) SENSITIVE = [] include Aws::Structure end |