Interface CfnDataset.VariableProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataset.VariableProperty.Jsii$Proxy
Enclosing class:
CfnDataset

@Stability(Stable) public static interface CfnDataset.VariableProperty extends software.amazon.jsii.JsiiSerializable
An instance of a variable to be passed to the containerAction execution.

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();
 

See Also: