@linked-helper/framework.build-tools.aws-artifacts
Version:
LH framework build tools: upload artifacts
16 lines (15 loc) • 451 B
TypeScript
import { S3Client } from '@aws-sdk/client-s3';
import IConfig from './IConfig';
export declare function getS3Client(options: getS3Client.IOptions): S3Client;
export declare namespace getS3Client {
type IOptions = {
credentials: IConfig.ICredentials;
region: IConfig['region'];
s3?: undefined;
} | {
s3: S3Client;
credentials?: undefined;
region?: undefined;
};
}
export default getS3Client;