interface S3FilesConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lambda.CfnFunction.S3FilesConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslambda#CfnFunction_S3FilesConfigProperty |
Java | software.amazon.awscdk.services.lambda.CfnFunction.S3FilesConfigProperty |
Python | aws_cdk.aws_lambda.CfnFunction.S3FilesConfigProperty |
TypeScript | aws-cdk-lib » aws_lambda » CfnFunction » S3FilesConfigProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as lambda } from 'aws-cdk-lib';
const s3FilesConfigProperty: lambda.CfnFunction.S3FilesConfigProperty = {
directS3Read: 'directS3Read',
};
Properties
| Name | Type | Description |
|---|---|---|
| direct | string | Specifies if a function reads from the file system for the lowest latency, or through Amazon S3 Files feature "direct Amazon S3 bucket reads" for the highest throughput. |
directS3Read?
Type:
string
(optional)
Specifies if a function reads from the file system for the lowest latency, or through Amazon S3 Files feature "direct Amazon S3 bucket reads" for the highest throughput.

.NET
Go
Java
Python
TypeScript