interface CommandParameterValueConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnCommandPropsMixin.CommandParameterValueConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnCommandPropsMixin_CommandParameterValueConditionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnCommandPropsMixin.CommandParameterValueConditionProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnCommandPropsMixin.CommandParameterValueConditionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnCommandPropsMixin » CommandParameterValueConditionProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
const commandParameterValueConditionProperty: iot.CfnCommandPropsMixin.CommandParameterValueConditionProperty = {
comparisonOperator: 'comparisonOperator',
operand: {
number: 'number',
numberRange: {
max: 'max',
min: 'min',
},
numbers: ['numbers'],
string: 'string',
strings: ['strings'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| comparison | string | |
| operand? | IResolvable | Command |
comparisonOperator?
Type:
string
(optional)
operand?
Type:
IResolvable | Command
(optional)

.NET
Go
Java
Python
TypeScript