interface ConditionBasedSignalFetchConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnCampaignPropsMixin.ConditionBasedSignalFetchConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnCampaignPropsMixin_ConditionBasedSignalFetchConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnCampaignPropsMixin.ConditionBasedSignalFetchConfigProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnCampaignPropsMixin.ConditionBasedSignalFetchConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » 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 { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const conditionBasedSignalFetchConfigProperty: iotfleetwise_mixins.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