AWS-Lambda

 view release on metacpan or  search on metacpan

author/perl-stripper/template.yaml  view on Meta::CPAN

AWSTemplateFormatVersion: "2010-09-09"
Transform: AWS::Serverless-2016-10-31
Description: perl-strip

Resources:
  PerlStripper:
    Type: AWS::Serverless::Function
    Metadata:
      BuildMethod: makefile
    Properties:
      Description: Perl Stripper API
      CodeUri: ./perl-stripper/
      Handler: handler.handle
      Runtime: provided.al2
      Architectures: [arm64]
      Timeout: 120
      # https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console
      MemorySize: 1769 # -> 1 vCPU
      Layers:
        - arn:aws:lambda:ap-northeast-1:445285296882:layer:perl-5-38-runtime-al2-arm64:3
      FunctionUrlConfig:
        AuthType: NONE

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 7.662 seconds using v1.00-cache-2.02-grep-82fe00e-cpan-72ae3ad1e6da )