From c4060ac9516913b0324440380fe374d92df88d3b Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Tue, 9 Feb 2021 11:32:47 +0100 Subject: [PATCH] chore: add FLE AWS sessionToken TypeScript definitions See NODE-3107 --- src/deps.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/deps.ts b/src/deps.ts index 36c6612582..570ca14a31 100644 --- a/src/deps.ts +++ b/src/deps.ts @@ -90,6 +90,11 @@ export interface AutoEncryptionOptions { accessKeyId: string; /** The secret access key used for the AWS KMS provider */ secretAccessKey: string; + /** + * An optional AWS session token that will be used as the + * X-Amz-Security-Token header for AWS requests. + */ + sessionToken?: string; }; /** Configuration options for using 'local' as your KMS provider */ local?: {