File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
source/client-side-encryption Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 480480
481481The ` credentialProviders ` property may be specified on [ ClientEncryptionOpts] ( #ClientEncryptionOpts ) or
482482[ AutoEncryptionOpts] ( #AutoEncryptionOpts ) . Current support is for AWS only, but is designed to be able to accomodate
483- additional providers in the future. If a custom credential provider is present, it MUST be used instead of the
484- default flow for fetching automatic credentials.
483+ additional providers in the future. If a custom credential provider is present, it MUST be used instead of the default
484+ flow for fetching automatic credentials.
485485
486486``` typescript
487487interface CredentialProviders {
@@ -498,10 +498,10 @@ The following shows an example object of `CredentialProviders` for Node.js:
498498` ` ` typescript
499499import { fromNodeProviderChain } from ' @aws-sdk/credential-providers' ;
500500
501- {
502- // Acquire credentials for AWS:
503- aws: fromNodeProviderChain ()
504- }
501+ const creentialProviders = {
502+ // Acquire credentials for AWS:
503+ aws: fromNodeProviderChain ()
504+ };
505505` ` `
506506
507507#### kmsProviders
You can’t perform that action at this time.
0 commit comments