List Access Policies
opensearchserviceserverless_list_access_policies | R Documentation |
Returns information about a list of OpenSearch Serverless access policies¶
Description¶
Returns information about a list of OpenSearch Serverless access policies.
Usage¶
Arguments¶
maxResults
An optional parameter that specifies the maximum number of results to return. You can use
nextToken
to get the next page of results. The default is 20.nextToken
If your initial
list_access_policies
operation returns anextToken
, you can include the returnednextToken
in subsequentlist_access_policies
operations, which returns results in the next page.resource
Resource filters (can be collections or indexes) that policies can apply to.
type
[required] The type of access policy.
Value¶
A list with the following syntax:
list(
accessPolicySummaries = list(
list(
createdDate = 123,
description = "string",
lastModifiedDate = 123,
name = "string",
policyVersion = "string",
type = "data"
)
),
nextToken = "string"
)