Show / Hide Table of Contents

Class CfnFeature.VariationObjectProperty

This structure contains the name and variation value of one variation of a feature.

Inheritance
System.Object
CfnFeature.VariationObjectProperty
Implements
CfnFeature.IVariationObjectProperty
Namespace: Amazon.CDK.AWS.Evidently
Assembly: Amazon.CDK.AWS.Evidently.dll
Syntax (csharp)
public class VariationObjectProperty : Object, CfnFeature.IVariationObjectProperty
Syntax (vb)
Public Class VariationObjectProperty
    Inherits Object
    Implements CfnFeature.IVariationObjectProperty
Remarks

It can contain only one of the following parameters: BooleanValue , DoubleValue , LongValue or StringValue .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-feature-variationobject.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.Evidently;

var variationObjectProperty = new VariationObjectProperty {
    VariationName = "variationName",

    // the properties below are optional
    BooleanValue = false,
    DoubleValue = 123,
    LongValue = 123,
    StringValue = "stringValue"
};

Synopsis

Constructors

VariationObjectProperty()

Properties

BooleanValue

The value assigned to this variation, if the variation type is boolean.

DoubleValue

The value assigned to this variation, if the variation type is a double.

LongValue

The value assigned to this variation, if the variation type is a long.

StringValue

The value assigned to this variation, if the variation type is a string.

VariationName

A name for the variation.

Constructors

VariationObjectProperty()

public VariationObjectProperty()

Properties

BooleanValue

The value assigned to this variation, if the variation type is boolean.

public object BooleanValue { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-feature-variationobject.html#cfn-evidently-feature-variationobject-booleanvalue

DoubleValue

The value assigned to this variation, if the variation type is a double.

public Nullable<double> DoubleValue { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-feature-variationobject.html#cfn-evidently-feature-variationobject-doublevalue

LongValue

The value assigned to this variation, if the variation type is a long.

public Nullable<double> LongValue { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-feature-variationobject.html#cfn-evidently-feature-variationobject-longvalue

StringValue

The value assigned to this variation, if the variation type is a string.

public string StringValue { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-feature-variationobject.html#cfn-evidently-feature-variationobject-stringvalue

VariationName

A name for the variation.

public string VariationName { get; set; }
Property Value

System.String

Remarks

It can include up to 127 characters.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-feature-variationobject.html#cfn-evidently-feature-variationobject-variationname

Implements

CfnFeature.IVariationObjectProperty
Back to top Generated by DocFX