solution_metrics
Creates, updates, deletes, gets or lists a solution_metrics resource.
Overview
| Name | solution_metrics |
| Type | Resource |
| Id | aws.personalize.solution_metrics |
Fields
The following fields are returned by SELECT queries:
- get_solution_metrics
| Name | Datatype | Description |
|---|---|---|
metrics | object | The metrics for the solution version. For more information, see Evaluating a solution version with metrics . |
solution_version_arn | string | The same solution version ARN as specified in the request. (pattern: <code>arn:([a-z\d-]+):personalize:.:.:.+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_solution_metrics | select | region | Gets the metrics for the specified solution version. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_solution_metrics
Gets the metrics for the specified solution version.
SELECT
metrics,
solution_version_arn
FROM aws.personalize.solution_metrics
WHERE region = '{{ region }}' -- required
;