Class: Aws::PersonalizeRuntime::Types::PredictedAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::PersonalizeRuntime::Types::PredictedAction
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalizeruntime/types.rb
Overview
An object that identifies an action.
The API returns a list of ‘PredictedAction`s.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_id ⇒ String
The ID of the recommended action.
-
#score ⇒ Float
The score of the recommended action.
Instance Attribute Details
#action_id ⇒ String
The ID of the recommended action.
359 360 361 362 363 364 |
# File 'lib/aws-sdk-personalizeruntime/types.rb', line 359 class PredictedAction < Struct.new( :action_id, :score) SENSITIVE = [] include Aws::Structure end |
#score ⇒ Float
The score of the recommended action. For information about action scores, see [How action recommendation scoring works].
[1]: docs.aws.amazon.com/personalize/latest/dg/how-action-recommendation-scoring-works.html
359 360 361 362 363 364 |
# File 'lib/aws-sdk-personalizeruntime/types.rb', line 359 class PredictedAction < Struct.new( :action_id, :score) SENSITIVE = [] include Aws::Structure end |