List Packages for Domain
| opensearchservice_list_packages_for_domain | R Documentation |
Lists all packages associated with an Amazon OpenSearch Service domain¶
Description¶
Lists all packages associated with an Amazon OpenSearch Service domain. For more information, see Custom packages for Amazon OpenSearch Service.
Usage¶
Arguments¶
DomainName[required] The name of the domain for which you want to list associated packages.
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_packages_for_domainoperation returns anextToken, you can include the returnednextTokenin subsequentlist_packages_for_domainoperations, 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"
)