interface BucketOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lambda.BucketOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslambda#BucketOptions |
Java | software.amazon.awscdk.services.lambda.BucketOptions |
Python | aws_cdk.aws_lambda.BucketOptions |
TypeScript (source) | aws-cdk-lib » aws_lambda » BucketOptions |
Optional parameters for creating code using bucket.
Example
import { Key } from 'aws-cdk-lib/aws-kms';
import * as s3 from 'aws-cdk-lib/aws-s3';
const bucket = new s3.Bucket(this, 'Bucket');
declare const key: Key;
const options = {
sourceKMSKey: key,
};
const fnBucket = new lambda.Function(this, 'myFunction2', {
runtime: lambda.Runtime.NODEJS_LATEST,
handler: 'index.handler',
code: lambda.Code.fromBucketV2(bucket, 'python-lambda-handler.zip', options),
});
Properties
| Name | Type | Description |
|---|---|---|
| object | string | Optional S3 object version. |
| source | IKey | The ARN of the KMS key used to encrypt the handler code. |
objectVersion?
Type:
string
(optional)
Optional S3 object version.
sourceKMSKey?
Type:
IKey
(optional, default: the default server-side encryption with Amazon S3 managed keys(SSE-S3) key will be used.)
The ARN of the KMS key used to encrypt the handler code.

.NET
Go
Java
Python
TypeScript (