| 178 | |
| 179 | |
| 180 | class ResponseExampleDocumenter(BaseExampleDocumenter): |
| 181 | EVENT_NAME = 'response-example' |
| 182 | |
| 183 | def document_shape_type_event_stream( |
| 184 | self, section, shape, history, **kwargs |
| 185 | ): |
| 186 | section.write('EventStream(') |
| 187 | self.document_shape_type_structure(section, shape, history, **kwargs) |
| 188 | end_section = section.add_new_section('event-stream-end') |
| 189 | end_section.write(')') |
| 190 | |
| 191 | |
| 192 | class RequestExampleDocumenter(BaseExampleDocumenter): |
no outgoing calls