List Lifecycle Policies
| opensearchserviceserverless_list_lifecycle_policies | R Documentation |
Returns a list of OpenSearch Serverless lifecycle policies¶
Description¶
Returns a list of OpenSearch Serverless lifecycle policies. For more information, see Viewing data lifecycle policies.
Usage¶
Arguments¶
maxResultsAn optional parameter that specifies the maximum number of results to return. You can use use
nextTokento get the next page of results. The default is 10.nextTokenIf your initial
list_lifecycle_policiesoperation returns anextToken, you can include the returnednextTokenin subsequentlist_lifecycle_policiesoperations, which returns results in the next page.resourcesResource filters that policies can apply to. Currently, the only supported resource type is
index.type[required] The type of lifecycle policy.
Value¶
A list with the following syntax:
list(
lifecyclePolicySummaries = list(
list(
createdDate = 123,
description = "string",
lastModifiedDate = 123,
name = "string",
policyVersion = "string",
type = "retention"
)
),
nextToken = "string"
)