github.com/smugmug/godynamo@v0.0.0-20151122084750-7913028f6623/types/keydefinition/keydefinition.go (about)

     1  // KeyDefinition is how table keys are described.
     2  package keydefinition
     3  
     4  type KeyDefinition struct {
     5  	AttributeName string
     6  	KeyType       string
     7  }
     8  
     9  type KeySchema []KeyDefinition