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

     1  // Support for AttributeDefinition type. See
     2  // http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_AttributeDefinition.html
     3  package attributedefinition
     4  
     5  // Do not omit these if they are empty, they are both required
     6  type AttributeDefinition struct {
     7  	AttributeName string
     8  	AttributeType string
     9  }
    10  
    11  type AttributeDefinitions []AttributeDefinition