in samtranslator/model/apigateway.py [0:0]
def _is_missing_identity_source(self, identity: Dict[str, Any]) -> bool:
if not identity:
return True
sam_expect(identity, self.api_logical_id, f"Authorizer.{self.name}.Identity").to_be_a_map()
headers = identity.get("Headers")
query_strings = identity.get("QueryStrings")
stage_variables = identity.get("StageVariables")
context = identity.get("Context")
ttl = identity.get("ReauthorizeEvery")
required_properties_missing = not headers and not query_strings and not stage_variables and not context
if ttl is None:
return required_properties_missing
try:
ttl_int = int(ttl)
# this will catch if and not convertable to an int
except (TypeError, ValueError):
# previous behavior before trying to read ttl
return required_properties_missing
# If we can resolve ttl, attempt to see if things are valid
return ttl_int > 0 and required_properties_missing