Class: Aws::Synthetics::Types::CanaryRunConfigOutput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#active_tracingBoolean

Displays whether this canary run used active X-Ray tracing.

Returns:

  • (Boolean)


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_storageInteger

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.

Returns:

  • (Integer)


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_mbInteger

The maximum amount of memory available to the canary while it is running, in MB. This value must be a multiple of 64.

Returns:

  • (Integer)


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_secondsInteger

How long the canary is allowed to run before it must stop.

Returns:

  • (Integer)


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