(help_command, **kwargs)
| 19 | |
| 20 | |
| 21 | def add_custom_endpoint_url_note(help_command, **kwargs): |
| 22 | style = help_command.doc.style |
| 23 | style.start_note() |
| 24 | style.doc.writeln( |
| 25 | 'For production code it is strongly recommended to use the custom endpoint ' |
| 26 | 'for your account (retrievable via the iot describe-endpoint command) to ensure ' |
| 27 | 'best availability and reachability of the service. The default endpoints ' |
| 28 | '(intended for testing purposes only) can be found at ' |
| 29 | 'https://docs.aws.amazon.com/general/latest/gr/iot-core.html#iot-core-data-plane-endpoints' |
| 30 | ) |
| 31 | style.end_note() |
nothing calls this directly
no test coverage detected