[][src]Struct rusoto_iot::DynamoDBAction

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,
}

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

The hash key name.

The hash key type. Valid values are "STRING" or "NUMBER"

The hash key value.

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.

The action payload. This name can be customized.

The range key name.

The range key type. Valid values are "STRING" or "NUMBER"

The range key value.

The ARN of the IAM role that grants access to the DynamoDB table.

The name of the DynamoDB table.

Trait Implementations

impl Clone for DynamoDBAction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq<DynamoDBAction> for DynamoDBAction
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for DynamoDBAction
[src]

Returns the "default value" for a type. Read more

impl Debug for DynamoDBAction
[src]

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for DynamoDBAction
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for DynamoDBAction
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

Should always be Self