Metzploreur/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts
clement callaert 244d45ceb8 Version 2
2023-11-01 17:33:25 +01:00

17 lines
464 B
TypeScript

import { Credentials } from "@aws-sdk/types";
import { Profile } from "@smithy/types";
import { FromIniInit } from "./fromIni";
/**
* @internal
*/
export interface ProcessProfile extends Profile {
credential_process: string;
}
/**
* @internal
*/
export declare const isProcessProfile: (arg: any) => arg is ProcessProfile;
/**
* @internal
*/
export declare const resolveProcessCredentials: (options: FromIniInit, profile: string) => Promise<Credentials>;