com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMarshalling Java Examples
The following examples show how to use
com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMarshalling.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ComplexTypeITCase.java From aws-dynamodb-encryption-java with Apache License 2.0 | 4 votes |
@DynamoDBMarshalling(marshallerClass = ComplexNestedTypeMarshaller.class) public ComplexNestedType getComplexNestedType() { return complexNestedType; }
Example #2
Source File: ComplexTypeITCase.java From aws-dynamodb-encryption-java with Apache License 2.0 | 4 votes |
@DynamoDBMarshalling(marshallerClass = ComplexNestedListTypeMarshaller.class) public List<ComplexNestedType> getComplexNestedTypeList() { return complexNestedTypeList; }
Example #3
Source File: ComplexTypeITCase.java From aws-dynamodb-encryption-java with Apache License 2.0 | 4 votes |
@DynamoDBHashKey @DynamoDBMarshalling(marshallerClass = ComplexNestedTypeMarshaller.class) public ComplexNestedType getKey() { return key; }
Example #4
Source File: Reply.java From spring-data-dynamodb-demo with Apache License 2.0 | 4 votes |
@DynamoDBHashKey(attributeName = "Id") @DynamoDBMarshalling(marshallerClass=ThreadIdMarshaller.class) public ThreadId getThreadId() { return replyId != null ? replyId.getThreadId() : null; }
Example #5
Source File: User.java From spring-data-dynamodb with Apache License 2.0 | 4 votes |
@DynamoDBMarshalling(marshallerClass=DynamoDBYearMarshaller.class) public Date getJoinYear() { return joinYear; }
Example #6
Source File: ObjectPersistenceMappingExample.java From aws-dynamodb-examples with Apache License 2.0 | 4 votes |
@DynamoDBMarshalling(marshallerClass = DimensionTypeConverter.class) public DimensionType getDimensions() { return dimensionType; }