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.
      3968 3969 3970 3971 3972 3973 3974  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 3968 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.
      3968 3969 3970 3971 3972 3973 3974  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 3968 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.
      3968 3969 3970 3971 3972 3973 3974  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 3968 class ObjectTypeField < Struct.new( :source, :target, :content_type) SENSITIVE = [] include Aws::Structure end  |