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.
MaxResults
An optional parameter that specifies the maximum number of results to return. You can use
nextToken
to get the next page of results.NextToken
If your initial
get_package_version_history
operation returns anextToken
, you can include the returnednextToken
in subsequentget_package_version_history
operations, 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"
)