We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b4a324 commit 1810c1dCopy full SHA for 1810c1d
Examples/runtimes/net/src/GetEncryptedDataKeyDescriptionExample.cs
@@ -6,6 +6,7 @@
6
using Amazon.DynamoDBv2.Model;
7
using Amazon.DynamoDBv2;
8
using AWS.Cryptography.DbEncryptionSDK.DynamoDb;
9
+using Amazon.Runtime;
10
11
public class GetEncryptedDataKeyDescriptionExample
12
{
@@ -62,7 +63,7 @@ public static async Task GetEncryptedDataKeyDescription()
62
63
var encryptedDataKeyDescriptions = output.EncryptedDataKeyDescriptionOutput;
64
65
Debug.Assert(encryptedDataKeyDescriptions[0].KeyProviderId == "aws-kms");
- Debug.Assert(encryptedDataKeyDescriptions[0].KeyProviderId == kmsKeyId);
66
+ Debug.Assert(encryptedDataKeyDescriptions[0].KeyProviderInfo == kmsKeyId);
67
}
68
69
0 commit comments