Show / Hide Table of Contents

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 .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-variable.html

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-variable.html#cfn-iotanalytics-dataset-variable-datasetcontentversionvalue

DoubleValue

The value of the variable as a double (numeric).

virtual Nullable<double> DoubleValue { get; }
Property Value

System.Nullable<System.Double>

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-variable.html#cfn-iotanalytics-dataset-variable-doublevalue

OutputFileUriValue

The value of the variable as a structure that specifies an output file URI.

virtual object OutputFileUriValue { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-variable.html#cfn-iotanalytics-dataset-variable-outputfileurivalue

StringValue

The value of the variable as a string.

virtual string StringValue { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-variable.html#cfn-iotanalytics-dataset-variable-stringvalue

VariableName

The name of the variable.

string VariableName { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-variable.html#cfn-iotanalytics-dataset-variable-variablename

Back to top Generated by DocFX