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 name of the dimension that you want to filter on.DimensionValues.Builderkey(Dimension key)The name of the dimension that you want to filter on.DimensionValues.BuildermatchOptions(Collection<MatchOption> matchOptions)The match options that you can use to filter your results.DimensionValues.BuildermatchOptions(MatchOption... matchOptions)The match options that you can use to filter your results.DimensionValues.BuildermatchOptionsWithStrings(String... matchOptions)The match options that you can use to filter your results.DimensionValues.BuildermatchOptionsWithStrings(Collection<String> matchOptions)The match options that you can use to filter your results.DimensionValues.Buildervalues(String... values)The metadata values you can specify to filter upon, so that the results all match at least one of the specified values.DimensionValues.Buildervalues(Collection<String> values)The metadata values you can specify to filter upon, so that the results all match at least one of the specified values.-
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
-
key
DimensionValues.Builder key(String key)
The name of the dimension that you want to filter on.
-
key
DimensionValues.Builder key(Dimension key)
The name of the dimension that you want to filter on.
-
matchOptionsWithStrings
DimensionValues.Builder matchOptionsWithStrings(Collection<String> matchOptions)
The match options that you can use to filter your results. You can specify only one of these values in the array.
- Parameters:
matchOptions- The match options that you can use to filter your results. You can specify only one of these values in the array.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
matchOptionsWithStrings
DimensionValues.Builder matchOptionsWithStrings(String... matchOptions)
The match options that you can use to filter your results. You can specify only one of these values in the array.
- Parameters:
matchOptions- The match options that you can use to filter your results. You can specify only one of these values in the array.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
matchOptions
DimensionValues.Builder matchOptions(Collection<MatchOption> matchOptions)
The match options that you can use to filter your results. You can specify only one of these values in the array.
- Parameters:
matchOptions- The match options that you can use to filter your results. You can specify only one of these values in the array.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
matchOptions
DimensionValues.Builder matchOptions(MatchOption... matchOptions)
The match options that you can use to filter your results. You can specify only one of these values in the array.
- Parameters:
matchOptions- The match options that you can use to filter your results. You can specify only one of these values in the array.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
DimensionValues.Builder values(Collection<String> values)
The metadata values you can specify to filter upon, so that the results all match at least one of the specified values.
- Parameters:
values- The metadata values you can specify to filter upon, so that the results all match at least one of the specified values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
DimensionValues.Builder values(String... values)
The metadata values you can specify to filter upon, so that the results all match at least one of the specified values.
- Parameters:
values- The metadata values you can specify to filter upon, so that the results all match at least one of the specified values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-