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

Method read

awscli/telemetry.py:172–177  ·  view source on GitHub ↗
(self, key)

Source from the content-addressed store, hash-verified

170 self._connection = connection
171
172 def read(self, key):
173 cursor = self._connection.execute(self._READ_RECORD, (key,))
174 result = cursor.fetchone()
175 if result is None:
176 return
177 return CLISessionData(*result)
178
179 def read_host_id(self):
180 cursor = self._connection.execute(self._READ_HOST_ID)

Calls 2

CLISessionDataClass · 0.85
executeMethod · 0.45