interface SignalFetchInformationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnCampaignPropsMixin.SignalFetchInformationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnCampaignPropsMixin_SignalFetchInformationProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnCampaignPropsMixin.SignalFetchInformationProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnCampaignPropsMixin.SignalFetchInformationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnCampaignPropsMixin » SignalFetchInformationProperty |
Information about the signal to be fetched.
Access to certain AWS IoT FleetWise features is currently gated. For more information, see AWS Region and feature availability in the AWS IoT FleetWise Developer Guide .
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 signalFetchInformationProperty: iotfleetwise_mixins.CfnCampaignPropsMixin.SignalFetchInformationProperty = {
actions: ['actions'],
conditionLanguageVersion: 123,
fullyQualifiedName: 'fullyQualifiedName',
signalFetchConfig: {
conditionBased: {
conditionExpression: 'conditionExpression',
triggerMode: 'triggerMode',
},
timeBased: {
executionFrequencyMs: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | string[] | The actions to be performed by the signal fetch. |
| condition | number | The version of the condition language used. |
| fully | string | The fully qualified name of the signal to be fetched. |
| signal | IResolvable | Signal | The configuration of the signal fetch operation. |
actions?
Type:
string[]
(optional)
The actions to be performed by the signal fetch.
conditionLanguageVersion?
Type:
number
(optional)
The version of the condition language used.
fullyQualifiedName?
Type:
string
(optional)
The fully qualified name of the signal to be fetched.
signalFetchConfig?
Type:
IResolvable | Signal
(optional)
The configuration of the signal fetch operation.

.NET
Go
Java
Python
TypeScript