{
"$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 ListVpcEndpointAccess 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 AuthorizedPrincipal 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"
]
}