Interface CfnDatasetPropsMixin.VariableProperty

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

@Stability(Stable) public static interface CfnDatasetPropsMixin.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.mixins.preview.services.iotanalytics.mixins.*;
 VariableProperty variableProperty = VariableProperty.builder()
         .datasetContentVersionValue(DatasetContentVersionValueProperty.builder()
                 .datasetName("datasetName")
                 .build())
         .doubleValue(123)
         .outputFileUriValue(OutputFileUriValueProperty.builder()
                 .fileName("fileName")
                 .build())
         .stringValue("stringValue")
         .variableName("variableName")
         .build();
 

See Also: