Skip to content

Commit

Permalink
Remove username password from auth
Browse files Browse the repository at this point in the history
  • Loading branch information
alfred2g committed Dec 5, 2023
1 parent ff04527 commit f6bf558
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion samples/mqtt/websocket_connect/README_custom_auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ void connection_setup(int argc, char *argv[], ApiHandle &apiHandle, Utils::cmdDa
(cmdData.input_customTokenKeyName),
(cmdData.input_customTokenValue));
}
</code><pre>
</code></pre>
</details>

## How to run
Expand Down
4 changes: 1 addition & 3 deletions samples/mqtt/websocket_connect/README_static_credentials.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ For this sample, using Websockets will attempt to fetch the AWS credentials to a

<details>
<summary> (code snipet to replace similar section)</summary>
<pre>
<pre language="c++"> <code>
void connection_setup(int argc, char *argv[], ApiHandle &apiHandle, Utils::cmdData &cmdData,
Aws::Iot::MqttClientConnectionConfigBuilder &clientConfigBuilder)
Expand All @@ -72,8 +71,7 @@ void connection_setup(int argc, char *argv[], ApiHandle &apiHandle, Utils::cmdDa
clientConfigBuilder = Aws::Iot::MqttClientConnectionConfigBuilder(config);
clientConfigBuilder.WithEndpoint((cmdData.input_endpoint));
}
</code>
</pre>
</code> </pre>
</details>

## How to run
Expand Down

0 comments on commit f6bf558

Please sign in to comment.