Module aws_lambda_powertools.utilities.data_classes.appsync_resolver_event
Expand source code
from typing import Any, Dict, List, Optional, Union
from aws_lambda_powertools.utilities.data_classes.common import DictWrapper, get_header_value
def get_identity_object(identity: Optional[dict]) -> Any:
"""Get the identity object based on the best detected type"""
# API_KEY authorization
if identity is None:
return None
# AMAZON_COGNITO_USER_POOLS authorization
if "sub" in identity:
return AppSyncIdentityCognito(identity)
# AWS_IAM authorization
return AppSyncIdentityIAM(identity)
class AppSyncIdentityIAM(DictWrapper):
"""AWS_IAM authorization"""
@property
def source_ip(self) -> List[str]:
"""The source IP address of the caller received by AWS AppSync. """
return self["sourceIp"]
@property
def username(self) -> str:
"""The user name of the authenticated user. IAM user principal"""
return self["username"]
@property
def account_id(self) -> str:
"""The AWS account ID of the caller."""
return self["accountId"]
@property
def cognito_identity_pool_id(self) -> str:
"""The Amazon Cognito identity pool ID associated with the caller."""
return self["cognitoIdentityPoolId"]
@property
def cognito_identity_id(self) -> str:
"""The Amazon Cognito identity ID of the caller."""
return self["cognitoIdentityId"]
@property
def user_arn(self) -> str:
"""The ARN of the IAM user."""
return self["userArn"]
@property
def cognito_identity_auth_type(self) -> str:
"""Either authenticated or unauthenticated based on the identity type."""
return self["cognitoIdentityAuthType"]
@property
def cognito_identity_auth_provider(self) -> str:
"""A comma separated list of external identity provider information used in obtaining the
credentials used to sign the request."""
return self["cognitoIdentityAuthProvider"]
class AppSyncIdentityCognito(DictWrapper):
"""AMAZON_COGNITO_USER_POOLS authorization"""
@property
def source_ip(self) -> List[str]:
"""The source IP address of the caller received by AWS AppSync. """
return self["sourceIp"]
@property
def username(self) -> str:
"""The user name of the authenticated user."""
return self["username"]
@property
def sub(self) -> str:
"""The UUID of the authenticated user."""
return self["sub"]
@property
def claims(self) -> Dict[str, str]:
"""The claims that the user has."""
return self["claims"]
@property
def default_auth_strategy(self) -> str:
"""The default authorization strategy for this caller (ALLOW or DENY)."""
return self["defaultAuthStrategy"]
@property
def groups(self) -> List[str]:
"""List of OIDC groups"""
return self["groups"]
@property
def issuer(self) -> str:
"""The token issuer."""
return self["issuer"]
class AppSyncResolverEventInfo(DictWrapper):
"""The info section contains information about the GraphQL request"""
@property
def field_name(self) -> str:
"""The name of the field that is currently being resolved."""
return self["fieldName"]
@property
def parent_type_name(self) -> str:
"""The name of the parent type for the field that is currently being resolved."""
return self["parentTypeName"]
@property
def variables(self) -> Optional[Dict[str, str]]:
"""A map which holds all variables that are passed into the GraphQL request."""
return self.get("variables")
@property
def selection_set_list(self) -> Optional[List[str]]:
"""A list representation of the fields in the GraphQL selection set. Fields that are aliased will
only be referenced by the alias name, not the field name."""
return self.get("selectionSetList")
@property
def selection_set_graphql(self) -> Optional[str]:
"""A string representation of the selection set, formatted as GraphQL schema definition language (SDL).
Although fragments are not be merged into the selection set, inline fragments are preserved."""
return self.get("selectionSetGraphQL")
class AppSyncResolverEvent(DictWrapper):
"""AppSync resolver event
**NOTE:** AppSync Resolver Events can come in various shapes this data class
supports both Amplify GraphQL directive @function and Direct Lambda Resolver
Documentation:
-------------
- https://docs.aws.amazon.com/appsync/latest/devguide/resolver-context-reference.html
- https://docs.amplify.aws/cli/graphql-transformer/function#structure-of-the-function-event
"""
def __init__(self, data: dict):
super().__init__(data)
info: Optional[dict] = data.get("info")
if not info:
info = {"fieldName": self.get("fieldName"), "parentTypeName": self.get("typeName")}
self._info = AppSyncResolverEventInfo(info)
@property
def type_name(self) -> str:
"""The name of the parent type for the field that is currently being resolved."""
return self.info.parent_type_name
@property
def field_name(self) -> str:
"""The name of the field that is currently being resolved."""
return self.info.field_name
@property
def arguments(self) -> Dict[str, Any]:
"""A map that contains all GraphQL arguments for this field."""
return self["arguments"]
@property
def identity(self) -> Union[None, AppSyncIdentityIAM, AppSyncIdentityCognito]:
"""An object that contains information about the caller.
Depending of the type of identify found:
- API_KEY authorization - returns None
- AWS_IAM authorization - returns AppSyncIdentityIAM
- AMAZON_COGNITO_USER_POOLS authorization - returns AppSyncIdentityCognito
"""
return get_identity_object(self.get("identity"))
@property
def source(self) -> Optional[Dict[str, Any]]:
"""A map that contains the resolution of the parent field."""
return self.get("source")
@property
def request_headers(self) -> Dict[str, str]:
"""Request headers"""
return self["request"]["headers"]
@property
def prev_result(self) -> Optional[Dict[str, Any]]:
"""It represents the result of whatever previous operation was executed in a pipeline resolver."""
prev = self.get("prev")
if not prev:
return None
return prev.get("result")
@property
def info(self) -> AppSyncResolverEventInfo:
"""The info section contains information about the GraphQL request."""
return self._info
@property
def stash(self) -> Optional[dict]:
"""The stash is a map that is made available inside each resolver and function mapping template.
The same stash instance lives through a single resolver execution. This means that you can use the
stash to pass arbitrary data across request and response mapping templates, and across functions in
a pipeline resolver."""
return self.get("stash")
def get_header_value(
self, name: str, default_value: Optional[str] = None, case_sensitive: Optional[bool] = False
) -> Optional[str]:
"""Get header value by name
Parameters
----------
name: str
Header name
default_value: str, optional
Default value if no value was found by name
case_sensitive: bool
Whether to use a case sensitive look up
Returns
-------
str, optional
Header value
"""
return get_header_value(self.request_headers, name, default_value, case_sensitive)
Functions
def get_identity_object(identity: Union[dict, NoneType]) ‑> Any
-
Get the identity object based on the best detected type
Expand source code
def get_identity_object(identity: Optional[dict]) -> Any: """Get the identity object based on the best detected type""" # API_KEY authorization if identity is None: return None # AMAZON_COGNITO_USER_POOLS authorization if "sub" in identity: return AppSyncIdentityCognito(identity) # AWS_IAM authorization return AppSyncIdentityIAM(identity)
Classes
class AppSyncIdentityCognito (data: Dict[str, Any])
-
AMAZON_COGNITO_USER_POOLS authorization
Expand source code
class AppSyncIdentityCognito(DictWrapper): """AMAZON_COGNITO_USER_POOLS authorization""" @property def source_ip(self) -> List[str]: """The source IP address of the caller received by AWS AppSync. """ return self["sourceIp"] @property def username(self) -> str: """The user name of the authenticated user.""" return self["username"] @property def sub(self) -> str: """The UUID of the authenticated user.""" return self["sub"] @property def claims(self) -> Dict[str, str]: """The claims that the user has.""" return self["claims"] @property def default_auth_strategy(self) -> str: """The default authorization strategy for this caller (ALLOW or DENY).""" return self["defaultAuthStrategy"] @property def groups(self) -> List[str]: """List of OIDC groups""" return self["groups"] @property def issuer(self) -> str: """The token issuer.""" return self["issuer"]
Ancestors
Instance variables
var claims : Dict[str, str]
-
The claims that the user has.
Expand source code
@property def claims(self) -> Dict[str, str]: """The claims that the user has.""" return self["claims"]
var default_auth_strategy : str
-
The default authorization strategy for this caller (ALLOW or DENY).
Expand source code
@property def default_auth_strategy(self) -> str: """The default authorization strategy for this caller (ALLOW or DENY).""" return self["defaultAuthStrategy"]
var groups : List[str]
-
List of OIDC groups
Expand source code
@property def groups(self) -> List[str]: """List of OIDC groups""" return self["groups"]
var issuer : str
-
The token issuer.
Expand source code
@property def issuer(self) -> str: """The token issuer.""" return self["issuer"]
var source_ip : List[str]
-
The source IP address of the caller received by AWS AppSync.
Expand source code
@property def source_ip(self) -> List[str]: """The source IP address of the caller received by AWS AppSync. """ return self["sourceIp"]
var sub : str
-
The UUID of the authenticated user.
Expand source code
@property def sub(self) -> str: """The UUID of the authenticated user.""" return self["sub"]
var username : str
-
The user name of the authenticated user.
Expand source code
@property def username(self) -> str: """The user name of the authenticated user.""" return self["username"]
Inherited members
class AppSyncIdentityIAM (data: Dict[str, Any])
-
AWS_IAM authorization
Expand source code
class AppSyncIdentityIAM(DictWrapper): """AWS_IAM authorization""" @property def source_ip(self) -> List[str]: """The source IP address of the caller received by AWS AppSync. """ return self["sourceIp"] @property def username(self) -> str: """The user name of the authenticated user. IAM user principal""" return self["username"] @property def account_id(self) -> str: """The AWS account ID of the caller.""" return self["accountId"] @property def cognito_identity_pool_id(self) -> str: """The Amazon Cognito identity pool ID associated with the caller.""" return self["cognitoIdentityPoolId"] @property def cognito_identity_id(self) -> str: """The Amazon Cognito identity ID of the caller.""" return self["cognitoIdentityId"] @property def user_arn(self) -> str: """The ARN of the IAM user.""" return self["userArn"] @property def cognito_identity_auth_type(self) -> str: """Either authenticated or unauthenticated based on the identity type.""" return self["cognitoIdentityAuthType"] @property def cognito_identity_auth_provider(self) -> str: """A comma separated list of external identity provider information used in obtaining the credentials used to sign the request.""" return self["cognitoIdentityAuthProvider"]
Ancestors
Instance variables
var account_id : str
-
The AWS account ID of the caller.
Expand source code
@property def account_id(self) -> str: """The AWS account ID of the caller.""" return self["accountId"]
var cognito_identity_auth_provider : str
-
A comma separated list of external identity provider information used in obtaining the credentials used to sign the request.
Expand source code
@property def cognito_identity_auth_provider(self) -> str: """A comma separated list of external identity provider information used in obtaining the credentials used to sign the request.""" return self["cognitoIdentityAuthProvider"]
var cognito_identity_auth_type : str
-
Either authenticated or unauthenticated based on the identity type.
Expand source code
@property def cognito_identity_auth_type(self) -> str: """Either authenticated or unauthenticated based on the identity type.""" return self["cognitoIdentityAuthType"]
var cognito_identity_id : str
-
The Amazon Cognito identity ID of the caller.
Expand source code
@property def cognito_identity_id(self) -> str: """The Amazon Cognito identity ID of the caller.""" return self["cognitoIdentityId"]
var cognito_identity_pool_id : str
-
The Amazon Cognito identity pool ID associated with the caller.
Expand source code
@property def cognito_identity_pool_id(self) -> str: """The Amazon Cognito identity pool ID associated with the caller.""" return self["cognitoIdentityPoolId"]
var source_ip : List[str]
-
The source IP address of the caller received by AWS AppSync.
Expand source code
@property def source_ip(self) -> List[str]: """The source IP address of the caller received by AWS AppSync. """ return self["sourceIp"]
var user_arn : str
-
The ARN of the IAM user.
Expand source code
@property def user_arn(self) -> str: """The ARN of the IAM user.""" return self["userArn"]
var username : str
-
The user name of the authenticated user. IAM user principal
Expand source code
@property def username(self) -> str: """The user name of the authenticated user. IAM user principal""" return self["username"]
Inherited members
class AppSyncResolverEvent (data: dict)
-
AppSync resolver event
NOTE: AppSync Resolver Events can come in various shapes this data class supports both Amplify GraphQL directive @function and Direct Lambda Resolver
Documentation:
Expand source code
class AppSyncResolverEvent(DictWrapper): """AppSync resolver event **NOTE:** AppSync Resolver Events can come in various shapes this data class supports both Amplify GraphQL directive @function and Direct Lambda Resolver Documentation: ------------- - https://docs.aws.amazon.com/appsync/latest/devguide/resolver-context-reference.html - https://docs.amplify.aws/cli/graphql-transformer/function#structure-of-the-function-event """ def __init__(self, data: dict): super().__init__(data) info: Optional[dict] = data.get("info") if not info: info = {"fieldName": self.get("fieldName"), "parentTypeName": self.get("typeName")} self._info = AppSyncResolverEventInfo(info) @property def type_name(self) -> str: """The name of the parent type for the field that is currently being resolved.""" return self.info.parent_type_name @property def field_name(self) -> str: """The name of the field that is currently being resolved.""" return self.info.field_name @property def arguments(self) -> Dict[str, Any]: """A map that contains all GraphQL arguments for this field.""" return self["arguments"] @property def identity(self) -> Union[None, AppSyncIdentityIAM, AppSyncIdentityCognito]: """An object that contains information about the caller. Depending of the type of identify found: - API_KEY authorization - returns None - AWS_IAM authorization - returns AppSyncIdentityIAM - AMAZON_COGNITO_USER_POOLS authorization - returns AppSyncIdentityCognito """ return get_identity_object(self.get("identity")) @property def source(self) -> Optional[Dict[str, Any]]: """A map that contains the resolution of the parent field.""" return self.get("source") @property def request_headers(self) -> Dict[str, str]: """Request headers""" return self["request"]["headers"] @property def prev_result(self) -> Optional[Dict[str, Any]]: """It represents the result of whatever previous operation was executed in a pipeline resolver.""" prev = self.get("prev") if not prev: return None return prev.get("result") @property def info(self) -> AppSyncResolverEventInfo: """The info section contains information about the GraphQL request.""" return self._info @property def stash(self) -> Optional[dict]: """The stash is a map that is made available inside each resolver and function mapping template. The same stash instance lives through a single resolver execution. This means that you can use the stash to pass arbitrary data across request and response mapping templates, and across functions in a pipeline resolver.""" return self.get("stash") def get_header_value( self, name: str, default_value: Optional[str] = None, case_sensitive: Optional[bool] = False ) -> Optional[str]: """Get header value by name Parameters ---------- name: str Header name default_value: str, optional Default value if no value was found by name case_sensitive: bool Whether to use a case sensitive look up Returns ------- str, optional Header value """ return get_header_value(self.request_headers, name, default_value, case_sensitive)
Ancestors
Instance variables
var arguments : Dict[str, Any]
-
A map that contains all GraphQL arguments for this field.
Expand source code
@property def arguments(self) -> Dict[str, Any]: """A map that contains all GraphQL arguments for this field.""" return self["arguments"]
var field_name : str
-
The name of the field that is currently being resolved.
Expand source code
@property def field_name(self) -> str: """The name of the field that is currently being resolved.""" return self.info.field_name
var identity : Union[NoneType, AppSyncIdentityIAM, AppSyncIdentityCognito]
-
An object that contains information about the caller.
Depending of the type of identify found:
- API_KEY authorization - returns None
- AWS_IAM authorization - returns AppSyncIdentityIAM
- AMAZON_COGNITO_USER_POOLS authorization - returns AppSyncIdentityCognito
Expand source code
@property def identity(self) -> Union[None, AppSyncIdentityIAM, AppSyncIdentityCognito]: """An object that contains information about the caller. Depending of the type of identify found: - API_KEY authorization - returns None - AWS_IAM authorization - returns AppSyncIdentityIAM - AMAZON_COGNITO_USER_POOLS authorization - returns AppSyncIdentityCognito """ return get_identity_object(self.get("identity"))
var info : AppSyncResolverEventInfo
-
The info section contains information about the GraphQL request.
Expand source code
@property def info(self) -> AppSyncResolverEventInfo: """The info section contains information about the GraphQL request.""" return self._info
var prev_result : Union[Dict[str, Any], NoneType]
-
It represents the result of whatever previous operation was executed in a pipeline resolver.
Expand source code
@property def prev_result(self) -> Optional[Dict[str, Any]]: """It represents the result of whatever previous operation was executed in a pipeline resolver.""" prev = self.get("prev") if not prev: return None return prev.get("result")
var request_headers : Dict[str, str]
-
Request headers
Expand source code
@property def request_headers(self) -> Dict[str, str]: """Request headers""" return self["request"]["headers"]
var source : Union[Dict[str, Any], NoneType]
-
A map that contains the resolution of the parent field.
Expand source code
@property def source(self) -> Optional[Dict[str, Any]]: """A map that contains the resolution of the parent field.""" return self.get("source")
var stash : Union[dict, NoneType]
-
The stash is a map that is made available inside each resolver and function mapping template. The same stash instance lives through a single resolver execution. This means that you can use the stash to pass arbitrary data across request and response mapping templates, and across functions in a pipeline resolver.
Expand source code
@property def stash(self) -> Optional[dict]: """The stash is a map that is made available inside each resolver and function mapping template. The same stash instance lives through a single resolver execution. This means that you can use the stash to pass arbitrary data across request and response mapping templates, and across functions in a pipeline resolver.""" return self.get("stash")
var type_name : str
-
The name of the parent type for the field that is currently being resolved.
Expand source code
@property def type_name(self) -> str: """The name of the parent type for the field that is currently being resolved.""" return self.info.parent_type_name
Methods
def get_header_value(self, name: str, default_value: Union[str, NoneType] = None, case_sensitive: Union[bool, NoneType] = False) ‑> Union[str, NoneType]
-
Get header value by name
Parameters
name
:str
- Header name
default_value
:str
, optional- Default value if no value was found by name
case_sensitive
:bool
- Whether to use a case sensitive look up
Returns
str
, optional- Header value
Expand source code
def get_header_value( self, name: str, default_value: Optional[str] = None, case_sensitive: Optional[bool] = False ) -> Optional[str]: """Get header value by name Parameters ---------- name: str Header name default_value: str, optional Default value if no value was found by name case_sensitive: bool Whether to use a case sensitive look up Returns ------- str, optional Header value """ return get_header_value(self.request_headers, name, default_value, case_sensitive)
Inherited members
class AppSyncResolverEventInfo (data: Dict[str, Any])
-
The info section contains information about the GraphQL request
Expand source code
class AppSyncResolverEventInfo(DictWrapper): """The info section contains information about the GraphQL request""" @property def field_name(self) -> str: """The name of the field that is currently being resolved.""" return self["fieldName"] @property def parent_type_name(self) -> str: """The name of the parent type for the field that is currently being resolved.""" return self["parentTypeName"] @property def variables(self) -> Optional[Dict[str, str]]: """A map which holds all variables that are passed into the GraphQL request.""" return self.get("variables") @property def selection_set_list(self) -> Optional[List[str]]: """A list representation of the fields in the GraphQL selection set. Fields that are aliased will only be referenced by the alias name, not the field name.""" return self.get("selectionSetList") @property def selection_set_graphql(self) -> Optional[str]: """A string representation of the selection set, formatted as GraphQL schema definition language (SDL). Although fragments are not be merged into the selection set, inline fragments are preserved.""" return self.get("selectionSetGraphQL")
Ancestors
Instance variables
var field_name : str
-
The name of the field that is currently being resolved.
Expand source code
@property def field_name(self) -> str: """The name of the field that is currently being resolved.""" return self["fieldName"]
var parent_type_name : str
-
The name of the parent type for the field that is currently being resolved.
Expand source code
@property def parent_type_name(self) -> str: """The name of the parent type for the field that is currently being resolved.""" return self["parentTypeName"]
var selection_set_graphql : Union[str, NoneType]
-
A string representation of the selection set, formatted as GraphQL schema definition language (SDL). Although fragments are not be merged into the selection set, inline fragments are preserved.
Expand source code
@property def selection_set_graphql(self) -> Optional[str]: """A string representation of the selection set, formatted as GraphQL schema definition language (SDL). Although fragments are not be merged into the selection set, inline fragments are preserved.""" return self.get("selectionSetGraphQL")
var selection_set_list : Union[List[str], NoneType]
-
A list representation of the fields in the GraphQL selection set. Fields that are aliased will only be referenced by the alias name, not the field name.
Expand source code
@property def selection_set_list(self) -> Optional[List[str]]: """A list representation of the fields in the GraphQL selection set. Fields that are aliased will only be referenced by the alias name, not the field name.""" return self.get("selectionSetList")
var variables : Union[Dict[str, str], NoneType]
-
A map which holds all variables that are passed into the GraphQL request.
Expand source code
@property def variables(self) -> Optional[Dict[str, str]]: """A map which holds all variables that are passed into the GraphQL request.""" return self.get("variables")
Inherited members