Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
Configuration template to create a Lambda Function. The template includes options to customize the function's settings such as name, runtime, code location (inline, ZIP or S3), memory size, timeout, environment variables, and more.
Settings for customizing the template include:
AWSTemplateFormatVersion: "2010-09-09"
Description: ""
Resources:
LambdaFunction:
Type: "AWS::Lambda::Function"
Properties:
Role: ""
PackageType: "Zip"
Runtime: "python3.9"
Handler: ""
Code:
S3Bucket: ""
S3Key: ""
MemorySize: 128
Timeout: 3
Parameters: {}
Metadata: {}
Conditions: {}