Class: Aws::Personalize::Types::CreateSolutionVersionRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-personalize/types.rb

Overview

Note:

When making an API call, you may pass CreateSolutionVersionRequest data as a hash:

{
  solution_arn: "Arn", # required
  training_mode: "FULL", # accepts FULL, UPDATE
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#solution_arnString

The Amazon Resource Name (ARN) of the solution containing the training configuration information.

Returns:

  • (String)


1226
1227
1228
1229
1230
1231
# File 'lib/aws-sdk-personalize/types.rb', line 1226

class CreateSolutionVersionRequest < Struct.new(
  :solution_arn,
  :training_mode)
  SENSITIVE = []
  include Aws::Structure
end

#training_modeString

The scope of training to be performed when creating the solution version. The ‘FULL` option trains the solution version based on the entirety of the input solution’s training data, while the ‘UPDATE` option processes only the data that has changed in comparison to the input solution. Choose `UPDATE` when you want to incrementally update your solution version instead of creating an entirely new one.

The ‘UPDATE` option can only be used when you already have an active solution version created from the input solution using the `FULL` option and the input solution was trained with the native-recipe-hrnn-coldstart recipe.

Returns:

  • (String)


1226
1227
1228
1229
1230
1231
# File 'lib/aws-sdk-personalize/types.rb', line 1226

class CreateSolutionVersionRequest < Struct.new(
  :solution_arn,
  :training_mode)
  SENSITIVE = []
  include Aws::Structure
end