AWSTemplateFormatVersion: "2010-09-09" Transform: AWS::Serverless-2016-10-31 Description: AWS SAM template for the AWS::Timestream::Database resource type Globals: Function: Timeout: 60 # docker start-up times can be long for SAM CLI MemorySize: 8192 # uncomment if you run into OutOfMemoryError Resources: TypeFunction: Type: AWS::Serverless::Function Properties: Handler: software.amazon.timestream.database.HandlerWrapper::handleRequest Runtime: java11 CodeUri: ./target/aws-timestream-database-1.0.jar TestEntrypoint: Type: AWS::Serverless::Function Properties: Handler: software.amazon.timestream.database.HandlerWrapper::testEntrypoint Runtime: java11 CodeUri: ./target/aws-timestream-database-1.0.jar