Files
agent-claw/cdk/node_modules/aws-cdk-lib/aws-cognito/lib/private/ref-utils.d.ts
2026-05-06 18:55:16 -05:00

9 lines
486 B
TypeScript

import type { IUserPoolIdentityProviderRef, IUserPoolRef } from '../cognito.generated';
import type { IUserPool } from '../user-pool';
import type { IUserPoolIdentityProvider } from '../user-pool-idp';
/**
* Converts an IUserPoolRef to IUserPool, validating that it implements the full interface
*/
export declare function toIUserPool(ref: IUserPoolRef): IUserPool;
export declare function isIUserPoolIdentityProvider(x: IUserPoolIdentityProviderRef): x is IUserPoolIdentityProvider;