Class: Aws::CustomerProfiles::Types::ObjectTypeField
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::ObjectTypeField
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-customerprofiles/types.rb
Overview
Represents a field in a ProfileObjectType.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content_type ⇒ String
The content type of the field.
-
#source ⇒ String
A field of a ProfileObject.
-
#target ⇒ String
The location of the data in the standard ProfileObject model.
Instance Attribute Details
#content_type ⇒ String
The content type of the field. Used for determining equality when searching.
5379 5380 5381 5382 5383 5384 5385 |
# File 'lib/aws-sdk-customerprofiles/types.rb', line 5379 class ObjectTypeField < Struct.new( :source, :target, :content_type) SENSITIVE = [] include Aws::Structure end |
#source ⇒ String
A field of a ProfileObject. For example: _source.FirstName, where “_source” is a ProfileObjectType of a Zendesk user and “FirstName” is a field in that ObjectType.
5379 5380 5381 5382 5383 5384 5385 |
# File 'lib/aws-sdk-customerprofiles/types.rb', line 5379 class ObjectTypeField < Struct.new( :source, :target, :content_type) SENSITIVE = [] include Aws::Structure end |
#target ⇒ String
The location of the data in the standard ProfileObject model. For example: _profile.Address.PostalCode.
5379 5380 5381 5382 5383 5384 5385 |
# File 'lib/aws-sdk-customerprofiles/types.rb', line 5379 class ObjectTypeField < Struct.new( :source, :target, :content_type) SENSITIVE = [] include Aws::Structure end |