Class: Aws::Personalize::Types::SolutionUpdateSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::SolutionUpdateSummary
- Defined in:
- gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb
Overview
Provides a summary of the properties of a solution update. For a complete listing, call the DescribeSolution API.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date_time ⇒ Time
The date and time (in Unix format) that the solution update was created.
-
#failure_reason ⇒ String
If a solution update fails, the reason behind the failure.
-
#last_updated_date_time ⇒ Time
The date and time (in Unix time) that the solution update was last updated.
-
#perform_auto_training ⇒ Boolean
Whether the solution automatically creates solution versions.
-
#perform_incremental_update ⇒ Boolean
A Boolean value that indicates whether incremental training updates are performed on the model.
-
#solution_update_config ⇒ Types::SolutionUpdateConfig
The configuration details of the solution.
-
#status ⇒ String
The status of the solution update.
Instance Attribute Details
#creation_date_time ⇒ Time
The date and time (in Unix format) that the solution update was created.
5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 5624 class SolutionUpdateSummary < Struct.new( :solution_update_config, :status, :perform_auto_training, :perform_incremental_update, :creation_date_time, :last_updated_date_time, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#failure_reason ⇒ String
If a solution update fails, the reason behind the failure.
5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 5624 class SolutionUpdateSummary < Struct.new( :solution_update_config, :status, :perform_auto_training, :perform_incremental_update, :creation_date_time, :last_updated_date_time, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#last_updated_date_time ⇒ Time
The date and time (in Unix time) that the solution update was last updated.
5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 5624 class SolutionUpdateSummary < Struct.new( :solution_update_config, :status, :perform_auto_training, :perform_incremental_update, :creation_date_time, :last_updated_date_time, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#perform_auto_training ⇒ Boolean
Whether the solution automatically creates solution versions.
5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 5624 class SolutionUpdateSummary < Struct.new( :solution_update_config, :status, :perform_auto_training, :perform_incremental_update, :creation_date_time, :last_updated_date_time, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#perform_incremental_update ⇒ Boolean
A Boolean value that indicates whether incremental training updates are performed on the model. When enabled, this allows the model to learn from new data more frequently without requiring full retraining, which enables near real-time personalization. This parameter is supported only for solutions that use the semantic-similarity recipe.
5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 5624 class SolutionUpdateSummary < Struct.new( :solution_update_config, :status, :perform_auto_training, :perform_incremental_update, :creation_date_time, :last_updated_date_time, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#solution_update_config ⇒ Types::SolutionUpdateConfig
The configuration details of the solution.
5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 5624 class SolutionUpdateSummary < Struct.new( :solution_update_config, :status, :perform_auto_training, :perform_incremental_update, :creation_date_time, :last_updated_date_time, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the solution update. A solution update can be in one of the following states:
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 5624 class SolutionUpdateSummary < Struct.new( :solution_update_config, :status, :perform_auto_training, :perform_incremental_update, :creation_date_time, :last_updated_date_time, :failure_reason) SENSITIVE = [] include Aws::Structure end |