Interface FieldDefinition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FieldDefinition.Builder,FieldDefinition>,SdkBuilder<FieldDefinition.Builder,FieldDefinition>,SdkPojo
- Enclosing class:
- FieldDefinition
@Mutable @NotThreadSafe public static interface FieldDefinition.Builder extends SdkPojo, CopyableBuilder<FieldDefinition.Builder,FieldDefinition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FieldDefinition.BuilderfieldDataType(String fieldDataType)The data type of the field.FieldDefinition.BuilderfieldDataType(FieldDataType fieldDataType)The data type of the field.FieldDefinition.Buildername(String name)The name of the field in the entity schema.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
FieldDefinition.Builder name(String name)
The name of the field in the entity schema.
- Parameters:
name- The name of the field in the entity schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fieldDataType
FieldDefinition.Builder fieldDataType(String fieldDataType)
The data type of the field.
- Parameters:
fieldDataType- The data type of the field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FieldDataType,FieldDataType
-
fieldDataType
FieldDefinition.Builder fieldDataType(FieldDataType fieldDataType)
The data type of the field.
- Parameters:
fieldDataType- The data type of the field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FieldDataType,FieldDataType
-
-