Struct aws_sdk_iot::model::DynamoDbAction
source · #[non_exhaustive]pub struct DynamoDbAction { /* private fields */ }
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()}"
Implementations§
source§impl DynamoDbAction
impl DynamoDbAction
sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
The name of the DynamoDB table.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The ARN of the IAM role that grants access to the DynamoDB table.
sourcepub fn operation(&self) -> Option<&str>
pub fn operation(&self) -> Option<&str>
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
.
sourcepub fn hash_key_field(&self) -> Option<&str>
pub fn hash_key_field(&self) -> Option<&str>
The hash key name.
sourcepub fn hash_key_value(&self) -> Option<&str>
pub fn hash_key_value(&self) -> Option<&str>
The hash key value.
sourcepub fn hash_key_type(&self) -> Option<&DynamoKeyType>
pub fn hash_key_type(&self) -> Option<&DynamoKeyType>
The hash key type. Valid values are "STRING" or "NUMBER"
sourcepub fn range_key_field(&self) -> Option<&str>
pub fn range_key_field(&self) -> Option<&str>
The range key name.
sourcepub fn range_key_value(&self) -> Option<&str>
pub fn range_key_value(&self) -> Option<&str>
The range key value.
sourcepub fn range_key_type(&self) -> Option<&DynamoKeyType>
pub fn range_key_type(&self) -> Option<&DynamoKeyType>
The range key type. Valid values are "STRING" or "NUMBER"
sourcepub fn payload_field(&self) -> Option<&str>
pub fn payload_field(&self) -> Option<&str>
The action payload. This name can be customized.
source§impl DynamoDbAction
impl DynamoDbAction
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DynamoDbAction
.
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 moresource§impl Debug for DynamoDbAction
impl Debug for DynamoDbAction
source§impl PartialEq<DynamoDbAction> for DynamoDbAction
impl PartialEq<DynamoDbAction> for DynamoDbAction
source§fn eq(&self, other: &DynamoDbAction) -> bool
fn eq(&self, other: &DynamoDbAction) -> bool
self
and other
values to be equal, and is used
by ==
.