github.com/aavshr/aws-sdk-go@v1.41.3/service/dynamodb/doc_custom.go (about)

     1  /*
     2  AttributeValue Marshaling and Unmarshaling Helpers
     3  
     4  Utility helpers to marshal and unmarshal AttributeValue to and
     5  from Go types can be found in the dynamodbattribute sub package. This package
     6  provides specialized functions for the common ways of working with
     7  AttributeValues. Such as map[string]*AttributeValue, []*AttributeValue, and
     8  directly with *AttributeValue. This is helpful for marshaling Go types for API
     9  operations such as PutItem, and unmarshaling Query and Scan APIs' responses.
    10  
    11  See the dynamodbattribute package documentation for more information.
    12  https://docs.aws.amazon.com/sdk-for-go/api/service/dynamodb/dynamodbattribute/
    13  
    14  Expression Builders
    15  
    16  The expression package provides utility types and functions to build DynamoDB
    17  expression for type safe construction of API ExpressionAttributeNames, and
    18  ExpressionAttribute Values.
    19  
    20  The package represents the various DynamoDB Expressions as structs named
    21  accordingly. For example, ConditionBuilder represents a DynamoDB Condition
    22  Expression, an UpdateBuilder represents a DynamoDB Update Expression, and so on.
    23  
    24  See the expression package documentation for more information.
    25  https://docs.aws.amazon.com/sdk-for-go/api/service/dynamodb/expression/
    26  */
    27  package dynamodb