UNPKG

@nfiny-core/parameter-store

Version:

Exposes AWS Parameter Store GET and PUT functionality

8 lines 408 B
import AWS from "aws-sdk"; export default class AWSClient { private ssm; constructor(); getParameterStoreValue(path: string, withDecryption?: boolean): Promise<string | undefined>; updateParameterStoreValue(path: string, value: string, type?: string): Promise<import("aws-sdk/lib/request").PromiseResult<AWS.SSM.PutParameterResult, AWS.AWSError>>; } //# sourceMappingURL=index.d.ts.map