Class: Aws::Synthetics::Types::Dependency
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::Dependency
- Defined in:
- gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb
Overview
A structure that contains information about a dependency for a canary.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reference ⇒ String
The dependency reference.
-
#type ⇒ String
The type of dependency.
Instance Attribute Details
#reference ⇒ String
The dependency reference. For Lambda layers, this is the ARN of the Lambda layer. For more information about Lambda ARN format, see Lambda.
1143 1144 1145 1146 1147 1148 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1143 class Dependency < Struct.new( :type, :reference) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of dependency. Valid value is LambdaLayer
.
1143 1144 1145 1146 1147 1148 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1143 class Dependency < Struct.new( :type, :reference) SENSITIVE = [] include Aws::Structure end |