pub struct PutItemInput {
pub table_name: String,
}Expand description
The input for the DynamoActionVS action that specifies the DynamoDB table to which the message data will be written.
Fields§
§table_name: StringThe table where the message data will be written.
Trait Implementations§
Source§impl Clone for PutItemInput
impl Clone for PutItemInput
Source§fn clone(&self) -> PutItemInput
fn clone(&self) -> PutItemInput
Returns a duplicate of the value. Read more
1.0.0 · 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 PutItemInput
impl Debug for PutItemInput
Source§impl Default for PutItemInput
impl Default for PutItemInput
Source§fn default() -> PutItemInput
fn default() -> PutItemInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PutItemInput
impl<'de> Deserialize<'de> for PutItemInput
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
Source§impl PartialEq for PutItemInput
impl PartialEq for PutItemInput
Source§impl Serialize for PutItemInput
impl Serialize for PutItemInput
impl StructuralPartialEq for PutItemInput
Auto Trait Implementations§
impl Freeze for PutItemInput
impl RefUnwindSafe for PutItemInput
impl Send for PutItemInput
impl Sync for PutItemInput
impl Unpin for PutItemInput
impl UnwindSafe for PutItemInput
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