Module aws_lambda_powertools.utilities.data_classes.appsync_resolver_event
Functions
def get_identity_object(identity: dict | None) ‑> Any
-
Get the identity object based on the best detected type
Classes
class AppSyncIdentityCognito (data: dict[str, Any], json_deserializer: Callable | None = None)
-
AMAZON_COGNITO_USER_POOLS authorization
Parameters
data
:dict[str, Any]
- Lambda Event Source Event payload
json_deserializer
:Callable
, optional- function to deserialize
str
,bytes
,bytearray
containing a JSON document to a Pythonobj
, by default json.loads
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 username 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
- DictWrapper
- collections.abc.Mapping
- collections.abc.Collection
- collections.abc.Sized
- collections.abc.Iterable
- collections.abc.Container
- typing.Generic
Instance variables
prop 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"]
prop 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"]
prop groups : list[str]
-
List of OIDC groups
Expand source code
@property def groups(self) -> list[str]: """List of OIDC groups""" return self["groups"]
prop issuer : str
-
The token issuer.
Expand source code
@property def issuer(self) -> str: """The token issuer.""" return self["issuer"]
prop 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"]
prop 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"]
prop username : str
-
The username of the authenticated user.
Expand source code
@property def username(self) -> str: """The username of the authenticated user.""" return self["username"]
Inherited members
class AppSyncIdentityIAM (data: dict[str, Any], json_deserializer: Callable | None = None)
-
AWS_IAM authorization
Parameters
data
:dict[str, Any]
- Lambda Event Source Event payload
json_deserializer
:Callable
, optional- function to deserialize
str
,bytes
,bytearray
containing a JSON document to a Pythonobj
, by default json.loads
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 username 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
- DictWrapper
- collections.abc.Mapping
- collections.abc.Collection
- collections.abc.Sized
- collections.abc.Iterable
- collections.abc.Container
- typing.Generic
Instance variables
prop 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"]
prop 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"]
prop 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"]
prop 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"]
prop 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"]
prop 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"]
prop 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"]
prop username : str
-
The username of the authenticated user. IAM user principal
Expand source code
@property def username(self) -> str: """The username 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:
- 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
Parameters
data
:dict[str, Any]
- Lambda Event Source Event payload
json_deserializer
:Callable
, optional- function to deserialize
str
,bytes
,bytearray
containing a JSON document to a Pythonobj
, by default json.loads
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: dict | None = 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) -> AppSyncIdentityIAM | AppSyncIdentityCognito | None: """An object that contains information about the caller. Depending on 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) -> dict[str, Any]: """A map that contains the resolution of the parent field.""" return self.get("source") or {} @property def request_headers(self) -> dict[str, str]: """Request headers""" return CaseInsensitiveDict(self["request"]["headers"]) @property def prev_result(self) -> dict[str, Any] | None: """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) -> 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") or {} @overload def get_header_value( self, name: str, default_value: str, case_sensitive: bool = False, ) -> str: ... @overload def get_header_value( self, name: str, default_value: str | None = None, case_sensitive: bool = False, ) -> str | None: ... @deprecated( "`get_header_value` function is deprecated; Access headers directly using event.headers.get('HeaderName')", category=None, ) def get_header_value( self, name: str, default_value: str | None = None, case_sensitive: bool = False, ) -> str | None: """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 """ warnings.warn( "The `get_header_value` function is deprecated in V3 and the `case_sensitive` parameter " "no longer has any effect. This function will be removed in the next major version. " "Instead, access headers directly using event.headers.get('HeaderName'), which is case insensitive.", category=PowertoolsDeprecationWarning, stacklevel=2, ) return get_header_value(self.request_headers, name, default_value, case_sensitive)
Ancestors
- DictWrapper
- collections.abc.Mapping
- collections.abc.Collection
- collections.abc.Sized
- collections.abc.Iterable
- collections.abc.Container
- typing.Generic
Instance variables
prop 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"]
prop 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
prop identity : AppSyncIdentityIAM | AppSyncIdentityCognito | None
-
An object that contains information about the caller.
Depending on 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) -> AppSyncIdentityIAM | AppSyncIdentityCognito | None: """An object that contains information about the caller. Depending on 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"))
prop 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
prop prev_result : dict[str, Any] | None
-
It represents the result of whatever previous operation was executed in a pipeline resolver.
Expand source code
@property def prev_result(self) -> dict[str, Any] | None: """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")
prop request_headers : dict[str, str]
-
Request headers
Expand source code
@property def request_headers(self) -> dict[str, str]: """Request headers""" return CaseInsensitiveDict(self["request"]["headers"])
prop source : dict[str, Any]
-
A map that contains the resolution of the parent field.
Expand source code
@property def source(self) -> dict[str, Any]: """A map that contains the resolution of the parent field.""" return self.get("source") or {}
prop stash : 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.
Expand source code
@property def stash(self) -> 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") or {}
prop 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: str | None = None, case_sensitive: bool = False) ‑> str | None
-
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
Inherited members
class AppSyncResolverEventInfo (data: dict[str, Any], json_deserializer: Callable | None = None)
-
The info section contains information about the GraphQL request
Parameters
data
:dict[str, Any]
- Lambda Event Source Event payload
json_deserializer
:Callable
, optional- function to deserialize
str
,bytes
,bytearray
containing a JSON document to a Pythonobj
, by default json.loads
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) -> dict[str, str]: """A map which holds all variables that are passed into the GraphQL request.""" return self.get("variables") or {} @property def selection_set_list(self) -> 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") or [] @property def selection_set_graphql(self) -> str | None: """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
- DictWrapper
- collections.abc.Mapping
- collections.abc.Collection
- collections.abc.Sized
- collections.abc.Iterable
- collections.abc.Container
- typing.Generic
Instance variables
prop 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"]
prop 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"]
prop selection_set_graphql : str | None
-
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) -> str | None: """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")
prop selection_set_list : 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.
Expand source code
@property def selection_set_list(self) -> 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") or []
prop variables : dict[str, str]
-
A map which holds all variables that are passed into the GraphQL request.
Expand source code
@property def variables(self) -> dict[str, str]: """A map which holds all variables that are passed into the GraphQL request.""" return self.get("variables") or {}
Inherited members