Class: Aws::Lambda::Types::Layer
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::Layer
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
An [Lambda layer].
[1]: docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the function layer.
-
#code_size ⇒ Integer
The size of the layer archive in bytes.
-
#signing_job_arn ⇒ String
The Amazon Resource Name (ARN) of a signing job.
-
#signing_profile_version_arn ⇒ String
The Amazon Resource Name (ARN) for a signing profile version.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the function layer.
3954 3955 3956 3957 3958 3959 3960 3961 |
# File 'lib/aws-sdk-lambda/types.rb', line 3954 class Layer < Struct.new( :arn, :code_size, :signing_profile_version_arn, :signing_job_arn) SENSITIVE = [] include Aws::Structure end |
#code_size ⇒ Integer
The size of the layer archive in bytes.
3954 3955 3956 3957 3958 3959 3960 3961 |
# File 'lib/aws-sdk-lambda/types.rb', line 3954 class Layer < Struct.new( :arn, :code_size, :signing_profile_version_arn, :signing_job_arn) SENSITIVE = [] include Aws::Structure end |
#signing_job_arn ⇒ String
The Amazon Resource Name (ARN) of a signing job.
3954 3955 3956 3957 3958 3959 3960 3961 |
# File 'lib/aws-sdk-lambda/types.rb', line 3954 class Layer < Struct.new( :arn, :code_size, :signing_profile_version_arn, :signing_job_arn) SENSITIVE = [] include Aws::Structure end |
#signing_profile_version_arn ⇒ String
The Amazon Resource Name (ARN) for a signing profile version.
3954 3955 3956 3957 3958 3959 3960 3961 |
# File 'lib/aws-sdk-lambda/types.rb', line 3954 class Layer < Struct.new( :arn, :code_size, :signing_profile_version_arn, :signing_job_arn) SENSITIVE = [] include Aws::Structure end |