[−][src]Struct rusoto_iot::DynamoDBAction
Describes an action to write to a DynamoDB table.
The tableName
, hashKeyField
, and rangeKeyField
values must match the values used when you created the table.
The hashKeyValue
and rangeKeyvalue
fields use a substitution template syntax. These templates provide data at runtime. The syntax is as follows: ${sql-expression}.
You can specify any valid expression in a WHERE or SELECT clause, including JSON properties, comparisons, calculations, and functions. For example, the following field uses the third level of the topic:
"hashKeyValue": "${topic(3)}"
The following field uses the timestamp:
"rangeKeyValue": "${timestamp()}"
Fields
hash_key_field: String
The hash key name.
hash_key_type: Option<String>
The hash key type. Valid values are "STRING" or "NUMBER"
hash_key_value: String
The hash key value.
operation: Option<String>
The type of operation to be performed. This follows the substitution template, so it can be ${operation}
, but the substitution must result in one of the following: INSERT
, UPDATE
, or DELETE
.
payload_field: Option<String>
The action payload. This name can be customized.
range_key_field: Option<String>
The range key name.
range_key_type: Option<String>
The range key type. Valid values are "STRING" or "NUMBER"
range_key_value: Option<String>
The range key value.
role_arn: String
The ARN of the IAM role that grants access to the DynamoDB table.
table_name: String
The name of the DynamoDB table.
Trait Implementations
impl PartialEq<DynamoDBAction> for DynamoDBAction
[src]
fn eq(&self, other: &DynamoDBAction) -> bool
[src]
fn ne(&self, other: &DynamoDBAction) -> bool
[src]
impl Default for DynamoDBAction
[src]
fn default() -> DynamoDBAction
[src]
impl Clone for DynamoDBAction
[src]
fn clone(&self) -> DynamoDBAction
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for DynamoDBAction
[src]
impl Serialize for DynamoDBAction
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<'de> Deserialize<'de> for DynamoDBAction
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for DynamoDBAction
impl Sync for DynamoDBAction
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self