UNPKG

@smithy/util-endpoints

Version:
26 lines (25 loc) 866 B
import { EndpointARN, EndpointPartition, Logger } from "@smithy/types"; export type ReferenceObject = { ref: string; }; export type FunctionObject = { fn: string; argv: FunctionArgv; }; export type FunctionArgv = Array<Expression | boolean | number>; export type FunctionReturn = string | boolean | number | EndpointARN | EndpointPartition | { [key: string]: FunctionReturn; } | null; export type ConditionObject = FunctionObject & { assign?: string; }; export type Expression = string | ReferenceObject | FunctionObject; export type EndpointParams = Record<string, string | boolean>; export type EndpointResolverOptions = { endpointParams: EndpointParams; logger?: Logger; }; export type ReferenceRecord = Record<string, FunctionReturn>; export type EvaluateOptions = EndpointResolverOptions & { referenceRecord: ReferenceRecord; };