@Stability(value=Stable)
public static interface CfnDataset.VariableProperty
extends software.amazon.jsii.JsiiSerializable
Each variable must have a name and a value given by one of stringValue , datasetContentVersionValue , or outputFileUriValue .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iotanalytics.*;
VariableProperty variableProperty = VariableProperty.builder()
.variableName("variableName")
// the properties below are optional
.datasetContentVersionValue(DatasetContentVersionValueProperty.builder()
.datasetName("datasetName")
.build())
.doubleValue(123)
.outputFileUriValue(OutputFileUriValueProperty.builder()
.fileName("fileName")
.build())
.stringValue("stringValue")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataset.VariableProperty.Builder
A builder for
CfnDataset.VariableProperty |
static class |
CfnDataset.VariableProperty.Jsii$Proxy
An implementation for
CfnDataset.VariableProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataset.VariableProperty.Builder |
builder() |
default Object |
getDatasetContentVersionValue()
The value of the variable as a structure that specifies a dataset content version.
|
default Number |
getDoubleValue()
The value of the variable as a double (numeric).
|
default Object |
getOutputFileUriValue()
The value of the variable as a structure that specifies an output file URI.
|
default String |
getStringValue()
The value of the variable as a string.
|
String |
getVariableName()
The name of the variable.
|
@Stability(value=Stable) @NotNull String getVariableName()
@Stability(value=Stable) @Nullable default Object getDatasetContentVersionValue()
@Stability(value=Stable) @Nullable default Number getDoubleValue()
@Stability(value=Stable) @Nullable default Object getOutputFileUriValue()
@Stability(value=Stable) @Nullable default String getStringValue()
@Stability(value=Stable) static CfnDataset.VariableProperty.Builder builder()
Copyright © 2022. All rights reserved.