This is a serverless component that takes uploaded CSV files from one S3 Bucket, converts them to Microsoft Excel XLSX and uploads to another S3 Bucket. It contains:
-
an Input S3 Bucket that accepts files.
-
a Lambda that takes the CSV file from the Input S3 bucket, converts it to a Microsoft Excel XLSX and uploads it to the Output one
-
an Output S3 Bucket that receives files.
This component has one CloudFormation deployment parameter:
-
ConversionTimeout
, an optional parameter, represents the timeout of the Conversion Lambda function. By default its 60 seconds. -
InputBucketName
, an optional parameter, represents the name of the Input CSV Bucket. By default its "s3-lambda-csv-input-s3-bucket". -
OutputBucketName
, an optional parameter, represents the name of the Output CSV Bucket. By default its "s3-lambda-csv-output-s3-bucket".
- Added Input and Output bucket names as Cloudformation Parameters
Here are the upcoming changes that I'll add to this serverless component:
- ESLint
- Tests