Class CfnDatasetPropsMixin.VariableProperty
An instance of a variable to be passed to the containerAction execution.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.IoTAnalytics
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDatasetPropsMixin.VariableProperty : CfnDatasetPropsMixin.IVariableProperty
Syntax (vb)
Public Class CfnDatasetPropsMixin.VariableProperty Implements CfnDatasetPropsMixin.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.CfnPropertyMixins.AWS.IoTAnalytics;
var variableProperty = new VariableProperty {
DatasetContentVersionValue = new DatasetContentVersionValueProperty {
DatasetName = "datasetName"
},
DoubleValue = 123,
OutputFileUriValue = new OutputFileUriValueProperty {
FileName = "fileName"
},
StringValue = "stringValue",
VariableName = "variableName"
};
Synopsis
Constructors
| VariableProperty() | An instance of a variable to be passed to the |
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. |
Constructors
VariableProperty()
An instance of a variable to be passed to the containerAction execution.
public VariableProperty()
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.CfnPropertyMixins.AWS.IoTAnalytics;
var variableProperty = new VariableProperty {
DatasetContentVersionValue = new DatasetContentVersionValueProperty {
DatasetName = "datasetName"
},
DoubleValue = 123,
OutputFileUriValue = new OutputFileUriValueProperty {
FileName = "fileName"
},
StringValue = "stringValue",
VariableName = "variableName"
};
Properties
DatasetContentVersionValue
The value of the variable as a structure that specifies a dataset content version.
public object? DatasetContentVersionValue { get; set; }
Property Value
Remarks
DoubleValue
The value of the variable as a double (numeric).
public double? DoubleValue { get; set; }
Property Value
Remarks
OutputFileUriValue
The value of the variable as a structure that specifies an output file URI.
public object? OutputFileUriValue { get; set; }
Property Value
Remarks
StringValue
The value of the variable as a string.
public string? StringValue { get; set; }
Property Value
Remarks
VariableName
The name of the variable.
public string? VariableName { get; set; }