com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBHashKey Java Examples

The following examples show how to use com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBHashKey. 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: MapperQueryExpressionCryptoTest.java    From aws-dynamodb-encryption-java with Apache License 2.0 5 votes vote down vote up
@DynamoDBHashKey
@DynamoDBIndexHashKey(
        globalSecondaryIndexNames = {
                "GSI-primary-hash-index-range-1",
                "GSI-primary-hash-index-range-2"}
)
public String getPrimaryHashKey() {
    return primaryHashKey;
}
 
Example #2
Source File: InheritanceITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #3
Source File: ComplexTypeITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
@DynamoDBMarshalling(marshallerClass = ComplexNestedTypeMarshaller.class)
public ComplexNestedType getKey() {
    return key;
}
 
Example #4
Source File: NoSuchTableTestClass.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #5
Source File: MapperQueryExpressionCryptoTest.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getPrimaryHashKey() {
    return primaryHashKey;
}
 
Example #6
Source File: CrossSDKVerificationTestClass.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #7
Source File: BinaryAttributeByteArrayTestClass.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey(attributeName = "key")
public String getKey() {
    return key;
}
 
Example #8
Source File: HashKeyOnly.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getHashKey() {
    return hashKey;
}
 
Example #9
Source File: StringSetAttributeTestClass.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #10
Source File: StringAttributeTestClass.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #11
Source File: BinaryAttributeByteBufferTestClass.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey(attributeName = "key")
public String getKey() {
    return key;
}
 
Example #12
Source File: RangeKeyTestClass.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public long getKey() {
    return key;
}
 
Example #13
Source File: KeyOnlyPutITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #14
Source File: SimpleStringAttributesITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey        
public String getKey() {
    return key;
}
 
Example #15
Source File: ScanITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getId() {
    return id;
}
 
Example #16
Source File: InheritanceITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey();
 
Example #17
Source File: MapperSaveConfigCryptoIntegrationTestBase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey(attributeName = hashKeyName)
public String getHashKey() {
    return hashKey;
}
 
Example #18
Source File: ExceptionHandlingITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #19
Source File: ExceptionHandlingITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
@DynamoDBAutoGeneratedKey
public Integer getKey() {
    return key;
}
 
Example #20
Source File: ExceptionHandlingITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #21
Source File: BaseClass.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public int getHashKey() {
    return hashKey;
}
 
Example #22
Source File: ExceptionHandlingITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public ComplexType getKey() {
    return key;
}
 
Example #23
Source File: ExceptionHandlingITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #24
Source File: ExceptionHandlingITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #25
Source File: ExceptionHandlingITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #26
Source File: ExceptionHandlingITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #27
Source File: ExceptionHandlingITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #28
Source File: ExceptionHandlingITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
@DynamoDBAutoGeneratedKey
public String getKey() {
    return key;
}
 
Example #29
Source File: ExceptionHandlingITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@SuppressWarnings("unused")
@DynamoDBHashKey
public String getKey() {
    return key;
}
 
Example #30
Source File: ExceptionHandlingITCase.java    From aws-dynamodb-encryption-java with Apache License 2.0 4 votes vote down vote up
@DynamoDBHashKey
public String getKey() {
    return key;
}