interface SetVariableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTEvents.CfnDetectorModelPropsMixin.SetVariableProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotevents#CfnDetectorModelPropsMixin_SetVariableProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotevents.CfnDetectorModelPropsMixin.SetVariableProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotevents.CfnDetectorModelPropsMixin.SetVariableProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotevents » 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 { aws_iotevents as iotevents } from '@aws-cdk/cfn-property-mixins';
const setVariableProperty: iotevents.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