Class: Aws::Synthetics::Types::CanaryRun

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

Overview

This structure contains the details about one run of one canary.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#artifact_s3_locationString

The location where the canary stored artifacts from the run. Artifacts include the log file, screenshots, and HAR files.

Returns:

  • (String)


370
371
372
373
374
375
376
377
378
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 370

class CanaryRun < Struct.new(
  :id,
  :name,
  :status,
  :timeline,
  :artifact_s3_location)
  SENSITIVE = []
  include Aws::Structure
end

#idString

A unique ID that identifies this canary run.

Returns:

  • (String)


370
371
372
373
374
375
376
377
378
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 370

class CanaryRun < Struct.new(
  :id,
  :name,
  :status,
  :timeline,
  :artifact_s3_location)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the canary.

Returns:

  • (String)


370
371
372
373
374
375
376
377
378
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 370

class CanaryRun < Struct.new(
  :id,
  :name,
  :status,
  :timeline,
  :artifact_s3_location)
  SENSITIVE = []
  include Aws::Structure
end

#statusTypes::CanaryRunStatus

The status of this run.



370
371
372
373
374
375
376
377
378
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 370

class CanaryRun < Struct.new(
  :id,
  :name,
  :status,
  :timeline,
  :artifact_s3_location)
  SENSITIVE = []
  include Aws::Structure
end

#timelineTypes::CanaryRunTimeline

A structure that contains the start and end times of this run.



370
371
372
373
374
375
376
377
378
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 370

class CanaryRun < Struct.new(
  :id,
  :name,
  :status,
  :timeline,
  :artifact_s3_location)
  SENSITIVE = []
  include Aws::Structure
end