Class: Aws::Lambda::Types::LayerVersionContentInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Lambda::Types::LayerVersionContentInput
 
 
- Defined in:
 - gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
 
Overview
A ZIP archive that contains the contents of an Lambda layer. You can specify either an Amazon S3 location, or upload a layer archive directly.
Constant Summary collapse
- SENSITIVE =
 [:zip_file]
Instance Attribute Summary collapse
- 
  
    
      #s3_bucket  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon S3 bucket of the layer archive.
 - 
  
    
      #s3_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon S3 key of the layer archive.
 - 
  
    
      #s3_object_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
For versioned objects, the version of the layer archive object to use.
 - 
  
    
      #zip_file  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The base64-encoded contents of the layer archive.
 
Instance Attribute Details
#s3_bucket ⇒ String
The Amazon S3 bucket of the layer archive.
      4237 4238 4239 4240 4241 4242 4243 4244  | 
    
      # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4237 class LayerVersionContentInput < Struct.new( :s3_bucket, :s3_key, :s3_object_version, :zip_file) SENSITIVE = [:zip_file] include Aws::Structure end  | 
  
#s3_key ⇒ String
The Amazon S3 key of the layer archive.
      4237 4238 4239 4240 4241 4242 4243 4244  | 
    
      # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4237 class LayerVersionContentInput < Struct.new( :s3_bucket, :s3_key, :s3_object_version, :zip_file) SENSITIVE = [:zip_file] include Aws::Structure end  | 
  
#s3_object_version ⇒ String
For versioned objects, the version of the layer archive object to use.
      4237 4238 4239 4240 4241 4242 4243 4244  | 
    
      # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4237 class LayerVersionContentInput < Struct.new( :s3_bucket, :s3_key, :s3_object_version, :zip_file) SENSITIVE = [:zip_file] include Aws::Structure end  | 
  
#zip_file ⇒ String
The base64-encoded contents of the layer archive. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for you.
      4237 4238 4239 4240 4241 4242 4243 4244  | 
    
      # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4237 class LayerVersionContentInput < Struct.new( :s3_bucket, :s3_key, :s3_object_version, :zip_file) SENSITIVE = [:zip_file] include Aws::Structure end  |