#[non_exhaustive]
pub enum AttributeValue {
    B(Blob),
    Bool(bool),
    Bs(Vec<Blob>),
    L(Vec<AttributeValue>),
    M(HashMap<String, AttributeValue>),
    N(String),
    Ns(Vec<String>),
    Null(bool),
    S(String),
    Ss(Vec<String>),
    Unknown,
}
Expand description

Represents the data for an attribute.

Each attribute value is described as a name-value pair. The name is the data type, and the value is the data itself.

For more information, see Data Types in the Amazon DynamoDB Developer Guide.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

B(Blob)

An attribute of type Binary. For example:

"B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"

§

Bool(bool)

An attribute of type Boolean. For example:

"BOOL": true

§

Bs(Vec<Blob>)

An attribute of type Binary Set. For example:

"BS": ["U3Vubnk=", "UmFpbnk=", "U25vd3k="]

§

L(Vec<AttributeValue>)

An attribute of type List. For example:

"L": [ {"S": "Cookies"} , {"S": "Coffee"}, {"N": "3.14159"}]

§

M(HashMap<String, AttributeValue>)

An attribute of type Map. For example:

"M": {"Name": {"S": "Joe"}, "Age": {"N": "35"}}

§

N(String)

An attribute of type Number. For example:

"N": "123.45"

Numbers are sent across the network to DynamoDB as strings, to maximize compatibility across languages and libraries. However, DynamoDB treats them as number type attributes for mathematical operations.

§

Ns(Vec<String>)

An attribute of type Number Set. For example:

"NS": ["42.2", "-19", "7.5", "3.14"]

Numbers are sent across the network to DynamoDB as strings, to maximize compatibility across languages and libraries. However, DynamoDB treats them as number type attributes for mathematical operations.

§

Null(bool)

An attribute of type Null. For example:

"NULL": true

§

S(String)

An attribute of type String. For example:

"S": "Hello"

§

Ss(Vec<String>)

An attribute of type String Set. For example:

"SS": ["Giraffe", "Hippo" ,"Zebra"]

§

Unknown

The Unknown variant represents cases where new union variant was received. Consider upgrading the SDK to the latest available version. An unknown enum variant

Note: If you encounter this error, consider upgrading your SDK to the latest version. The Unknown variant represents cases where the server sent a value that wasn’t recognized by the client. This can happen when the server adds new functionality, but the client has not been updated. To investigate this, consider turning on debug logging to print the raw HTTP response.

Implementations§

Tries to convert the enum instance into B, extracting the inner Blob. Returns Err(&Self) if it can’t be converted.

Examples found in repository?
src/model.rs (line 6674)
6673
6674
6675
    pub fn is_b(&self) -> bool {
        self.as_b().is_ok()
    }

Returns true if this is a B.

Tries to convert the enum instance into Bool, extracting the inner bool. Returns Err(&Self) if it can’t be converted.

Examples found in repository?
src/model.rs (line 6687)
6686
6687
6688
    pub fn is_bool(&self) -> bool {
        self.as_bool().is_ok()
    }

Returns true if this is a Bool.

Tries to convert the enum instance into Bs, extracting the inner Vec. Returns Err(&Self) if it can’t be converted.

Examples found in repository?
src/model.rs (line 6700)
6699
6700
6701
    pub fn is_bs(&self) -> bool {
        self.as_bs().is_ok()
    }

Returns true if this is a Bs.

Tries to convert the enum instance into L, extracting the inner Vec. Returns Err(&Self) if it can’t be converted.

Examples found in repository?
src/model.rs (line 6713)
6712
6713
6714
    pub fn is_l(&self) -> bool {
        self.as_l().is_ok()
    }

Returns true if this is a L.

Tries to convert the enum instance into M, extracting the inner HashMap. Returns Err(&Self) if it can’t be converted.

Examples found in repository?
src/model.rs (line 6731)
6730
6731
6732
    pub fn is_m(&self) -> bool {
        self.as_m().is_ok()
    }

Returns true if this is a M.

Tries to convert the enum instance into N, extracting the inner String. Returns Err(&Self) if it can’t be converted.

Examples found in repository?
src/model.rs (line 6744)
6743
6744
6745
    pub fn is_n(&self) -> bool {
        self.as_n().is_ok()
    }

Returns true if this is a N.

Tries to convert the enum instance into Ns, extracting the inner Vec. Returns Err(&Self) if it can’t be converted.

Examples found in repository?
src/model.rs (line 6757)
6756
6757
6758
    pub fn is_ns(&self) -> bool {
        self.as_ns().is_ok()
    }

Returns true if this is a Ns.

Tries to convert the enum instance into Null, extracting the inner bool. Returns Err(&Self) if it can’t be converted.

Examples found in repository?
src/model.rs (line 6770)
6769
6770
6771
    pub fn is_null(&self) -> bool {
        self.as_null().is_ok()
    }

Returns true if this is a Null.

Tries to convert the enum instance into S, extracting the inner String. Returns Err(&Self) if it can’t be converted.

Examples found in repository?
src/model.rs (line 6783)
6782
6783
6784
    pub fn is_s(&self) -> bool {
        self.as_s().is_ok()
    }

Returns true if this is a S.

Tries to convert the enum instance into Ss, extracting the inner Vec. Returns Err(&Self) if it can’t be converted.

Examples found in repository?
src/model.rs (line 6796)
6795
6796
6797
    pub fn is_ss(&self) -> bool {
        self.as_ss().is_ok()
    }

Returns true if this is a Ss.

Returns true if the enum instance is the Unknown variant.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more