Class: Aws::Synthetics::Types::CanaryRunTimeline

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb

Overview

This structure contains the start and end times of a single canary run.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#completedTime

The end time of the run.

Returns:

  • (Time)


508
509
510
511
512
513
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 508

class CanaryRunTimeline < Struct.new(
  :started,
  :completed)
  SENSITIVE = []
  include Aws::Structure
end

#startedTime

The start time of the run.

Returns:

  • (Time)


508
509
510
511
512
513
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 508

class CanaryRunTimeline < Struct.new(
  :started,
  :completed)
  SENSITIVE = []
  include Aws::Structure
end