Class: Aws::CustomerProfiles::Types::ObjectAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::ObjectAttribute
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-customerprofiles/types.rb
Overview
The criteria that a specific object attribute must meet to trigger the destination.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison_operator ⇒ String
The operator used to compare an attribute against a list of values.
-
#field_name ⇒ String
A field defined within an object type.
-
#source ⇒ String
An attribute contained within a source object.
-
#values ⇒ Array<String>
A list of attribute values used for comparison.
Instance Attribute Details
#comparison_operator ⇒ String
The operator used to compare an attribute against a list of values.
5326 5327 5328 5329 5330 5331 5332 5333 |
# File 'lib/aws-sdk-customerprofiles/types.rb', line 5326 class ObjectAttribute < Struct.new( :source, :field_name, :comparison_operator, :values) SENSITIVE = [] include Aws::Structure end |
#field_name ⇒ String
A field defined within an object type.
5326 5327 5328 5329 5330 5331 5332 5333 |
# File 'lib/aws-sdk-customerprofiles/types.rb', line 5326 class ObjectAttribute < Struct.new( :source, :field_name, :comparison_operator, :values) SENSITIVE = [] include Aws::Structure end |
#source ⇒ String
An attribute contained within a source object.
5326 5327 5328 5329 5330 5331 5332 5333 |
# File 'lib/aws-sdk-customerprofiles/types.rb', line 5326 class ObjectAttribute < Struct.new( :source, :field_name, :comparison_operator, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
A list of attribute values used for comparison.
5326 5327 5328 5329 5330 5331 5332 5333 |
# File 'lib/aws-sdk-customerprofiles/types.rb', line 5326 class ObjectAttribute < Struct.new( :source, :field_name, :comparison_operator, :values) SENSITIVE = [] include Aws::Structure end |