pub struct DynamoDBAction {
pub hash_key_field: String,
pub hash_key_type: Option<String>,
pub hash_key_value: String,
pub operation: Option<String>,
pub payload_field: Option<String>,
pub range_key_field: Option<String>,
pub range_key_type: Option<String>,
pub range_key_value: Option<String>,
pub role_arn: String,
pub table_name: String,
}Expand description
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: StringThe hash key name.
hash_key_type: Option<String>The hash key type. Valid values are "STRING" or "NUMBER"
hash_key_value: StringThe 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: StringThe ARN of the IAM role that grants access to the DynamoDB table.
table_name: StringThe name of the DynamoDB table.
Trait Implementations§
Source§impl Clone for DynamoDBAction
impl Clone for DynamoDBAction
Source§fn clone(&self) -> DynamoDBAction
fn clone(&self) -> DynamoDBAction
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more