@@ -47,16 +47,16 @@ To use the DB-ESDK for DynamoDB in Java, you must have:
47
47
you must also download and install
48
48
the [ Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files] ( http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html ) .
49
49
50
- * ** Declared a Dependency on the DB-ESDK for DynamoDB in Java and it's dependencies**
50
+ * ** Declare a Dependency on the DB-ESDK for DynamoDB in Java and it's dependencies**
51
51
The DB-ESDK for DynamoDB in Java requires the DynamoDB,
52
52
Dynamodb-Enhanced, and KMS clients from the AWS SDK for Java V2.
53
- It also requires the AwsCryptographicMaterialProviders library.
53
+ It also requires the AWS Cryptographic Material Providers library.
54
54
55
55
* ** Via Gradle Kotlin**
56
56
In a Gradle Java Project, add the following to the _ dependencies_ section:
57
57
``` kotlin
58
58
implementation(" software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:3.0.0" )
59
- implementation(" software.amazon.cryptography:AwsCryptographicMaterialProviders :1.0.0" )
59
+ implementation(" software.amazon.cryptography:aws-cryptographic-material-providers :1.0.0" )
60
60
implementation(platform(" software.amazon.awssdk:bom:2.19.1" ))
61
61
implementation(" software.amazon.awssdk:dynamodb" )
62
62
implementation(" software.amazon.awssdk:dynamodb-enhanced" )
@@ -99,7 +99,7 @@ To use the DB-ESDK for DynamoDB in Java, you must have:
99
99
</dependency >
100
100
<dependency >
101
101
<groupId >software.amazon.cryptography</groupId >
102
- <artifactId >AwsCryptographicMaterialProviders </artifactId >
102
+ <artifactId >aws-cryptographic-material-providers </artifactId >
103
103
<version >1.0.0</version >
104
104
</dependency >
105
105
</dependencies >
0 commit comments