Get Package Version History
elasticsearchservice_get_package_version_history | R Documentation |
Returns a list of versions of the package, along with their creation time and commit message¶
Description¶
Returns a list of versions of the package, along with their creation time and commit message.
Usage¶
elasticsearchservice_get_package_version_history(PackageID, MaxResults,
NextToken)
Arguments¶
PackageID |
[required] Returns an audit history of versions of the package. |
MaxResults |
Limits results to a maximum number of versions. |
NextToken |
Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for 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"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$get_package_version_history(
PackageID = "string",
MaxResults = 123,
NextToken = "string"
)