Interface Field.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Field.Builder,Field>,SdkBuilder<Field.Builder,Field>,SdkPojo
- Enclosing class:
- Field
public static interface Field.Builder extends SdkPojo, CopyableBuilder<Field.Builder,Field>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Field.Builderaggregation(String aggregation)(Optional) Indicates the type of aggregation or summary operation (such as Sum, Average, and so on) to be performed on a particular field or set of data.Field.Builderaggregation(FieldAggregationType aggregation)(Optional) Indicates the type of aggregation or summary operation (such as Sum, Average, and so on) to be performed on a particular field or set of data.Field.Buildername(String name)Name of the field.-
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
-
aggregation
Field.Builder aggregation(String aggregation)
(Optional) Indicates the type of aggregation or summary operation (such as Sum, Average, and so on) to be performed on a particular field or set of data.
- Parameters:
aggregation- (Optional) Indicates the type of aggregation or summary operation (such as Sum, Average, and so on) to be performed on a particular field or set of data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FieldAggregationType,FieldAggregationType
-
aggregation
Field.Builder aggregation(FieldAggregationType aggregation)
(Optional) Indicates the type of aggregation or summary operation (such as Sum, Average, and so on) to be performed on a particular field or set of data.
- Parameters:
aggregation- (Optional) Indicates the type of aggregation or summary operation (such as Sum, Average, and so on) to be performed on a particular field or set of data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FieldAggregationType,FieldAggregationType
-
name
Field.Builder name(String name)
Name of the field.
- Parameters:
name- Name of the field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-