Layer — AWS SDK for Ruby V3 (original) (raw)
Class: Aws::Lambda::Types::Layer
Inherits:
Struct
- Object
- Struct
- Aws::Lambda::Types::Layer show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Constant Summarycollapse
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.
4098 4099 4100 4101 4102 4103 4104 4105 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4098 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.
4098 4099 4100 4101 4102 4103 4104 4105 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4098 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.
4098 4099 4100 4101 4102 4103 4104 4105 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4098 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.
4098 4099 4100 4101 4102 4103 4104 4105 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4098 class Layer < Struct.new( :arn, :code_size, :signing_profile_version_arn, :signing_job_arn) SENSITIVE = [] include Aws::Structure end |
---|