Describe Packages
| opensearchservice_describe_packages | R Documentation |
Describes all packages available to OpenSearch Service¶
Description¶
Describes all packages available to OpenSearch Service. For more information, see Custom packages for Amazon OpenSearch Service.
Usage¶
Arguments¶
FiltersOnly returns packages that match the
DescribePackagesFilterListvalues.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
DescribePackageFiltersoperation returns anextToken, you can include the returnednextTokenin subsequentDescribePackageFiltersoperations, which returns results in the next page.
Value¶
A list with the following syntax:
list(
PackageDetailsList = list(
list(
PackageID = "string",
PackageName = "string",
PackageType = "TXT-DICTIONARY"|"ZIP-PLUGIN",
PackageDescription = "string",
PackageStatus = "COPYING"|"COPY_FAILED"|"VALIDATING"|"VALIDATION_FAILED"|"AVAILABLE"|"DELETING"|"DELETED"|"DELETE_FAILED",
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastUpdatedAt = as.POSIXct(
"2015-01-01"
),
AvailablePackageVersion = "string",
ErrorDetails = list(
ErrorType = "string",
ErrorMessage = "string"
),
EngineVersion = "string",
AvailablePluginProperties = list(
Name = "string",
Description = "string",
Version = "string",
ClassName = "string",
UncompressedSizeInBytes = 123
)
)
),
NextToken = "string"
)