AWS Lambda Create a Lambda Function with CloudFromation: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 19: Line 19:
     Type: "AWS::Lambda::Function"
     Type: "AWS::Lambda::Function"
     Properties:  
     Properties:  
      [[AWS_Lambda_Concepts#Function_Name|FunctionName]]: String
      Description: String
       Code:
       Code:
         Code
         Code
      DeadLetterConfig:
        DeadLetterConfig
      Description: String
       Environment:
       Environment:
         Environment
         Environment
       FunctionName: String
       Runtime: String
      VpcConfig:
        VPCConfig
      MemorySize: Integer
      Role: String
      Timeout: Integer
       Handler: String
       Handler: String
      ReservedConcurrentExecutions: Integer
      DeadLetterConfig:
        DeadLetterConfig
       KmsKeyArn: String
       KmsKeyArn: String
       Layers:  
       Layers:
         - String
         - String
      MemorySize: Integer
      ReservedConcurrentExecutions: Integer
      Role: String
      Runtime: String
      Timeout: Integer
       TracingConfig:
       TracingConfig:
         TracingConfig
         TracingConfig
      VpcConfig:
       Tags:
        VPCConfig
       Tags:  
         Resource Tag
         Resource Tag


=Create a Java Lambda=
=Create a Java Lambda=
=Create a bash Lambda=
=Create a bash Lambda=

Revision as of 19:01, 4 April 2019

External

Internal

Resource Types

AWS::Lambda::Function

AWS::Lambda::Function
CreateFunction
Resources:
  LambdaExample:
    Type: "AWS::Lambda::Function"
    Properties: 
      FunctionName: String
      Description: String
      Code:
        Code
      Environment:
        Environment
      Runtime: String
      VpcConfig:
        VPCConfig
      MemorySize: Integer
      Role: String
      Timeout: Integer
      Handler: String
      ReservedConcurrentExecutions: Integer
      DeadLetterConfig:
        DeadLetterConfig
      KmsKeyArn: String
      Layers:
        - String
      TracingConfig:
        TracingConfig
      Tags:
        Resource Tag

Create a Java Lambda

Create a bash Lambda