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 Default Methods Modifier and Type Method Description default Variable.BuilderdatasetContentVersionValue(Consumer<DatasetContentVersionValue.Builder> datasetContentVersionValue)The value of the variable as a structure that specifies a dataset content version.Variable.BuilderdatasetContentVersionValue(DatasetContentVersionValue datasetContentVersionValue)The value of the variable as a structure that specifies a dataset content version.Variable.BuilderdoubleValue(Double doubleValue)The value of the variable as a double (numeric).Variable.Buildername(String name)The name of the variable.default Variable.BuilderoutputFileUriValue(Consumer<OutputFileUriValue.Builder> outputFileUriValue)The value of the variable as a structure that specifies an output file URI.Variable.BuilderoutputFileUriValue(OutputFileUriValue outputFileUriValue)The value of the variable as a structure that specifies an output file URI.Variable.BuilderstringValue(String stringValue)The value of the variable as a string.-
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.
-
stringValue
Variable.Builder stringValue(String stringValue)
The value of the variable as a string.
- Parameters:
stringValue- The value of the variable as a string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
doubleValue
Variable.Builder doubleValue(Double doubleValue)
The value of the variable as a double (numeric).
- Parameters:
doubleValue- The value of the variable as a double (numeric).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasetContentVersionValue
Variable.Builder datasetContentVersionValue(DatasetContentVersionValue datasetContentVersionValue)
The value of the variable as a structure that specifies a dataset content version.
- Parameters:
datasetContentVersionValue- The value of the variable as a structure that specifies a dataset content version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasetContentVersionValue
default Variable.Builder datasetContentVersionValue(Consumer<DatasetContentVersionValue.Builder> datasetContentVersionValue)
The value of the variable as a structure that specifies a dataset content version.
This is a convenience method that creates an instance of theDatasetContentVersionValue.Builderavoiding the need to create one manually viaDatasetContentVersionValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todatasetContentVersionValue(DatasetContentVersionValue).- Parameters:
datasetContentVersionValue- a consumer that will call methods onDatasetContentVersionValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
datasetContentVersionValue(DatasetContentVersionValue)
-
outputFileUriValue
Variable.Builder outputFileUriValue(OutputFileUriValue outputFileUriValue)
The value of the variable as a structure that specifies an output file URI.
- Parameters:
outputFileUriValue- The value of the variable as a structure that specifies an output file URI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputFileUriValue
default Variable.Builder outputFileUriValue(Consumer<OutputFileUriValue.Builder> outputFileUriValue)
The value of the variable as a structure that specifies an output file URI.
This is a convenience method that creates an instance of theOutputFileUriValue.Builderavoiding the need to create one manually viaOutputFileUriValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooutputFileUriValue(OutputFileUriValue).- Parameters:
outputFileUriValue- a consumer that will call methods onOutputFileUriValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
outputFileUriValue(OutputFileUriValue)
-
-