Files
2026-05-06 18:55:16 -05:00

7 lines
379 B
TypeScript

import type { ISchedulingPolicyRef } from '../../../interfaces/generated/aws-batch-interfaces.generated';
import type { ISchedulingPolicy } from '../scheduling-policy';
/**
* Converts an ISchedulingPolicyRef to ISchedulingPolicy, validating that it implements the full interface.
*/
export declare function toISchedulingPolicy(policy: ISchedulingPolicyRef): ISchedulingPolicy;