MCPcopy Create free account
hub / github.com/aws/aws-cli / doc_output

Method doc_output

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

Source from the content-addressed store, hash-verified

684 doc.style.new_paragraph()
685
686 def doc_output(self, help_command, event_name, **kwargs):
687 doc = help_command.doc
688 doc.style.h2('Output')
689 operation_model = help_command.obj
690 output_shape = operation_model.output_shape
691 if output_shape is None or not output_shape.members:
692 doc.write('None')
693 else:
694 for member_name, member_shape in output_shape.members.items():
695 self._doc_member(doc, member_name, member_shape, stack=[])
696
697 def doc_meta_description(self, help_command, **kwargs):
698 doc = help_command.doc

Calls 3

_doc_memberMethod · 0.80
h2Method · 0.45
writeMethod · 0.45