Skip to content

Commit

Permalink
docs: add comment about clientConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Apr 26, 2024
1 parent 9de6c47 commit 5b7b4a0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion packages/credential-provider-ini/src/fromIni.ts
Expand Up @@ -38,7 +38,12 @@ export interface FromIniInit extends SourceProfileInit, CredentialProviderOption
*/
roleAssumerWithWebIdentity?: (params: AssumeRoleWithWebIdentityParams) => Promise<AwsCredentialIdentity>;

clientConfig?: any; // STSClientConfig;
/**
* STSClientConfig to be used for creating STS Client for assuming role.
* @internal
*/
clientConfig?: any;

clientPlugins?: Pluggable<any, any>[];
}

Expand Down
Expand Up @@ -136,9 +136,10 @@ export interface FromWebTokenInit
roleAssumerWithWebIdentity?: (params: AssumeRoleWithWebIdentityParams) => Promise<AwsCredentialIdentity>;

/**
* STSClientConfig to be used for creating STS Client for assuming role.
* @internal
*/
clientConfig?: any; // STSClientConfig;
clientConfig?: any;

/**
* @internal
Expand Down

0 comments on commit 5b7b4a0

Please sign in to comment.