Interface StringColumnStatisticsData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StringColumnStatisticsData.Builder,StringColumnStatisticsData>,SdkBuilder<StringColumnStatisticsData.Builder,StringColumnStatisticsData>,SdkPojo
- Enclosing class:
- StringColumnStatisticsData
public static interface StringColumnStatisticsData.Builder extends SdkPojo, CopyableBuilder<StringColumnStatisticsData.Builder,StringColumnStatisticsData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringColumnStatisticsData.BuilderaverageLength(Double averageLength)The average string length in the column.StringColumnStatisticsData.BuildermaximumLength(Long maximumLength)The size of the longest string in the column.StringColumnStatisticsData.BuildernumberOfDistinctValues(Long numberOfDistinctValues)The number of distinct values in a column.StringColumnStatisticsData.BuildernumberOfNulls(Long numberOfNulls)The number of null values in the column.-
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
-
maximumLength
StringColumnStatisticsData.Builder maximumLength(Long maximumLength)
The size of the longest string in the column.
- Parameters:
maximumLength- The size of the longest string in the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
averageLength
StringColumnStatisticsData.Builder averageLength(Double averageLength)
The average string length in the column.
- Parameters:
averageLength- The average string length in the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberOfNulls
StringColumnStatisticsData.Builder numberOfNulls(Long numberOfNulls)
The number of null values in the column.
- Parameters:
numberOfNulls- The number of null values in the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberOfDistinctValues
StringColumnStatisticsData.Builder numberOfDistinctValues(Long numberOfDistinctValues)
The number of distinct values in a column.
- Parameters:
numberOfDistinctValues- The number of distinct values in a column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-