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