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¶
Filters
Only returns packages that match the
DescribePackagesFilterList
values.MaxResults
An optional parameter that specifies the maximum number of results to return. You can use
nextToken
to get the next page of results.NextToken
If your initial
DescribePackageFilters
operation returns anextToken
, you can include the returnednextToken
in subsequentDescribePackageFilters
operations, 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"
)