List Domains For Package
elasticsearchservice_list_domains_for_package | R Documentation |
Lists all Amazon ES domains associated with the package¶
Description¶
Lists all Amazon ES domains associated with the package.
Usage¶
Arguments¶
PackageID
[required] The package for which to list domains.
MaxResults
Limits results to a maximum number of domains.
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(
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"
)