interface MqttTopicConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTFleetWise.CfnCampaign.MqttTopicConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnCampaign_MqttTopicConfigProperty |
Java | software.amazon.awscdk.services.iotfleetwise.CfnCampaign.MqttTopicConfigProperty |
Python | aws_cdk.aws_iotfleetwise.CfnCampaign.MqttTopicConfigProperty |
TypeScript | aws-cdk-lib » aws_iotfleetwise » CfnCampaign » 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-lib';
const mqttTopicConfigProperty: iotfleetwise.CfnCampaign.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
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
The ARN of the MQTT topic.

.NET
Go
Java
Python
TypeScript