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

#dependenciesArray<Types::Dependency>

A list of dependencies that are used for running this canary. The dependencies are specified as a key-value pair, where the key is the type of dependency and the value is the dependency reference.

Returns:



399
400
401
402
403
404
405
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 399

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

#handlerString

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

Returns:

  • (String)


399
400
401
402
403
404
405
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 399

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

#source_location_arnString

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

Returns:

  • (String)


399
400
401
402
403
404
405
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 399

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