(vals: &[&str])
| 48 | } |
| 49 | |
| 50 | pub fn bs(vals: &[&str]) -> AttributeValue { |
| 51 | AttributeValue::Bs( |
| 52 | vals.iter() |
| 53 | .map(|v| aws_smithy_types::Blob::new(v.as_bytes())) |
| 54 | .collect(), |
| 55 | ) |
| 56 | } |
| 57 | |
| 58 | pub fn bool_val(val: bool) -> AttributeValue { |
| 59 | AttributeValue::Bool(val) |
no outgoing calls
no test coverage detected