Delete Package
elasticsearchservice_delete_package | R Documentation |
Delete the package¶
Description¶
Delete the package.
Usage¶
Arguments¶
PackageID
[required] Internal ID of the package that you want to delete. Use
describe_packages
to find this value.
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"
)
)
)