Class: Aws::Lambda::Types::LayerVersionContentOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lambda/types.rb

Overview

Details about a version of an [AWS Lambda layer].

[1]: docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html

Instance Attribute Summary collapse

Instance Attribute Details

#code_sha_256String

The SHA-256 hash of the layer archive.

Returns:

  • (String)


1740
1741
1742
1743
1744
1745
# File 'lib/aws-sdk-lambda/types.rb', line 1740

class LayerVersionContentOutput < Struct.new(
  :location,
  :code_sha_256,
  :code_size)
  include Aws::Structure
end

#code_sizeInteger

The size of the layer archive in bytes.

Returns:

  • (Integer)


1740
1741
1742
1743
1744
1745
# File 'lib/aws-sdk-lambda/types.rb', line 1740

class LayerVersionContentOutput < Struct.new(
  :location,
  :code_sha_256,
  :code_size)
  include Aws::Structure
end

#locationString

A link to the layer archive in Amazon S3 that is valid for 10 minutes.

Returns:

  • (String)


1740
1741
1742
1743
1744
1745
# File 'lib/aws-sdk-lambda/types.rb', line 1740

class LayerVersionContentOutput < Struct.new(
  :location,
  :code_sha_256,
  :code_size)
  include Aws::Structure
end