Show / Hide Table of Contents

Class CfnDatasetPropsMixin.VariableProperty

An instance of a variable to be passed to the containerAction execution.

Inheritance
object
CfnDatasetPropsMixin.VariableProperty
Implements
CfnDatasetPropsMixin.IVariableProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 .

See: 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.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 containerAction execution.

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 .

See: 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.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

object

Remarks

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

Type union: either IResolvable or CfnDatasetPropsMixin.IDatasetContentVersionValueProperty

DoubleValue

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

public double? DoubleValue { get; set; }
Property Value

double?

Remarks

See: 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.

public object? OutputFileUriValue { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDatasetPropsMixin.IOutputFileUriValueProperty

StringValue

The value of the variable as a string.

public string? StringValue { get; set; }
Property Value

string

Remarks

See: 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.

public string? VariableName { get; set; }
Property Value

string

Remarks

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

Implements

CfnDatasetPropsMixin.IVariableProperty
Back to top Generated by DocFX