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.
4061 4062 4063 4064 4065 4066 4067 4068 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4061 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.
4061 4062 4063 4064 4065 4066 4067 4068 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4061 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.
4061 4062 4063 4064 4065 4066 4067 4068 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4061 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.
4061 4062 4063 4064 4065 4066 4067 4068 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4061 class LayerVersionContentInput < Struct.new( :s3_bucket, :s3_key, :s3_object_version, :zip_file) SENSITIVE = [:zip_file] include Aws::Structure end |