Show / Hide Table of Contents

Class CfnCommandPropsMixin.CommandParameterValueConditionProperty

Inheritance
object
CfnCommandPropsMixin.CommandParameterValueConditionProperty
Implements
CfnCommandPropsMixin.ICommandParameterValueConditionProperty
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.IoT
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnCommandPropsMixin.CommandParameterValueConditionProperty : CfnCommandPropsMixin.ICommandParameterValueConditionProperty
Syntax (vb)
Public Class CfnCommandPropsMixin.CommandParameterValueConditionProperty Implements CfnCommandPropsMixin.ICommandParameterValueConditionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparametervaluecondition.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.IoT;

             var commandParameterValueConditionProperty = new CommandParameterValueConditionProperty {
                 ComparisonOperator = "comparisonOperator",
                 Operand = new CommandParameterValueComparisonOperandProperty {
                     Number = "number",
                     NumberRange = new CommandParameterValueNumberRangeProperty {
                         Max = "max",
                         Min = "min"
                     },
                     Numbers = new [] { "numbers" },
                     String = "string",
                     Strings = new [] { "strings" }
                 }
             };

Synopsis

Constructors

CommandParameterValueConditionProperty()

Properties

ComparisonOperator
Operand

Constructors

CommandParameterValueConditionProperty()

public CommandParameterValueConditionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparametervaluecondition.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.IoT;

             var commandParameterValueConditionProperty = new CommandParameterValueConditionProperty {
                 ComparisonOperator = "comparisonOperator",
                 Operand = new CommandParameterValueComparisonOperandProperty {
                     Number = "number",
                     NumberRange = new CommandParameterValueNumberRangeProperty {
                         Max = "max",
                         Min = "min"
                     },
                     Numbers = new [] { "numbers" },
                     String = "string",
                     Strings = new [] { "strings" }
                 }
             };

Properties

ComparisonOperator

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparametervaluecondition.html#cfn-iot-command-commandparametervaluecondition-comparisonoperator

Operand

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparametervaluecondition.html#cfn-iot-command-commandparametervaluecondition-operand

Type union: either IResolvable or CfnCommandPropsMixin.ICommandParameterValueComparisonOperandProperty

Implements

CfnCommandPropsMixin.ICommandParameterValueConditionProperty
Back to top Generated by DocFX