AWS Lambda · Schema

VpcConfig

VPC connectivity settings for a Lambda function

Properties

Name Type Description
SubnetIds array A list of VPC subnet IDs
SecurityGroupIds array A list of VPC security group IDs
View JSON Schema on GitHub

JSON Schema

aws-lambda-vpc-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VpcConfig",
  "type": "object",
  "description": "VPC connectivity settings for a Lambda function",
  "properties": {
    "SubnetIds": {
      "type": "array",
      "description": "A list of VPC subnet IDs"
    },
    "SecurityGroupIds": {
      "type": "array",
      "description": "A list of VPC security group IDs"
    }
  }
}