Interface Taint.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Taint.Builder,Taint>,SdkBuilder<Taint.Builder,Taint>,SdkPojo
- Enclosing class:
- Taint
public static interface Taint.Builder extends SdkPojo, CopyableBuilder<Taint.Builder,Taint>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Taint.Buildereffect(String effect)The effect of the taint.Taint.Buildereffect(TaintEffect effect)The effect of the taint.Taint.Builderkey(String key)The key of the taint.Taint.Buildervalue(String value)The value of the taint.-
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
Taint.Builder key(String key)
The key of the taint.
- Parameters:
key- The key of the taint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
Taint.Builder value(String value)
The value of the taint.
- Parameters:
value- The value of the taint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
effect
Taint.Builder effect(String effect)
The effect of the taint.
- Parameters:
effect- The effect of the taint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TaintEffect,TaintEffect
-
effect
Taint.Builder effect(TaintEffect effect)
The effect of the taint.
- Parameters:
effect- The effect of the taint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TaintEffect,TaintEffect
-
-