1{
2    "Version": "2012-10-17",
3    "Statement": [
4        {
5            "Effect": "Allow",
6            "Action": "iot:Connect",
7            "Resource": "arn:aws:iot:<aws-region>:<aws-account-id>:*"
8        },
9        {
10            "Effect": "Allow",
11            "Action": "iot:Publish",
12            "Resource": "arn:aws:iot:<aws-region>:<aws-account-id>:*"
13        },
14        {
15            "Effect": "Allow",
16            "Action": "iot:Subscribe",
17            "Resource": "arn:aws:iot:<aws-region>:<aws-account-id>:*"
18        },
19        {
20            "Effect": "Allow",
21            "Action": "iot:Receive",
22            "Resource": "arn:aws:iot:<aws-region>:<aws-account-id>:*"
23        }
24    ]
25}