Interface ScanConditionPair.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScanConditionPair.Builder,ScanConditionPair>,SdkBuilder<ScanConditionPair.Builder,ScanConditionPair>,SdkPojo
- Enclosing class:
- ScanConditionPair
public static interface ScanConditionPair.Builder extends SdkPojo, CopyableBuilder<ScanConditionPair.Builder,ScanConditionPair>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScanConditionPair.Builderkey(String key)Represents the key in the map condition.ScanConditionPair.Buildervalue(String value)Represents optional value in the map condition.-
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
ScanConditionPair.Builder key(String key)
Represents the key in the map condition.
- Parameters:
key- Represents the key in the map condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
ScanConditionPair.Builder value(String value)
Represents optional value in the map condition. If not specified, only the key will be matched.
- Parameters:
value- Represents optional value in the map condition. If not specified, only the key will be matched.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-