Class: Aws::Synthetics::Types::CanaryLastRun

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#canary_nameString

The name of the canary.

Returns:

  • (String)


338
339
340
341
342
343
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 338

class CanaryLastRun < Struct.new(
  :canary_name,
  :last_run)
  SENSITIVE = []
  include Aws::Structure
end

#last_runTypes::CanaryRun

The results from this canary's most recent run.

Returns:



338
339
340
341
342
343
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 338

class CanaryLastRun < Struct.new(
  :canary_name,
  :last_run)
  SENSITIVE = []
  include Aws::Structure
end