Interface WordCloudAggregatedFieldWells.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<WordCloudAggregatedFieldWells.Builder,WordCloudAggregatedFieldWells>
,SdkBuilder<WordCloudAggregatedFieldWells.Builder,WordCloudAggregatedFieldWells>
,SdkPojo
- Enclosing class:
- WordCloudAggregatedFieldWells
public static interface WordCloudAggregatedFieldWells.Builder extends SdkPojo, CopyableBuilder<WordCloudAggregatedFieldWells.Builder,WordCloudAggregatedFieldWells>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WordCloudAggregatedFieldWells.Builder
groupBy(Collection<DimensionField> groupBy)
The group by field well of a word cloud.WordCloudAggregatedFieldWells.Builder
groupBy(Consumer<DimensionField.Builder>... groupBy)
The group by field well of a word cloud.WordCloudAggregatedFieldWells.Builder
groupBy(DimensionField... groupBy)
The group by field well of a word cloud.WordCloudAggregatedFieldWells.Builder
size(Collection<MeasureField> size)
The size field well of a word cloud.WordCloudAggregatedFieldWells.Builder
size(Consumer<MeasureField.Builder>... size)
The size field well of a word cloud.WordCloudAggregatedFieldWells.Builder
size(MeasureField... size)
The size field well of a word cloud.-
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
-
groupBy
WordCloudAggregatedFieldWells.Builder groupBy(Collection<DimensionField> groupBy)
The group by field well of a word cloud. Values are grouped by group by fields.
- Parameters:
groupBy
- The group by field well of a word cloud. Values are grouped by group by fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupBy
WordCloudAggregatedFieldWells.Builder groupBy(DimensionField... groupBy)
The group by field well of a word cloud. Values are grouped by group by fields.
- Parameters:
groupBy
- The group by field well of a word cloud. Values are grouped by group by fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupBy
WordCloudAggregatedFieldWells.Builder groupBy(Consumer<DimensionField.Builder>... groupBy)
The group by field well of a word cloud. Values are grouped by group by fields.
This is a convenience method that creates an instance of theDimensionField.Builder
avoiding the need to create one manually viaDimensionField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#groupBy(List
.) - Parameters:
groupBy
- a consumer that will call methods onDimensionField.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#groupBy(java.util.Collection
)
-
size
WordCloudAggregatedFieldWells.Builder size(Collection<MeasureField> size)
The size field well of a word cloud. Values are aggregated based on group by fields.
- Parameters:
size
- The size field well of a word cloud. Values are aggregated based on group by fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
size
WordCloudAggregatedFieldWells.Builder size(MeasureField... size)
The size field well of a word cloud. Values are aggregated based on group by fields.
- Parameters:
size
- The size field well of a word cloud. Values are aggregated based on group by fields.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
size
WordCloudAggregatedFieldWells.Builder size(Consumer<MeasureField.Builder>... size)
The size field well of a word cloud. Values are aggregated based on group by fields.
This is a convenience method that creates an instance of theMeasureField.Builder
avoiding the need to create one manually viaMeasureField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#size(List
.) - Parameters:
size
- a consumer that will call methods onMeasureField.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#size(java.util.Collection
)
-
-