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

Method scope

awscli/botocore/auth.py:388–394  ·  view source on GitHub ↗
(self, request)

Source from the content-addressed store, hash-verified

386 return normalized_path
387
388 def scope(self, request):
389 scope = [self.credentials.access_key]
390 scope.append(request.context['timestamp'][0:8])
391 scope.append(self._region_name)
392 scope.append(self._service_name)
393 scope.append('aws4_request')
394 return '/'.join(scope)
395
396 def credential_scope(self, request):
397 scope = []

Callers 5

add_authMethod · 0.80
add_authMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected