pub struct AppsyncEventInfo<O> {
pub operation: O,
pub selection_set_graphql: String,
pub selection_set_list: Vec<String>,
pub variables: HashMap<String, Value>,
}Expand description
Metadata about an AppSync GraphQL operation execution.
Contains detailed information about the GraphQL operation being executed,
including the operation type, selected fields, and variables. The type parameter
O represents the Operation enum generated by make_appsync! (or make_operation!)
that defines all valid operations for this Lambda resolver.
Fields§
§operation: OThe specific GraphQL operation being executed (Query/Mutation)
selection_set_graphql: StringRaw GraphQL selection set as a string
selection_set_list: Vec<String>List of selected field paths in the GraphQL query
variables: HashMap<String, Value>Variables passed to the GraphQL operation
Trait Implementations§
Source§impl<O: Debug> Debug for AppsyncEventInfo<O>
impl<O: Debug> Debug for AppsyncEventInfo<O>
Source§impl<'de, O> Deserialize<'de> for AppsyncEventInfo<O>where
O: Deserialize<'de>,
impl<'de, O> Deserialize<'de> for AppsyncEventInfo<O>where
O: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<O> Freeze for AppsyncEventInfo<O>where
O: Freeze,
impl<O> RefUnwindSafe for AppsyncEventInfo<O>where
O: RefUnwindSafe,
impl<O> Send for AppsyncEventInfo<O>where
O: Send,
impl<O> Sync for AppsyncEventInfo<O>where
O: Sync,
impl<O> Unpin for AppsyncEventInfo<O>where
O: Unpin,
impl<O> UnsafeUnpin for AppsyncEventInfo<O>where
O: UnsafeUnpin,
impl<O> UnwindSafe for AppsyncEventInfo<O>where
O: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more