Class: Aws::CloudWatchEvidently::Types::EvaluationRequest

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

Overview

This structure assigns a feature variation to one user session.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#entity_idString

An internal ID that represents a unique user session of the application. This ‘entityID` is checked against any override rules assigned for this feature.

Returns:

  • (String)


735
736
737
738
739
740
741
# File 'lib/aws-sdk-cloudwatchevidently/types.rb', line 735

class EvaluationRequest < Struct.new(
  :entity_id,
  :evaluation_context,
  :feature)
  SENSITIVE = []
  include Aws::Structure
end

#evaluation_contextString

A JSON block of attributes that you can optionally pass in. This JSON block is included in the evaluation events sent to Evidently from the user session.

Returns:

  • (String)


735
736
737
738
739
740
741
# File 'lib/aws-sdk-cloudwatchevidently/types.rb', line 735

class EvaluationRequest < Struct.new(
  :entity_id,
  :evaluation_context,
  :feature)
  SENSITIVE = []
  include Aws::Structure
end

#featureString

The name of the feature being evaluated.

Returns:

  • (String)


735
736
737
738
739
740
741
# File 'lib/aws-sdk-cloudwatchevidently/types.rb', line 735

class EvaluationRequest < Struct.new(
  :entity_id,
  :evaluation_context,
  :feature)
  SENSITIVE = []
  include Aws::Structure
end