Amazon PrivateLink · Schema

ModifyVpcEndpointRequest

ModifyVpcEndpointRequest schema from Amazon PrivateLink API

NetworkingPrivate ConnectivitySecurityVPCZero TrustEndpoint Services

Properties

Name Type Description
VpcEndpointId string ID of the endpoint to modify
ResetPolicy boolean Reset the policy to the default
PolicyDocument string New policy document
View JSON Schema on GitHub

JSON Schema

amazon-privatelink-modify-vpc-endpoint-request-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-modify-vpc-endpoint-request-schema.json",
  "title": "ModifyVpcEndpointRequest",
  "description": "ModifyVpcEndpointRequest schema from Amazon PrivateLink API",
  "type": "object",
  "properties": {
    "VpcEndpointId": {
      "type": "string",
      "description": "ID of the endpoint to modify"
    },
    "ResetPolicy": {
      "type": "boolean",
      "description": "Reset the policy to the default"
    },
    "PolicyDocument": {
      "type": "string",
      "description": "New policy document"
    }
  },
  "required": [
    "VpcEndpointId"
  ]
}