def asAttributeValue()

in src/main/scala/com/gu/dynamodbswitches/Switch.scala [16:19]


  def asAttributeValue(b: Boolean): AttributeValue = {
    val str = if(b) "1" else "0"
    AttributeValue.builder().n(str).build()
  }