ListVpcEndpointAccessResponse

Container for response parameters to the ListVpcEndpointAccess operation. Returns a list of accounts id and account type authorized to manage VPC endpoints.

AnalyticsElasticsearchSearch

Properties

Name Type Description
AuthorizedPrincipalList object
NextToken object
View JSON Schema on GitHub

JSON Schema

openapi-list-vpc-endpoint-access-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-list-vpc-endpoint-access-response-schema.json",
  "title": "ListVpcEndpointAccessResponse",
  "description": "Container for response parameters to the <code><a>ListVpcEndpointAccess</a></code> operation. Returns a list of accounts id and account type authorized to manage VPC endpoints.",
  "type": "object",
  "properties": {
    "AuthorizedPrincipalList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AuthorizedPrincipalList"
        },
        {
          "description": "List of <code>AuthorizedPrincipal</code> describing the details of the permissions to manage VPC endpoints against the specified domain."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "Provides an identifier to allow retrieval of paginated results."
        }
      ]
    }
  },
  "required": [
    "AuthorizedPrincipalList",
    "NextToken"
  ]
}