Show / Hide Table of Contents

Class CfnCommandPropsMixin.CommandParameterProperty

Inheritance
object
CfnCommandPropsMixin.CommandParameterProperty
Implements
CfnCommandPropsMixin.ICommandParameterProperty
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.CommandParameterProperty : CfnCommandPropsMixin.ICommandParameterProperty
Syntax (vb)
Public Class CfnCommandPropsMixin.CommandParameterProperty Implements CfnCommandPropsMixin.ICommandParameterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparameter.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 commandParameterProperty = new CommandParameterProperty {
                 DefaultValue = new CommandParameterValueProperty {
                     B = false,
                     Bin = "bin",
                     D = 123,
                     I = 123,
                     L = "l",
                     S = "s",
                     Ul = "ul"
                 },
                 Description = "description",
                 Name = "name",
                 Type = "type",
                 Value = new CommandParameterValueProperty {
                     B = false,
                     Bin = "bin",
                     D = 123,
                     I = 123,
                     L = "l",
                     S = "s",
                     Ul = "ul"
                 },
                 ValueConditions = new [] { 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

CommandParameterProperty()

Properties

DefaultValue
Description
Name
Type
Value
ValueConditions

Constructors

CommandParameterProperty()

public CommandParameterProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparameter.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 commandParameterProperty = new CommandParameterProperty {
                 DefaultValue = new CommandParameterValueProperty {
                     B = false,
                     Bin = "bin",
                     D = 123,
                     I = 123,
                     L = "l",
                     S = "s",
                     Ul = "ul"
                 },
                 Description = "description",
                 Name = "name",
                 Type = "type",
                 Value = new CommandParameterValueProperty {
                     B = false,
                     Bin = "bin",
                     D = 123,
                     I = 123,
                     L = "l",
                     S = "s",
                     Ul = "ul"
                 },
                 ValueConditions = new [] { 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

DefaultValue

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

object

Remarks

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

Type union: either IResolvable or CfnCommandPropsMixin.ICommandParameterValueProperty

Description

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

string

Remarks

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

Name

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

string

Remarks

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

Type

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

string

Remarks

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

Value

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

object

Remarks

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

Type union: either IResolvable or CfnCommandPropsMixin.ICommandParameterValueProperty

ValueConditions

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

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnCommandPropsMixin.ICommandParameterValueConditionProperty)[]

Implements

CfnCommandPropsMixin.ICommandParameterProperty
Back to top Generated by DocFX