pub enum AttributeValue {
N(String),
S(String),
Bool(bool),
B(Vec<u8>),
Null(bool),
M(HashMap<String, AttributeValue>),
L(Vec<AttributeValue>),
Ss(Vec<String>),
Ns(Vec<String>),
Bs(Vec<Vec<u8>>),
}Expand description
The value for an attribute that comes from DynamoDb.
Variants§
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.
S(String)
An attribute of type String. For example:
"S": "Hello"Bool(bool)
An attribute of type Boolean. For example:
"BOOL": trueB(Vec<u8>)
An attribute of type Binary. For example:
"B": "dGhpcyB0ZXh0IGlzIGJhc2U2NC1lbmNvZGVk"Type: Base64-encoded binary data object
Null(bool)
An attribute of type Null. For example:
"NULL": trueM(HashMap<String, AttributeValue>)
An attribute of type Map. For example:
"M": {"Name": {"S": "Joe"}, "Age": {"N": "35"}}Key Length Constraints: Maximum length of 65535.
L(Vec<AttributeValue>)
An attribute of type List. For example:
"L": [ {"S": "Cookies"} , {"S": "Coffee"}, {"N": "3.14159"}]Ss(Vec<String>)
An attribute of type String Set. For example:
"SS": ["Giraffe", "Hippo" ,"Zebra"]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.
Bs(Vec<Vec<u8>>)
An attribute of type Binary Set. For example:
"BS": ["U3Vubnk=", "UmFpbnk=", "U25vd3k="]Type: Array of Base64-encoded binary data objects
Trait Implementations§
Source§impl Clone for AttributeValue
impl Clone for AttributeValue
Source§fn clone(&self) -> AttributeValue
fn clone(&self) -> AttributeValue
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for AttributeValue
impl Debug for AttributeValue
Source§impl<'de> Deserialize<'de> for AttributeValue
impl<'de> Deserialize<'de> for AttributeValue
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_7 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_7 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_7 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_7 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_12 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_12 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_26 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_26 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_26 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_26 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_27 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_27 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_27 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_27 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_28 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_28 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_28 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_28 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_29 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_29 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_29 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_29 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_30 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_30 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_30 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_30 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_12 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_12 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_31 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_31 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_31 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_31 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_32 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_32 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_32 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_32 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_33 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_33 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_33 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_33 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_34 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_34 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_34 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_34 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_35 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_35 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_35 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_35 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_13 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_13 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_36 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_36 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_36 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_36 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_37 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_37 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_37 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_37 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_38 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_38 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_38 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_38 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_39 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_39 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_39 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_39 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+1 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+1 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+1 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+1 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_13 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_13 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodb+0_46 only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodb+0_46 only.Source§fn from(attribute_value: AttributeValue) -> Self
fn from(attribute_value: AttributeValue) -> Self
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodb+0_46 only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodb+0_46 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodb+0_47 only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodb+0_47 only.Source§fn from(attribute_value: AttributeValue) -> Self
fn from(attribute_value: AttributeValue) -> Self
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodb+0_47 only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodb+0_47 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodb+0_48 only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodb+0_48 only.Source§fn from(attribute_value: AttributeValue) -> Self
fn from(attribute_value: AttributeValue) -> Self
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodb+0_48 only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodb+0_48 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodbstreams+0_46 only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodbstreams+0_46 only.Source§fn from(attribute_value: AttributeValue) -> Self
fn from(attribute_value: AttributeValue) -> Self
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodbstreams+0_46 only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodbstreams+0_46 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodbstreams+0_47 only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodbstreams+0_47 only.Source§fn from(attribute_value: AttributeValue) -> Self
fn from(attribute_value: AttributeValue) -> Self
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodbstreams+0_47 only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodbstreams+0_47 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_14 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_14 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodbstreams+0_48 only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodbstreams+0_48 only.Source§fn from(attribute_value: AttributeValue) -> Self
fn from(attribute_value: AttributeValue) -> Self
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature rusoto_dynamodbstreams+0_48 only.
impl From<AttributeValue> for AttributeValue
rusoto_dynamodbstreams+0_48 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws_lambda_events+0_6 only.
impl From<AttributeValue> for AttributeValue
aws_lambda_events+0_6 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws_lambda_events+0_6 only.
impl From<AttributeValue> for AttributeValue
aws_lambda_events+0_6 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws_lambda_events+0_7 only.
impl From<AttributeValue> for AttributeValue
aws_lambda_events+0_7 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws_lambda_events+0_7 only.
impl From<AttributeValue> for AttributeValue
aws_lambda_events+0_7 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_14 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_14 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_15 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_15 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_15 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_15 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_16 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_16 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_16 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_16 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_8 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_8 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_17 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_17 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_17 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_17 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_18 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_18 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_18 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_18 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_19 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_19 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_19 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_19 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_21 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_21 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_21 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_21 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_22 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_22 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_22 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_22 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_8 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_8 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_23 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_23 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_23 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_23 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_24 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_24 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_24 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_24 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_25 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_25 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_25 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_25 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_26 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_26 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_26 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_26 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_27 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_27 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_27 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_27 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_9 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_9 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_28 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_28 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_28 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_28 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_29 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_29 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_29 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_29 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_30 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_30 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_30 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_30 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_31 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_31 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_31 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_31 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_32 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_32 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_32 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_32 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_9 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_9 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_33 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_33 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_33 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_33 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_34 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_34 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_34 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_34 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_35 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_35 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_35 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_35 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_36 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_36 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_36 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_36 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_37 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_37 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_37 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_37 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_10 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_10 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_38 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_38 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_38 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_38 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_39 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_39 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_39 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_39 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+1 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+1 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+1 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+1 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_8 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_8 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_8 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_8 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_9 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_9 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_9 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_9 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_10 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_10 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_10 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_10 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_10 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_10 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_11 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_11 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_11 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_11 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_12 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_12 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_12 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_12 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_13 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_13 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_13 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_13 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_14 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_14 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_14 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_14 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_11 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_11 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_15 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_15 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_15 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_15 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_16 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_16 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_16 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_16 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_17 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_17 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_17 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_17 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_18 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_18 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_18 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_18 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_19 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_19 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_19 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_19 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodb+0_11 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodb+0_11 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_21 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_21 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_21 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_21 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_22 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_22 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_22 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_22 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_23 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_23 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_23 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_23 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_24 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_24 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_24 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_24 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_25 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_25 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl From<AttributeValue> for AttributeValue
Available on crate feature aws-sdk-dynamodbstreams+0_25 only.
impl From<AttributeValue> for AttributeValue
aws-sdk-dynamodbstreams+0_25 only.Source§fn from(attribute_value: AttributeValue) -> AttributeValue
fn from(attribute_value: AttributeValue) -> AttributeValue
Source§impl PartialEq for AttributeValue
impl PartialEq for AttributeValue
Source§impl Serialize for AttributeValue
impl Serialize for AttributeValue
impl Eq for AttributeValue
impl StructuralPartialEq for AttributeValue
Auto Trait Implementations§
impl Freeze for AttributeValue
impl RefUnwindSafe for AttributeValue
impl Send for AttributeValue
impl Sync for AttributeValue
impl Unpin for AttributeValue
impl UnwindSafe for AttributeValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more