Learn R Programming

paws.compute (version 0.1.12)

eks_describe_addon: Describes an Amazon EKS add-on

Description

Describes an Amazon EKS add-on.

Usage

eks_describe_addon(clusterName, addonName)

Value

A list with the following syntax:

list(
  addon = list(
    addonName = "string",
    clusterName = "string",
    status = "CREATING"|"ACTIVE"|"CREATE_FAILED"|"UPDATING"|"DELETING"|"DELETE_FAILED"|"DEGRADED",
    addonVersion = "string",
    health = list(
      issues = list(
        list(
          code = "AccessDenied"|"InternalFailure"|"ClusterUnreachable"|"InsufficientNumberOfReplicas"|"ConfigurationConflict",
          message = "string",
          resourceIds = list(
            "string"
          )
        )
      )
    ),
    addonArn = "string",
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    modifiedAt = as.POSIXct(
      "2015-01-01"
    ),
    serviceAccountRoleArn = "string",
    tags = list(
      "string"
    )
  )
)

Arguments

clusterName

[required] The name of the cluster.

addonName

[required] The name of the add-on. The name must match one of the names returned by list_addons .

Request syntax

svc$describe_addon(
  clusterName = "string",
  addonName = "string"
)