(self, session)
| 1057 | """Call an AWS operation and format the response.""" |
| 1058 | |
| 1059 | def __init__(self, session): |
| 1060 | self._session = session |
| 1061 | self._output_stream_factory = OutputStreamFactory(session) |
| 1062 | |
| 1063 | def invoke(self, service_name, operation_name, parameters, parsed_globals): |
| 1064 | """Invoke an operation and format the response. |
nothing calls this directly
no test coverage detected