AWSTemplateFormatVersion: "2010-09-09" Transform: AWS::Serverless-2016-10-31 Description: AWS SAM template for the AWS::MWAA::Environment resource type Globals: Function: Timeout: 300 # docker start-up times can be long for SAM CLI. Retry delays can also be long MemorySize: 256 Resources: TypeFunction: Type: AWS::Serverless::Function Properties: Handler: software.amazon.mwaa.environment.HandlerWrapper::handleRequest Runtime: java8 CodeUri: ./target/aws-mwaa-environment-1.0.jar TestEntrypoint: Type: AWS::Serverless::Function Properties: Handler: software.amazon.mwaa.environment.HandlerWrapper::testEntrypoint Runtime: java8 CodeUri: ./target/aws-mwaa-environment-1.0.jar