public static interface Variable.Builder extends SdkPojo, CopyableBuilder<Variable.Builder,Variable>
Modifier and Type | Method and Description |
---|---|
default Variable.Builder |
datasetContentVersionValue(Consumer<DatasetContentVersionValue.Builder> datasetContentVersionValue)
The value of the variable as a structure that specifies a data set content version.
|
Variable.Builder |
datasetContentVersionValue(DatasetContentVersionValue datasetContentVersionValue)
The value of the variable as a structure that specifies a data set content version.
|
Variable.Builder |
doubleValue(Double doubleValue)
The value of the variable as a double (numeric).
|
Variable.Builder |
name(String name)
The name of the variable.
|
default Variable.Builder |
outputFileUriValue(Consumer<OutputFileUriValue.Builder> outputFileUriValue)
The value of the variable as a structure that specifies an output file URI.
|
Variable.Builder |
outputFileUriValue(OutputFileUriValue outputFileUriValue)
The value of the variable as a structure that specifies an output file URI.
|
Variable.Builder |
stringValue(String stringValue)
The value of the variable as a string.
|
copy
applyMutation, build
Variable.Builder name(String name)
The name of the variable.
name
- The name of the variable.Variable.Builder stringValue(String stringValue)
The value of the variable as a string.
stringValue
- The value of the variable as a string.Variable.Builder doubleValue(Double doubleValue)
The value of the variable as a double (numeric).
doubleValue
- The value of the variable as a double (numeric).Variable.Builder datasetContentVersionValue(DatasetContentVersionValue datasetContentVersionValue)
The value of the variable as a structure that specifies a data set content version.
datasetContentVersionValue
- The value of the variable as a structure that specifies a data set content version.default Variable.Builder datasetContentVersionValue(Consumer<DatasetContentVersionValue.Builder> datasetContentVersionValue)
The value of the variable as a structure that specifies a data set content version.
This is a convenience that creates an instance of theDatasetContentVersionValue.Builder
avoiding the
need to create one manually via DatasetContentVersionValue.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately
and its result is passed to datasetContentVersionValue(DatasetContentVersionValue)
.datasetContentVersionValue
- a consumer that will call methods on DatasetContentVersionValue.Builder
datasetContentVersionValue(DatasetContentVersionValue)
Variable.Builder outputFileUriValue(OutputFileUriValue outputFileUriValue)
The value of the variable as a structure that specifies an output file URI.
outputFileUriValue
- The value of the variable as a structure that specifies an output file URI.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 that creates an instance of theOutputFileUriValue.Builder
avoiding the need to
create one manually via OutputFileUriValue.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to outputFileUriValue(OutputFileUriValue)
.outputFileUriValue
- a consumer that will call methods on OutputFileUriValue.Builder
outputFileUriValue(OutputFileUriValue)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.