interface S3FilesConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lambda.CfnFunctionPropsMixin.S3FilesConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslambda#CfnFunctionPropsMixin_S3FilesConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lambda.CfnFunctionPropsMixin.S3FilesConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_lambda.CfnFunctionPropsMixin.S3FilesConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lambda » CfnFunctionPropsMixin » 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/cfn-property-mixins';
const s3FilesConfigProperty: lambda.CfnFunctionPropsMixin.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