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)


1217
1218
1219
1220
1221
1222
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1217

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

#typeString

The type of dependency. Valid value is LambdaLayer.

Returns:

  • (String)


1217
1218
1219
1220
1221
1222
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1217

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