pub struct RdsLambdaInvokeRequest {
pub function_name: String,
pub payload: Option<Value>,
pub invocation_type: Option<String>,
pub region: Option<String>,
}Expand description
Request body for POST /_fakecloud/rds/lambda-invoke. The endpoint is
the bridge that the PostgreSQL aws_lambda extension calls into from
inside an RDS DB instance container — it’s normally not driven by
user code directly.
Fields§
§function_name: String§payload: Option<Value>§invocation_type: Option<String>§region: Option<String>Trait Implementations§
Source§impl Clone for RdsLambdaInvokeRequest
impl Clone for RdsLambdaInvokeRequest
Source§fn clone(&self) -> RdsLambdaInvokeRequest
fn clone(&self) -> RdsLambdaInvokeRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RdsLambdaInvokeRequest
impl Debug for RdsLambdaInvokeRequest
Source§impl<'de> Deserialize<'de> for RdsLambdaInvokeRequest
impl<'de> Deserialize<'de> for RdsLambdaInvokeRequest
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 Freeze for RdsLambdaInvokeRequest
impl RefUnwindSafe for RdsLambdaInvokeRequest
impl Send for RdsLambdaInvokeRequest
impl Sync for RdsLambdaInvokeRequest
impl Unpin for RdsLambdaInvokeRequest
impl UnsafeUnpin for RdsLambdaInvokeRequest
impl UnwindSafe for RdsLambdaInvokeRequest
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