interface ConditionBasedSignalFetchConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTFleetWise.CfnCampaignPropsMixin.ConditionBasedSignalFetchConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotfleetwise#CfnCampaignPropsMixin_ConditionBasedSignalFetchConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotfleetwise.CfnCampaignPropsMixin.ConditionBasedSignalFetchConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotfleetwise.CfnCampaignPropsMixin.ConditionBasedSignalFetchConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotfleetwise » CfnCampaignPropsMixin » ConditionBasedSignalFetchConfigProperty |
Specifies the condition under which a signal fetch occurs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotfleetwise as iotfleetwise } from '@aws-cdk/cfn-property-mixins';
const conditionBasedSignalFetchConfigProperty: iotfleetwise.CfnCampaignPropsMixin.ConditionBasedSignalFetchConfigProperty = {
conditionExpression: 'conditionExpression',
triggerMode: 'triggerMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| condition | string | The condition that must be satisfied to trigger a signal fetch. |
| trigger | string | Indicates the mode in which the signal fetch is triggered. |
conditionExpression?
Type:
string
(optional)
The condition that must be satisfied to trigger a signal fetch.
triggerMode?
Type:
string
(optional)
Indicates the mode in which the signal fetch is triggered.

.NET
Go
Java
Python
TypeScript