Interface CfnDataset.IVariableProperty
An instance of a variable to be passed to the containerAction
execution.
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public interface IVariableProperty
Syntax (vb)
Public Interface IVariableProperty
Remarks
Each variable must have a name and a value given by one of stringValue
, datasetContentVersionValue
, or outputFileUriValue
.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTAnalytics;
VariableProperty variableProperty = new VariableProperty {
VariableName = "variableName",
// the properties below are optional
DatasetContentVersionValue = new DatasetContentVersionValueProperty {
DatasetName = "datasetName"
},
DoubleValue = 123,
OutputFileUriValue = new OutputFileUriValueProperty {
FileName = "fileName"
},
StringValue = "stringValue"
};
Synopsis
Properties
DatasetContentVersionValue | The value of the variable as a structure that specifies a dataset content version. |
DoubleValue | The value of the variable as a double (numeric). |
OutputFileUriValue | The value of the variable as a structure that specifies an output file URI. |
StringValue | The value of the variable as a string. |
VariableName | The name of the variable. |
Properties
DatasetContentVersionValue
The value of the variable as a structure that specifies a dataset content version.
virtual object DatasetContentVersionValue { get; }
Property Value
System.Object
Remarks
DoubleValue
The value of the variable as a double (numeric).
virtual Nullable<double> DoubleValue { get; }
Property Value
System.Nullable<System.Double>
Remarks
OutputFileUriValue
The value of the variable as a structure that specifies an output file URI.
virtual object OutputFileUriValue { get; }
Property Value
System.Object
Remarks
StringValue
The value of the variable as a string.
virtual string StringValue { get; }
Property Value
System.String
Remarks
VariableName
The name of the variable.
string VariableName { get; }
Property Value
System.String