Class: Aws::Synthetics::Types::CanaryRunConfigOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::CanaryRunConfigOutput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-synthetics/types.rb
Overview
A structure that contains information about a canary run.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#active_tracing ⇒ Boolean
Displays whether this canary run used active X-Ray tracing.
-
#memory_in_mb ⇒ Integer
The maximum amount of memory available to the canary while it is running, in MB.
-
#timeout_in_seconds ⇒ Integer
How long the canary is allowed to run before it must stop.
Instance Attribute Details
#active_tracing ⇒ Boolean
Displays whether this canary run used active X-Ray tracing.
493 494 495 496 497 498 499 |
# File 'lib/aws-sdk-synthetics/types.rb', line 493 class CanaryRunConfigOutput < Struct.new( :timeout_in_seconds, :memory_in_mb, :active_tracing) SENSITIVE = [] include Aws::Structure end |
#memory_in_mb ⇒ Integer
The maximum amount of memory available to the canary while it is running, in MB. This value must be a multiple of 64.
493 494 495 496 497 498 499 |
# File 'lib/aws-sdk-synthetics/types.rb', line 493 class CanaryRunConfigOutput < Struct.new( :timeout_in_seconds, :memory_in_mb, :active_tracing) SENSITIVE = [] include Aws::Structure end |
#timeout_in_seconds ⇒ Integer
How long the canary is allowed to run before it must stop.
493 494 495 496 497 498 499 |
# File 'lib/aws-sdk-synthetics/types.rb', line 493 class CanaryRunConfigOutput < Struct.new( :timeout_in_seconds, :memory_in_mb, :active_tracing) SENSITIVE = [] include Aws::Structure end |