MCPcopy Index your code
hub / github.com/aws/aws-cli / doc_description

Method doc_description

awscli/clidocs.py:494–500  ·  view source on GitHub ↗
(self, help_command, **kwargs)

Source from the content-addressed store, hash-verified

492 AWS_DOC_BASE = 'https://docs.aws.amazon.com/goto/WebAPI'
493
494 def doc_description(self, help_command, **kwargs):
495 doc = help_command.doc
496 operation_model = help_command.obj
497 doc.style.h2('Description')
498 doc.include_doc_string(operation_model.documentation)
499 self._add_webapi_crosslink(help_command)
500 self._add_note_for_document_types_if_used(help_command)
501
502 def _add_webapi_crosslink(self, help_command):
503 doc = help_command.doc

Calls 4

_add_webapi_crosslinkMethod · 0.95
h2Method · 0.45
include_doc_stringMethod · 0.45