(val: &str)
| 36 | } |
| 37 | |
| 38 | pub fn b(val: &str) -> AttributeValue { |
| 39 | AttributeValue::B(aws_smithy_types::Blob::new(val.as_bytes())) |
| 40 | } |
| 41 | |
| 42 | pub fn ss(vals: &[&str]) -> AttributeValue { |
| 43 | AttributeValue::Ss(vals.iter().map(|v| (*v).into()).collect()) |
no outgoing calls