aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
8 lines (7 loc) • 304 B
TypeScript
import type { IConnection } from '../connection';
import type { IConnectionRef } from '../events.generated';
/**
* Convert an IConnectionRef to IConnection, validating that it implements the full interface
* @internal
*/
export declare function toIConnection(connection: IConnectionRef): IConnection;