Amazon PrivateLink · Schema

DescribeVpcEndpointServicesResult

DescribeVpcEndpointServicesResult schema from Amazon PrivateLink API

NetworkingPrivate ConnectivitySecurityVPCZero TrustEndpoint Services

Properties

Name Type Description
ServiceNames array List of supported service names
ServiceDetails array
NextToken string Token for next page of results
View JSON Schema on GitHub

JSON Schema

amazon-privatelink-describe-vpc-endpoint-services-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-privatelink/refs/heads/main/json-schema/amazon-privatelink-describe-vpc-endpoint-services-result-schema.json",
  "title": "DescribeVpcEndpointServicesResult",
  "description": "DescribeVpcEndpointServicesResult schema from Amazon PrivateLink API",
  "type": "object",
  "properties": {
    "ServiceNames": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of supported service names"
    },
    "ServiceDetails": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ServiceDetail"
      }
    },
    "NextToken": {
      "type": "string",
      "description": "Token for next page of results"
    }
  }
}