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.
653 654 655 656 657 658 659 660 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 653 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.
653 654 655 656 657 658 659 660 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 653 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.
653 654 655 656 657 658 659 660 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 653 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.
653 654 655 656 657 658 659 660 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 653 class CanaryRunConfigOutput < Struct.new( :timeout_in_seconds, :memory_in_mb, :active_tracing, :ephemeral_storage) SENSITIVE = [] include Aws::Structure end |