Skip to content

List Packages For Domain

elasticsearchservice_list_packages_for_domain R Documentation

Lists all packages associated with the Amazon ES domain

Description

Lists all packages associated with the Amazon ES domain.

Usage

elasticsearchservice_list_packages_for_domain(DomainName, MaxResults,
  NextToken)

Arguments

DomainName

[required] The name of the domain for which you want to list associated packages.

MaxResults

Limits results to a maximum number of packages.

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"
)

Request syntax

svc$list_packages_for_domain(
  DomainName = "string",
  MaxResults = 123,
  NextToken = "string"
)