AWS Lambda · Schema

VpcConfigResponse

VPC connectivity details returned by Lambda

Properties

Name Type Description
SubnetIds array
SecurityGroupIds array
VpcId string The VPC ID
View JSON Schema on GitHub

JSON Schema

aws-lambda-vpc-config-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VpcConfigResponse",
  "type": "object",
  "description": "VPC connectivity details returned by Lambda",
  "properties": {
    "SubnetIds": {
      "type": "array"
    },
    "SecurityGroupIds": {
      "type": "array"
    },
    "VpcId": {
      "type": "string",
      "description": "The VPC ID"
    }
  }
}