LayerVersionContentInput — AWS SDK for Ruby V3 (original) (raw)

Class: Aws::Lambda::Types::LayerVersionContentInput

Inherits:

Struct

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 Summarycollapse

SENSITIVE =

[:zip_file]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_bucket ⇒ String

The Amazon S3 bucket of the layer archive.

4136 4137 4138 4139 4140 4141 4142 4143 # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4136 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.

4136 4137 4138 4139 4140 4141 4142 4143 # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4136 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.

4136 4137 4138 4139 4140 4141 4142 4143 # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4136 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.

4136 4137 4138 4139 4140 4141 4142 4143 # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4136 class LayerVersionContentInput < Struct.new( :s3_bucket, :s3_key, :s3_object_version, :zip_file) SENSITIVE = [:zip_file] include Aws::Structure end