List Vpc Endpoint Access
elasticsearchservice_list_vpc_endpoint_access | R Documentation |
Retrieves information about each principal that is allowed to access a given Amazon OpenSearch Service domain through the use of an interface VPC endpoint¶
Description¶
Retrieves information about each principal that is allowed to access a given Amazon OpenSearch Service domain through the use of an interface VPC endpoint.
Usage¶
elasticsearchservice_list_vpc_endpoint_access(DomainName, NextToken)
Arguments¶
DomainName |
[required] The name of the OpenSearch Service domain to retrieve access information for. |
NextToken |
Provides an identifier to allow retrieval of paginated results. |
Value¶
A list with the following syntax:
list(
AuthorizedPrincipalList = list(
list(
PrincipalType = "AWS_ACCOUNT"|"AWS_SERVICE",
Principal = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_vpc_endpoint_access(
DomainName = "string",
NextToken = "string"
)