List Domains for Package
| opensearchservice_list_domains_for_package | R Documentation |
Lists all Amazon OpenSearch Service domains associated with a given package¶
Description¶
Lists all Amazon OpenSearch Service domains associated with a given package. For more information, see Custom packages for Amazon OpenSearch Service.
Usage¶
Arguments¶
PackageID[required] The unique identifier of the package for which to list associated domains.
MaxResultsAn optional parameter that specifies the maximum number of results to return. You can use
nextTokento get the next page of results.NextTokenIf your initial
list_domains_for_packageoperation returns anextToken, you can include the returnednextTokenin subsequentlist_domains_for_packageoperations, which returns results in the next page.
Value¶
A list with the following syntax:
list(
DomainPackageDetailsList = list(
list(
PackageID = "string",
PackageName = "string",
PackageType = "TXT-DICTIONARY"|"ZIP-PLUGIN",
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"
)