You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
250 B

  1. package dynamodb
  2. type ReturnValues string
  3. const (
  4. NONE ReturnValues = "NONE"
  5. ALL_OLD ReturnValues = "ALL_HOLD"
  6. UPDATED_OLD ReturnValues = "UPDATED_OLD"
  7. ALL_NEW ReturnValues = "ALL_NEW"
  8. UPDATED_NEW ReturnValues = "UPDATED_NEW"
  9. )