Class: Aws::Synthetics::Types::CanaryCodeOutput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb

Overview

This structure contains information about the canary's Lambda handler and where its code is stored by CloudWatch Synthetics.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#handlerString

The entry point to use for the source code when running the canary.

Returns:

  • (String)


318
319
320
321
322
323
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 318

class CanaryCodeOutput < Struct.new(
  :source_location_arn,
  :handler)
  SENSITIVE = []
  include Aws::Structure
end

#source_location_arnString

The ARN of the Lambda layer where Synthetics stores the canary script code.

Returns:

  • (String)


318
319
320
321
322
323
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 318

class CanaryCodeOutput < Struct.new(
  :source_location_arn,
  :handler)
  SENSITIVE = []
  include Aws::Structure
end