UNPKG

@cdklabs/aws-data-solutions-framework

Version:
16 lines (15 loc) 381 B
/** * Utils for working with AWS Step Functions. */ export declare class StepFunctionUtils { /** * Convert camel case properties to pascal case as required by AWS Step Functions API * @param config * @returns config converted to pascal case. */ static camelToPascal(config: { [key: string]: any; }): { [key: string]: any; }; }