List Security Policies
| opensearchserviceserverless_list_security_policies | R Documentation |
Returns information about configured OpenSearch Serverless security policies¶
Description¶
Returns information about configured OpenSearch Serverless security 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_security_policiesoperation returns anextToken, you can include the returnednextTokenin subsequentlist_security_policiesoperations, which returns results in the next page.resourceResource filters (can be collection or indexes) that policies can apply to.
type[required] The type of policy.
Value¶
A list with the following syntax:
list(
nextToken = "string",
securityPolicySummaries = list(
list(
createdDate = 123,
description = "string",
lastModifiedDate = 123,
name = "string",
policyVersion = "string",
type = "encryption"|"network"
)
)
)