s3
Fetches S3 stored configuration and parses out JSON.
Install
To install this middleware you can use NPM:
- npm
- Yarn
npm install --save @middy/s3
npm install --save-dev @aws-sdk/client-s3
yarn add @middy/s3
yarn add --dev @aws-sdk/client-s3
Options
AwsClient
(object) (defaultS3Client
): S3Client class constructor (i.e. that has been instrumented with AWS XRay). Must be from@aws-sdk/client-appconfig
.awsClientOptions
(object) (defaultundefined
): Options to pass to S3Client class constructor.awsClientAssumeRole
(string) (defaultundefined
): Internal key where secrets are stored. See @middy/sts on to set this.awsClientCapture
(function) (defaultundefined
): Enable XRay by passingcaptureAWSv3Client
fromaws-xray-sdk
in.fetchData
(object) (required): Mapping of internal key name to API request parameters.disablePrefetch
(boolean) (defaultfalse
): On cold start requests will trigger early if they can. SettingawsClientAssumeRole
disables prefetch.cacheKey
(string) (defaults3
): Cache key for the fetched data responses. Must be unique across all middleware.cacheExpiry
(number) (default-1
): How long fetch data responses should be cached for.-1
: cache forever,0
: never cache,n
: cache for n ms.setToContext
(boolean) (defaultfalse
): Store credentials torequest.context
.
NOTES:
- Lambda is required to have IAM permission for
s3:GetObject
- If the file is stored without
ContentType
, you can set it on the response usingResponseContentType
as part of the input
Sample usage
import middy from '@middy/core'
import appConfig from '@middy/s3'
const handler = middy((event, context) => {
const response = {
statusCode: 200,
headers: {},
body: JSON.stringify({ message: 'hello world' })
}
return response
})
handler.use(
s3({
fetchData: {
config: {
Bucket: '...',
Key: '...'
}
}
})
)
Bundling
To exclude @aws-sdk
add @aws-sdk/client-s3
to the exclude list.