Class: Aws::Synthetics::Types::Dependency

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 dependency for a canary.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#referenceString

The dependency reference. For Lambda layers, this is the ARN of the Lambda layer. For more information about Lambda ARN format, see Lambda.

Returns:

  • (String)


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

#typeString

The type of dependency. Valid value is LambdaLayer.

Returns:

  • (String)


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