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

Method make_request

awscli/botocore/endpoint.py:110–116  ·  view source on GitHub ↗
(self, operation_model, request_dict)

Source from the content-addressed store, hash-verified

108 return f'{self._endpoint_prefix}({self.host})'
109
110 def make_request(self, operation_model, request_dict):
111 logger.debug(
112 "Making request for %s with params: %s",
113 operation_model,
114 request_dict,
115 )
116 return self._send_request(request_dict, operation_model)
117
118 def create_request(self, params, operation_model=None):
119 request = create_request_object(params)

Calls 1

_send_requestMethod · 0.95