insights_refreshes
Creates, updates, deletes, gets or lists an insights_refreshes resource.
Overview
| Name | insights_refreshes |
| Type | Resource |
| Id | aws.eks.insights_refreshes |
Fields
The following fields are returned by SELECT queries:
- describe_insights_refresh
| Name | Datatype | Description |
|---|---|---|
ended_at | string (date-time) | The date and time when the insights refresh operation ended. |
message | string | The message associated with the insights refresh operation. |
started_at | string (date-time) | The date and time when the insights refresh operation started. |
status | string | The current status of the insights refresh operation. (IN_PROGRESS, FAILED, COMPLETED) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_insights_refresh | select | name, region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the cluster associated with the insights refresh operation. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_insights_refresh
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
;