Interface AggregationType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AggregationType.Builder,AggregationType>,SdkBuilder<AggregationType.Builder,AggregationType>,SdkPojo
- Enclosing class:
- AggregationType
public static interface AggregationType.Builder extends SdkPojo, CopyableBuilder<AggregationType.Builder,AggregationType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AggregationType.Buildername(String name)The name of the aggregation type.AggregationType.Buildername(AggregationTypeName name)The name of the aggregation type.AggregationType.Buildervalues(String... values)A list of the values of aggregation types.AggregationType.Buildervalues(Collection<String> values)A list of the values of aggregation types.-
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
-
name
AggregationType.Builder name(String name)
The name of the aggregation type.
- Parameters:
name- The name of the aggregation type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AggregationTypeName,AggregationTypeName
-
name
AggregationType.Builder name(AggregationTypeName name)
The name of the aggregation type.
- Parameters:
name- The name of the aggregation type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AggregationTypeName,AggregationTypeName
-
values
AggregationType.Builder values(Collection<String> values)
A list of the values of aggregation types.
- Parameters:
values- A list of the values of aggregation types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
AggregationType.Builder values(String... values)
A list of the values of aggregation types.
- Parameters:
values- A list of the values of aggregation types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-