Update Package
elasticsearchservice_update_package | R Documentation |
Updates a package for use with Amazon ES domains¶
Description¶
Updates a package for use with Amazon ES domains.
Usage¶
Arguments¶
PackageID
[required] Unique identifier for the package.
PackageSource
[required]
PackageDescription
New description of the package.
CommitMessage
An info message for the new version which will be shown as part of
GetPackageVersionHistoryResponse
.
Value¶
A list with the following syntax:
list(
PackageDetails = list(
PackageID = "string",
PackageName = "string",
PackageType = "TXT-DICTIONARY",
PackageDescription = "string",
PackageStatus = "COPYING"|"COPY_FAILED"|"VALIDATING"|"VALIDATION_FAILED"|"AVAILABLE"|"DELETING"|"DELETED"|"DELETE_FAILED",
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastUpdatedAt = as.POSIXct(
"2015-01-01"
),
AvailablePackageVersion = "string",
ErrorDetails = list(
ErrorType = "string",
ErrorMessage = "string"
)
)
)