Class: Aws::Synthetics::Types::CanaryCodeOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::CanaryCodeOutput
- Includes:
- Aws::Structure
- Defined in:
- 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
-
#handler ⇒ String
The entry point to use for the source code when running the canary.
-
#source_location_arn ⇒ String
The ARN of the Lambda layer where Synthetics stores the canary script code.
Instance Attribute Details
#handler ⇒ String
The entry point to use for the source code when running the canary.
351 352 353 354 355 356 |
# File 'lib/aws-sdk-synthetics/types.rb', line 351 class CanaryCodeOutput < Struct.new( :source_location_arn, :handler) SENSITIVE = [] include Aws::Structure end |
#source_location_arn ⇒ String
The ARN of the Lambda layer where Synthetics stores the canary script code.
351 352 353 354 355 356 |
# File 'lib/aws-sdk-synthetics/types.rb', line 351 class CanaryCodeOutput < Struct.new( :source_location_arn, :handler) SENSITIVE = [] include Aws::Structure end |