interface SetVariableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTEvents.Mixins.CfnDetectorModelPropsMixin.SetVariableProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotevents/mixins#CfnDetectorModelPropsMixin_SetVariableProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotevents.mixins.CfnDetectorModelPropsMixin.SetVariableProperty |
Python | aws_cdk.mixins_preview.aws_iotevents.mixins.CfnDetectorModelPropsMixin.SetVariableProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotevents » mixins » CfnDetectorModelPropsMixin » 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 { mixins as iotevents_mixins } from '@aws-cdk/mixins-preview/aws-iotevents';
const setVariableProperty: iotevents_mixins.CfnDetectorModelPropsMixin.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
(optional)
The new value of the variable.
variableName?
Type:
string
(optional)
The name of the variable.

.NET
Go
Java
Python
TypeScript