Skip to main content

insights_refreshes

Creates, updates, deletes, gets or lists an insights_refreshes resource.

Overview

Nameinsights_refreshes
TypeResource
Idaws.eks.insights_refreshes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
ended_atstring (date-time)The date and time when the insights refresh operation ended.
messagestringThe message associated with the insights refresh operation.
started_atstring (date-time)The date and time when the insights refresh operation started.
statusstringThe current status of the insights refresh operation. (IN_PROGRESS, FAILED, COMPLETED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_insights_refreshselectname, regionReturns the status of the latest on-demand cluster insights refresh operation.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
namestringThe name of the cluster associated with the insights refresh operation.
regionstringAWS region (default: us-east-1)

SELECT examples

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

SELECT
ended_at,
message,
started_at,
status
FROM aws.eks.insights_refreshes
WHERE name = '{{ name }}' -- required
AND region = '{{ region }}' -- required
;