@gotamedia/aws
Version:
Set of AWS helpers for NodeJs Runtime.
6 lines (5 loc) • 380 B
TypeScript
import type { GetParameterCommandInput, PutParameterCommandInput } from "@aws-sdk/client-ssm";
declare const SSM: import("@aws-sdk/types").Client<any, any, any>;
declare const getParameter: (params: GetParameterCommandInput) => Promise<string>;
declare const putParameter: (params: PutParameterCommandInput) => Promise<void>;
export { getParameter, putParameter, SSM as client };