Skip to content

List Solution Versions

personalize_list_solution_versions R Documentation

Returns a list of solution versions for the given solution

Description

Returns a list of solution versions for the given solution. When a solution is not specified, all the solution versions associated with the account are listed. The response provides the properties for each solution version, including the Amazon Resource Name (ARN).

Usage

personalize_list_solution_versions(solutionArn, nextToken, maxResults)

Arguments

solutionArn

The Amazon Resource Name (ARN) of the solution.

nextToken

A token returned from the previous call to list_solution_versions for getting the next set of solution versions (if they exist).

maxResults

The maximum number of solution versions to return.

Value

A list with the following syntax:

list(
  solutionVersions = list(
    list(
      solutionVersionArn = "string",
      status = "string",
      trainingMode = "FULL"|"UPDATE"|"AUTOTRAIN",
      trainingType = "AUTOMATIC"|"MANUAL",
      creationDateTime = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdatedDateTime = as.POSIXct(
        "2015-01-01"
      ),
      failureReason = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_solution_versions(
  solutionArn = "string",
  nextToken = "string",
  maxResults = 123
)