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¶
maxResultsAn optional parameter that specifies the maximum number of results to return. You can use
nextTokento get the next page of results. The default is 20.nextTokenIf your initial
list_access_policiesoperation returns anextToken, you can include the returnednextTokenin subsequentlist_access_policiesoperations, which returns results in the next page.resourceResource 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"
)