Class: Aws::Personalize::Types::AutoTrainingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::AutoTrainingConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
The automatic training configuration to use when ‘performAutoTraining` is true.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#scheduling_expression ⇒ String
Specifies how often to automatically train new solution versions.
Instance Attribute Details
#scheduling_expression ⇒ String
Specifies how often to automatically train new solution versions. Specify a rate expression in rate(value unit) format. For value, specify a number between 1 and 30. For unit, specify ‘day` or `days`. For example, to automatically create a new solution version every 5 days, specify `rate(5 days)`. The default is every 7 days.
For more information about auto training, see [Creating and configuring a solution].
[1]: docs.aws.amazon.com/personalize/latest/dg/customizing-solution-config.html
161 162 163 164 165 |
# File 'lib/aws-sdk-personalize/types.rb', line 161 class AutoTrainingConfig < Struct.new( :scheduling_expression) SENSITIVE = [] include Aws::Structure end |