Dissociate Package
elasticsearchservice_dissociate_package | R Documentation |
Dissociates a package from the Amazon ES domain¶
Description¶
Dissociates a package from the Amazon ES domain.
Usage¶
Arguments¶
PackageID
[required] Internal ID of the package that you want to associate with a domain. Use
describe_packages
to find this value.DomainName
[required] Name of the domain that you want to associate the package with.
Value¶
A list with the following syntax:
list(
DomainPackageDetails = list(
PackageID = "string",
PackageName = "string",
PackageType = "TXT-DICTIONARY",
LastUpdated = as.POSIXct(
"2015-01-01"
),
DomainName = "string",
DomainPackageStatus = "ASSOCIATING"|"ASSOCIATION_FAILED"|"ACTIVE"|"DISSOCIATING"|"DISSOCIATION_FAILED",
PackageVersion = "string",
ReferencePath = "string",
ErrorDetails = list(
ErrorType = "string",
ErrorMessage = "string"
)
)
)