Interface ObjectTypeField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ObjectTypeField.Builder,ObjectTypeField>,SdkBuilder<ObjectTypeField.Builder,ObjectTypeField>,SdkPojo
- Enclosing class:
- ObjectTypeField
public static interface ObjectTypeField.Builder extends SdkPojo, CopyableBuilder<ObjectTypeField.Builder,ObjectTypeField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectTypeField.BuildercontentType(String contentType)The content type of the field.ObjectTypeField.BuildercontentType(FieldContentType contentType)The content type of the field.ObjectTypeField.Buildersource(String source)A field of a ProfileObject.ObjectTypeField.Buildertarget(String target)The location of the data in the standard ProfileObject model.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
source
ObjectTypeField.Builder source(String source)
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.
- Parameters:
source- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
target
ObjectTypeField.Builder target(String target)
The location of the data in the standard ProfileObject model. For example: _profile.Address.PostalCode.
- Parameters:
target- The location of the data in the standard ProfileObject model. For example: _profile.Address.PostalCode.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contentType
ObjectTypeField.Builder contentType(String contentType)
The content type of the field. Used for determining equality when searching.
- Parameters:
contentType- The content type of the field. Used for determining equality when searching.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FieldContentType,FieldContentType
-
contentType
ObjectTypeField.Builder contentType(FieldContentType contentType)
The content type of the field. Used for determining equality when searching.
- Parameters:
contentType- The content type of the field. Used for determining equality when searching.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FieldContentType,FieldContentType
-
-