func NewAttributesResponse() *AttributesResponse { a := new(AttributesResponse) a.Attributes = attributevalue.NewAttributeValueMap() a.ConsumedCapacity = capacity.NewConsumedCapacity() a.ItemCollectionMetrics = itemcollectionmetrics.NewItemCollectionMetrics() return a }
func NewResponse() *Response { r := new(Response) r.ConsumedCapacity = capacity.NewConsumedCapacity() r.Items = make([]item.Item, 0) r.LastEvaluatedKey = attributevalue.NewAttributeValueMap() return r }
func NewResponseItemJSON() *ResponseItemJSON { r := new(ResponseItemJSON) r.ConsumedCapacity = capacity.NewConsumedCapacity() return r }
func NewResponse() *Response { r := new(Response) r.Item = item.NewItem() r.ConsumedCapacity = capacity.NewConsumedCapacity() return r }