interface SetVariableProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoTEvents.CfnDetectorModel.SetVariableProperty | 
|  Java | software.amazon.awscdk.services.iotevents.CfnDetectorModel.SetVariableProperty | 
|  Python | aws_cdk.aws_iotevents.CfnDetectorModel.SetVariableProperty | 
|  TypeScript | @aws-cdk/aws-iotevents»CfnDetectorModel»SetVariableProperty | 
Information about the variable and its new value.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotevents from '@aws-cdk/aws-iotevents';
const setVariableProperty: iotevents.CfnDetectorModel.SetVariableProperty = {
  value: 'value',
  variableName: 'variableName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| value | string | The new value of the variable. | 
| variable | string | The name of the variable. | 
value
Type:
string
The new value of the variable.
variableName
Type:
string
The name of the variable.
