Class: Aws::Lambda::Types::LayerVersionContentOutput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Lambda::Types::LayerVersionContentOutput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lambda/types.rb
 
Overview
Details about a version of an [Lambda layer].
[1]: docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #code_sha_256  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The SHA-256 hash of the layer archive.
 - 
  
    
      #code_size  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The size of the layer archive in bytes.
 - 
  
    
      #location  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A link to the layer archive in Amazon S3 that is valid for 10 minutes.
 - 
  
    
      #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
#code_sha_256 ⇒ String
The SHA-256 hash of the layer archive.
      4038 4039 4040 4041 4042 4043 4044 4045 4046  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 4038 class LayerVersionContentOutput < Struct.new( :location, :code_sha_256, :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.
      4038 4039 4040 4041 4042 4043 4044 4045 4046  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 4038 class LayerVersionContentOutput < Struct.new( :location, :code_sha_256, :code_size, :signing_profile_version_arn, :signing_job_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#location ⇒ String
A link to the layer archive in Amazon S3 that is valid for 10 minutes.
      4038 4039 4040 4041 4042 4043 4044 4045 4046  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 4038 class LayerVersionContentOutput < Struct.new( :location, :code_sha_256, :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.
      4038 4039 4040 4041 4042 4043 4044 4045 4046  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 4038 class LayerVersionContentOutput < Struct.new( :location, :code_sha_256, :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.
      4038 4039 4040 4041 4042 4043 4044 4045 4046  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 4038 class LayerVersionContentOutput < Struct.new( :location, :code_sha_256, :code_size, :signing_profile_version_arn, :signing_job_arn) SENSITIVE = [] include Aws::Structure end  |