You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing LayerVersionContentInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  s3_bucket: "S3Bucket",
  s3_key: "S3Key",
  s3_object_version: "S3ObjectVersion",
  zip_file: "data",
}

A ZIP archive that contains the contents of an AWS Lambda layer. You can specify either an Amazon S3 location, or upload a layer archive directly.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#s3_bucketString

The Amazon S3 bucket of the layer archive.

Returns:

  • (String)

    The Amazon S3 bucket of the layer archive.

#s3_keyString

The Amazon S3 key of the layer archive.

Returns:

  • (String)

    The Amazon S3 key of the layer archive.

#s3_object_versionString

For versioned objects, the version of the layer archive object to use.

Returns:

  • (String)

    For versioned objects, the version of the layer archive object to use.

#zip_fileString

The base64-encoded contents of the layer archive. AWS SDK and AWS CLI clients handle the encoding for you.

Returns:

  • (String)

    The base64-encoded contents of the layer archive.