AWS Lambda Create a Lambda Function with CloudFromation: Difference between revisions
Jump to navigation
Jump to search
Line 12: | Line 12: | ||
{{External|[https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html AWS::Lambda::Function]}} | {{External|[https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-function.html AWS::Lambda::Function]}} | ||
Resources: | |||
LambdaExample: | |||
Type: "AWS::Lambda::Function" | |||
Properties: | |||
Code: | |||
Code | |||
DeadLetterConfig: | |||
DeadLetterConfig | |||
Description: String | |||
Environment: | |||
Environment | |||
FunctionName: String | |||
Handler: String | |||
KmsKeyArn: String | |||
Layers: | |||
- String | |||
MemorySize: Integer | |||
ReservedConcurrentExecutions: Integer | |||
Role: String | |||
Runtime: String | |||
Timeout: Integer | |||
TracingConfig: | |||
TracingConfig | |||
VpcConfig: | |||
VPCConfig | |||
Tags: | |||
Resource Tag | |||
=Create a Java Lambda= | =Create a Java Lambda= | ||
=Create a bash Lambda= | =Create a bash Lambda= |
Revision as of 18:55, 4 April 2019
External
Internal
Resource Types
AWS::Lambda::Function
Resources: LambdaExample: Type: "AWS::Lambda::Function" Properties: Code: Code DeadLetterConfig: DeadLetterConfig Description: String Environment: Environment FunctionName: String Handler: String KmsKeyArn: String Layers: - String MemorySize: Integer ReservedConcurrentExecutions: Integer Role: String Runtime: String Timeout: Integer TracingConfig: TracingConfig VpcConfig: VPCConfig Tags: Resource Tag