Class: Aws::Synthetics::Types::CanaryRun
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::CanaryRun
- Includes:
- Aws::Structure
- Defined in:
- 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
-
#artifact_s3_location ⇒ String
The location where the canary stored artifacts from the run.
-
#id ⇒ String
A unique ID that identifies this canary run.
-
#name ⇒ String
The name of the canary.
-
#status ⇒ Types::CanaryRunStatus
The status of this run.
-
#timeline ⇒ Types::CanaryRunTimeline
A structure that contains the start and end times of this run.
Instance Attribute Details
#artifact_s3_location ⇒ String
The location where the canary stored artifacts from the run. Artifacts include the log file, screenshots, and HAR files.
403 404 405 406 407 408 409 410 411 |
# File 'lib/aws-sdk-synthetics/types.rb', line 403 class CanaryRun < Struct.new( :id, :name, :status, :timeline, :artifact_s3_location) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
A unique ID that identifies this canary run.
403 404 405 406 407 408 409 410 411 |
# File 'lib/aws-sdk-synthetics/types.rb', line 403 class CanaryRun < Struct.new( :id, :name, :status, :timeline, :artifact_s3_location) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the canary.
403 404 405 406 407 408 409 410 411 |
# File 'lib/aws-sdk-synthetics/types.rb', line 403 class CanaryRun < Struct.new( :id, :name, :status, :timeline, :artifact_s3_location) SENSITIVE = [] include Aws::Structure end |
#status ⇒ Types::CanaryRunStatus
The status of this run.
403 404 405 406 407 408 409 410 411 |
# File 'lib/aws-sdk-synthetics/types.rb', line 403 class CanaryRun < Struct.new( :id, :name, :status, :timeline, :artifact_s3_location) SENSITIVE = [] include Aws::Structure end |
#timeline ⇒ Types::CanaryRunTimeline
A structure that contains the start and end times of this run.
403 404 405 406 407 408 409 410 411 |
# File 'lib/aws-sdk-synthetics/types.rb', line 403 class CanaryRun < Struct.new( :id, :name, :status, :timeline, :artifact_s3_location) SENSITIVE = [] include Aws::Structure end |