Class: Aws::Personalize::Types::RecommenderUpdateSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::RecommenderUpdateSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Provides a summary of the properties of a recommender update. For a complete listing, call the [DescribeRecommender] API.
[1]: docs.aws.amazon.com/personalize/latest/dg/API_DescribeRecommender.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date_time ⇒ Time
The date and time (in Unix format) that the recommender update was created.
-
#failure_reason ⇒ String
If a recommender update fails, the reason behind the failure.
-
#last_updated_date_time ⇒ Time
The date and time (in Unix time) that the recommender update was last updated.
-
#recommender_config ⇒ Types::RecommenderConfig
The configuration details of the recommender update.
-
#status ⇒ String
The status of the recommender update.
Instance Attribute Details
#creation_date_time ⇒ Time
The date and time (in Unix format) that the recommender update was created.
5132 5133 5134 5135 5136 5137 5138 5139 5140 |
# File 'lib/aws-sdk-personalize/types.rb', line 5132 class RecommenderUpdateSummary < Struct.new( :recommender_config, :creation_date_time, :last_updated_date_time, :status, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#failure_reason ⇒ String
If a recommender update fails, the reason behind the failure.
5132 5133 5134 5135 5136 5137 5138 5139 5140 |
# File 'lib/aws-sdk-personalize/types.rb', line 5132 class RecommenderUpdateSummary < Struct.new( :recommender_config, :creation_date_time, :last_updated_date_time, :status, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#last_updated_date_time ⇒ Time
The date and time (in Unix time) that the recommender update was last updated.
5132 5133 5134 5135 5136 5137 5138 5139 5140 |
# File 'lib/aws-sdk-personalize/types.rb', line 5132 class RecommenderUpdateSummary < Struct.new( :recommender_config, :creation_date_time, :last_updated_date_time, :status, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#recommender_config ⇒ Types::RecommenderConfig
The configuration details of the recommender update.
5132 5133 5134 5135 5136 5137 5138 5139 5140 |
# File 'lib/aws-sdk-personalize/types.rb', line 5132 class RecommenderUpdateSummary < Struct.new( :recommender_config, :creation_date_time, :last_updated_date_time, :status, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the recommender update. A recommender update can be in one of the following states:
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
5132 5133 5134 5135 5136 5137 5138 5139 5140 |
# File 'lib/aws-sdk-personalize/types.rb', line 5132 class RecommenderUpdateSummary < Struct.new( :recommender_config, :creation_date_time, :last_updated_date_time, :status, :failure_reason) SENSITIVE = [] include Aws::Structure end |