Skip to content

Describe Insights Refresh

eks_describe_insights_refresh R Documentation

Returns the status of the latest on-demand cluster insights refresh operation

Description

Returns the status of the latest on-demand cluster insights refresh operation.

Usage

eks_describe_insights_refresh(clusterName)

Arguments

clusterName

[required] The name of the cluster associated with the insights refresh operation.

Value

A list with the following syntax:

list(
  message = "string",
  status = "IN_PROGRESS"|"FAILED"|"COMPLETED",
  startedAt = as.POSIXct(
    "2015-01-01"
  ),
  endedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$describe_insights_refresh(
  clusterName = "string"
)