interface MqttTopicConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTFleetWise.CfnCampaignPropsMixin.MqttTopicConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotfleetwise#CfnCampaignPropsMixin_MqttTopicConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotfleetwise.CfnCampaignPropsMixin.MqttTopicConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotfleetwise.CfnCampaignPropsMixin.MqttTopicConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotfleetwise » CfnCampaignPropsMixin » MqttTopicConfigProperty |
The MQTT topic to which the AWS IoT FleetWise campaign routes data.
For more information, see Device communication protocols in the AWS IoT Core Developer Guide .
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 { aws_iotfleetwise as iotfleetwise } from '@aws-cdk/cfn-property-mixins';
const mqttTopicConfigProperty: iotfleetwise.CfnCampaignPropsMixin.MqttTopicConfigProperty = {
executionRoleArn: 'executionRoleArn',
mqttTopicArn: 'mqttTopicArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| execution | string | The ARN of the role that grants AWS IoT FleetWise permission to access and act on messages sent to the MQTT topic. |
| mqtt | string | The ARN of the MQTT topic. |
executionRoleArn?
Type:
string
(optional)
The ARN of the role that grants AWS IoT FleetWise permission to access and act on messages sent to the MQTT topic.
mqttTopicArn?
Type:
string
(optional)
The ARN of the MQTT topic.

.NET
Go
Java
Python
TypeScript