The AWS Amplify PubSub category provides connectivity with cloud-based message-oriented middleware. You can use PubSub to pass messages between your app instances and your app's backend creating real-time interactive experiences.
PubSub is available with **AWS IoT** and **Generic MQTT Over WebSocket Providers**.
With AWS IoT, AWS Amplify's PubSub automatically signs your HTTP requests when sending your messages.
## AWS IoT
When used with `AWSIoTProvider`, PubSub is capable of signing request according to [Signature Version 4](https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html).
To use in your app, import `AWSIoTProvider`:
```javascript
import { Amplify, PubSub } from 'aws-amplify';
import { AWSIoTProvider } from '@aws-amplify/pubsub';
```
Define your endpoint and region in your configuration:
```javascript
// Apply plugin with configuration
Amplify.addPluggable(
new AWSIoTProvider({
aws_pubsub_region: '',
aws_pubsub_endpoint:
'wss://xxxxxxxxxxxxx.iot..amazonaws.com/mqtt'
})
);
```
Find your `aws_pubsub_endpoint` by logging onto your **AWS Console**, choosing **IoT Core** from the list of services and then choosing _Settings_ from the left navigation pane.
### Step 1: Create IAM policies for AWS IoT
To use PubSub with AWS IoT, you will need to create the necessary IAM policies in the AWS IoT Console, and attach them to your Amazon Cognito Identity.
Go to IoT Core and choose _Security_ from the left navigation pane, and then _Policies_ from the dropdown menu. Next, click _Create_. The following `myIoTPolicy` policy will allow full access to all the topics.

### Step 2: Attach your policy to your Amazon Cognito Identity
The next step is attaching the policy to your _Cognito Identity_.
You can retrieve the `Cognito Identity Id` of a logged in user with Auth Module:
```javascript
Auth.currentCredentials().then((info) => {
const cognitoIdentityId = info.identityId;
});
```
Then, you need to send your _Cognito Identity Id_ to the AWS backend and attach `myIoTPolicy`. You can do this with the following [AWS CLI](https://aws.amazon.com/cli/) command:
```bash
aws iot attach-policy --policy-name 'myIoTPolicy' --target ''
```
### Step 3: Allow the Amazon Cognito Authenticated Role to access IoT Services
For your Cognito Authenticated Role to be able to interact with **AWS IoT** it may be necessary to update its permissions, if you haven't done this before.
One way of doing this is to log to your **AWS Console**, select **CloudFormation** from the available services. Locate the parent stack of your solution: it is usually named `-`.
Select the **Resources** tab and tap on `AuthRole` **Physical ID**.
The IAM console will be opened in a new tab. Once there, tap on the button **Attach Policies**, then search `AWSIoTDataAccess` and `AWSIoTConfigAccess`, select them and tap on **Attach policy**.
If you are using Cognito Groups, the IAM role associated with that group also need the `AWSIoTDataAccess` and `AWSIoTConfigAccess` policies attached to it.
> Failing to grant IoT related permissions to the Cognito Authenticated Role will result in errors similar to the following in your browser console: `errorCode: 8, errorMessage: AMQJS0008I Socket closed.`
## Third Party MQTT Providers
Import PubSub module and related service provider plugin to your app:
```javascript
import { PubSub } from 'aws-amplify';
import { MqttOverWSProvider } from '@aws-amplify/pubsub/lib/Providers';
```
To configure your service provider with a service endpoint, add following code:
```javascript
// Apply plugin with configuration
Amplify.addPluggable(
new MqttOverWSProvider({
aws_pubsub_endpoint: 'wss://iot.eclipse.org:443/mqtt'
})
);
```
You can integrate any MQTT Over WebSocket provider with your app. Click [here](https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html#mqtt-ws) to learn more about MQTT Over WebSocket.
Only JSON serializable message payloads are currently supported for MQTT providers within PubSub. If you are attempting to use message payloads that are non-JSON serializable, consider transforming the payload into a format that aligns with the input type expected by [MQTT](https://docs.aws.amazon.com/iot/latest/developerguide/mqtt.html).
## How to reconfigure PubSub providers during runtime
Sometimes you need to reconfigure your PubSub provider when working with multiple concurrent PubSub providers, reconfiguring authentication states, or changing the IoT connection region. To reconfigure the PubSub provider, remove the existing provider using `removePluggable` and add an updated PubSub provider using `addPluggable`.
```javascript
import { Amplify, PubSub } from 'aws-amplify';
import { AWSIoTProvider } from '@aws-amplify/pubsub';
// Apply plugin with configuration
PubSub.addPluggable(
new AWSIoTProvider({
aws_pubsub_region: '',
aws_pubsub_endpoint:
'wss://xxxxxxxxxxxxx.iot..amazonaws.com/mqtt'
})
);
// Remove plugin using the provider name
PubSub.removePluggable('AWSIoTProvider');
// Apply plugin with new configuration
PubSub.addPluggable(
new AWSIoTProvider({
aws_pubsub_region: '',
aws_pubsub_endpoint:
'wss://xxxxxxxxxxxxx.iot..amazonaws.com/mqtt'
})
);
```