AWSTemplateFormatVersion: "2010-09-09" Transform: AWS::Serverless-2016-10-31 Description: AWS SAM template for the AWS::Redshift::ClusterSubnetGroup resource type Globals: Function: Timeout: 240 # docker start-up times can be long for SAM CLI Resources: TypeFunction: Type: AWS::Serverless::Function Properties: Handler: software.amazon.redshift.clustersubnetgroup.HandlerWrapper::handleRequest Runtime: java8 MemorySize: 256 CodeUri: ./target/aws-redshift-clustersubnetgroup-handler-1.0-SNAPSHOT.jar TestEntrypoint: Type: AWS::Serverless::Function Properties: Handler: software.amazon.redshift.clustersubnetgroup.HandlerWrapper::testEntrypoint Runtime: java8 MemorySize: 256 CodeUri: ./target/aws-redshift-clustersubnetgroup-handler-1.0-SNAPSHOT.jar