@aws-lambda-powertools/parameters
Version:
The parameters package for the Powertools for AWS Lambda (TypeScript) library
14 lines • 658 B
TypeScript
import type { EnvironmentVariablesService } from '../config/EnvironmentVariablesService.js';
import type { GetMultipleOptionsInterface } from '../types/BaseProvider.js';
import { GetOptions } from './GetOptions.js';
/**
* Options for the `getMultiple` method.
*
* Extends the `GetOptions` class and adds the `throwOnTransformError` option.
*/
declare class GetMultipleOptions extends GetOptions implements GetMultipleOptionsInterface {
throwOnTransformError: boolean;
constructor(envVarsService: EnvironmentVariablesService, options?: GetMultipleOptionsInterface);
}
export { GetMultipleOptions };
//# sourceMappingURL=GetMultipleOptions.d.ts.map