Class: Aws::Synthetics::Types::CanaryRunConfigOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::CanaryRunConfigOutput
- Defined in:
- gems/aws-sdk-synthetics/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.
-
#ephemeral_storage ⇒ Integer
Specifies the amount of ephemeral storage (in MB) to allocate for the canary run during execution.
-
#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.
593 594 595 596 597 598 599 600 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 593 class CanaryRunConfigOutput < Struct.new( :timeout_in_seconds, :memory_in_mb, :active_tracing, :ephemeral_storage) SENSITIVE = [] include Aws::Structure end |
#ephemeral_storage ⇒ Integer
Specifies the amount of ephemeral storage (in MB) to allocate for the canary run during execution. This temporary storage is used for storing canary run artifacts (which are uploaded to an Amazon S3 bucket at the end of the run), and any canary browser operations. This temporary storage is cleared after the run is completed. Default storage value is 1024 MB.
593 594 595 596 597 598 599 600 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 593 class CanaryRunConfigOutput < Struct.new( :timeout_in_seconds, :memory_in_mb, :active_tracing, :ephemeral_storage) 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.
593 594 595 596 597 598 599 600 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 593 class CanaryRunConfigOutput < Struct.new( :timeout_in_seconds, :memory_in_mb, :active_tracing, :ephemeral_storage) SENSITIVE = [] include Aws::Structure end |
#timeout_in_seconds ⇒ Integer
How long the canary is allowed to run before it must stop.
593 594 595 596 597 598 599 600 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 593 class CanaryRunConfigOutput < Struct.new( :timeout_in_seconds, :memory_in_mb, :active_tracing, :ephemeral_storage) SENSITIVE = [] include Aws::Structure end |