Class: Aws::FraudDetector::Types::EventVariableSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::FraudDetector::Types::EventVariableSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-frauddetector/types.rb
Overview
Information about the summary of an event variable that was evaluated for generating prediction.
Constant Summary collapse
- SENSITIVE =
[:name, :value, :source]
Instance Attribute Summary collapse
-
#name ⇒ String
The event variable name.
-
#source ⇒ String
The event variable source.
-
#value ⇒ String
The value of the event variable.
Instance Attribute Details
#name ⇒ String
The event variable name.
1846 1847 1848 1849 1850 1851 1852 |
# File 'lib/aws-sdk-frauddetector/types.rb', line 1846 class EventVariableSummary < Struct.new( :name, :value, :source) SENSITIVE = [:name, :value, :source] include Aws::Structure end |
#source ⇒ String
The event variable source.
1846 1847 1848 1849 1850 1851 1852 |
# File 'lib/aws-sdk-frauddetector/types.rb', line 1846 class EventVariableSummary < Struct.new( :name, :value, :source) SENSITIVE = [:name, :value, :source] include Aws::Structure end |
#value ⇒ String
The value of the event variable.
1846 1847 1848 1849 1850 1851 1852 |
# File 'lib/aws-sdk-frauddetector/types.rb', line 1846 class EventVariableSummary < Struct.new( :name, :value, :source) SENSITIVE = [:name, :value, :source] include Aws::Structure end |