Skip to main content

solution_metrics

Creates, updates, deletes, gets or lists a solution_metrics resource.

Overview

Namesolution_metrics
TypeResource
Idaws.personalize.solution_metrics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
metricsobjectThe metrics for the solution version. For more information, see Evaluating a solution version with metrics .
solution_version_arnstringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_solution_metricsselectregionGets 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Gets the metrics for the specified solution version.

SELECT
metrics,
solution_version_arn
FROM aws.personalize.solution_metrics
WHERE region = '{{ region }}' -- required
;