Get Package Version History
| opensearchservice_get_package_version_history | R Documentation |
Returns a list of Amazon OpenSearch Service package versions, along with their creation time, commit message, and plugin properties (if the package is a zip plugin package)¶
Description¶
Returns a list of Amazon OpenSearch Service package versions, along with their creation time, commit message, and plugin properties (if the package is a zip plugin package). For more information, see Custom packages for Amazon OpenSearch Service.
Usage¶
Arguments¶
PackageID[required] The unique identifier of the package.
MaxResultsAn optional parameter that specifies the maximum number of results to return. You can use
nextTokento get the next page of results.NextTokenIf your initial
get_package_version_historyoperation returns anextToken, you can include the returnednextTokenin subsequentget_package_version_historyoperations, which returns results in the next page.
Value¶
A list with the following syntax:
list(
PackageID = "string",
PackageVersionHistoryList = list(
list(
PackageVersion = "string",
CommitMessage = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
PluginProperties = list(
Name = "string",
Description = "string",
Version = "string",
ClassName = "string",
UncompressedSizeInBytes = 123
)
)
),
NextToken = "string"
)