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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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].

[1]: docs.aws.amazon.com/lambda/latest/api/API_Layer.html

Returns:

  • (String)


1257
1258
1259
1260
1261
1262
# File 'lib/aws-sdk-synthetics/types.rb', line 1257

class Dependency < Struct.new(
  :type,
  :reference)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of dependency. Valid value is ‘LambdaLayer`.

Returns:

  • (String)


1257
1258
1259
1260
1261
1262
# File 'lib/aws-sdk-synthetics/types.rb', line 1257

class Dependency < Struct.new(
  :type,
  :reference)
  SENSITIVE = []
  include Aws::Structure
end