VpcConfigResponse

The VPC security groups and subnets that are attached to a Lambda function.

APIs.ioEngineeringPlatform

Properties

Name Type Description
SubnetIds object
SecurityGroupIds object
VpcId object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-vpcconfigresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VpcConfigResponse",
  "title": "VpcConfigResponse",
  "type": "object",
  "properties": {
    "SubnetIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SubnetIds"
        },
        {
          "description": "A list of VPC subnet IDs."
        }
      ]
    },
    "SecurityGroupIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SecurityGroupIds"
        },
        {
          "description": "A list of VPC security group IDs."
        }
      ]
    },
    "VpcId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VpcId"
        },
        {
          "description": "The ID of the VPC."
        }
      ]
    }
  },
  "description": "The VPC security groups and subnets that are attached to a Lambda function."
}