@cdklabs/aws-data-solutions-framework
Version:
L3 CDK Constructs used to build data solutions with AWS
16 lines (15 loc) • 381 B
TypeScript
/**
* 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;
};
}