List Metric Attributions
personalize_list_metric_attributions | R Documentation |
Lists metric attributions¶
Description¶
Lists metric attributions.
Usage¶
personalize_list_metric_attributions(datasetGroupArn, nextToken,
maxResults)
Arguments¶
datasetGroupArn |
The metric attributions' dataset group Amazon Resource Name (ARN). |
nextToken |
Specify the pagination token from a previous request to retrieve the next page of results. |
maxResults |
The maximum number of metric attributions to return in one page of results. |
Value¶
A list with the following syntax:
list(
metricAttributions = list(
list(
name = "string",
metricAttributionArn = "string",
status = "string",
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
),
failureReason = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_metric_attributions(
datasetGroupArn = "string",
nextToken = "string",
maxResults = 123
)