Interface DimensionValues.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DimensionValues.Builder,DimensionValues>,SdkBuilder<DimensionValues.Builder,DimensionValues>,SdkPojo
- Enclosing class:
- DimensionValues
public static interface DimensionValues.Builder extends SdkPojo, CopyableBuilder<DimensionValues.Builder,DimensionValues>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DimensionValues.Builderkey(String key)The names of the metadata types that you can use to filter and group your results.DimensionValues.Builderkey(Dimension key)The names of the metadata types that you can use to filter and group your results.DimensionValues.Buildervalues(String... values)The metadata values that you can use to filter and group your results.DimensionValues.Buildervalues(Collection<String> values)The metadata values that you can use to filter and group your results.-
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
-
key
DimensionValues.Builder key(String key)
The names of the metadata types that you can use to filter and group your results.
-
key
DimensionValues.Builder key(Dimension key)
The names of the metadata types that you can use to filter and group your results.
-
values
DimensionValues.Builder values(Collection<String> values)
The metadata values that you can use to filter and group your results.
- Parameters:
values- The metadata values that you can use to filter and group your results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
DimensionValues.Builder values(String... values)
The metadata values that you can use to filter and group your results.
- Parameters:
values- The metadata values that you can use to filter and group your results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-