Class: Aws::Synthetics::Types::CanaryLastRun
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::CanaryLastRun
- Defined in:
- gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb
Overview
This structure contains information about the most recent run of a single canary.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#canary_name ⇒ String
The name of the canary.
-
#last_run ⇒ Types::CanaryRun
The results from this canary's most recent run.
Instance Attribute Details
#canary_name ⇒ String
The name of the canary.
371 372 373 374 375 376 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 371 class CanaryLastRun < Struct.new( :canary_name, :last_run) SENSITIVE = [] include Aws::Structure end |
#last_run ⇒ Types::CanaryRun
The results from this canary's most recent run.
371 372 373 374 375 376 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 371 class CanaryLastRun < Struct.new( :canary_name, :last_run) SENSITIVE = [] include Aws::Structure end |