Lists all packages associated with the Amazon ES domain.
elasticsearchservice_list_packages_for_domain(DomainName, MaxResults,
NextToken)
A list with the following syntax:
list(
DomainPackageDetailsList = list(
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"
)
)
),
NextToken = "string"
)
[required] The name of the domain for which you want to list associated packages.
Limits results to a maximum number of packages.
Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.
svc$list_packages_for_domain(
DomainName = "string",
MaxResults = 123,
NextToken = "string"
)