agent-claw: automated task changes
This commit is contained in:
23
cdk/node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idp.d.ts
generated
vendored
Normal file
23
cdk/node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idp.d.ts
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { Construct } from 'constructs';
|
||||
import type { IResource } from '../../core';
|
||||
import type { IUserPoolIdentityProviderRef } from '../../interfaces/generated/aws-cognito-interfaces.generated';
|
||||
/**
|
||||
* Represents a UserPoolIdentityProvider
|
||||
*/
|
||||
export interface IUserPoolIdentityProvider extends IResource, IUserPoolIdentityProviderRef {
|
||||
/**
|
||||
* The primary identifier of this identity provider
|
||||
* @attribute
|
||||
*/
|
||||
readonly providerName: string;
|
||||
}
|
||||
/**
|
||||
* User pool third-party identity providers
|
||||
*/
|
||||
export declare class UserPoolIdentityProvider {
|
||||
/**
|
||||
* Import an existing UserPoolIdentityProvider
|
||||
*/
|
||||
static fromProviderName(scope: Construct, id: string, providerName: string): IUserPoolIdentityProvider;
|
||||
private constructor();
|
||||
}
|
||||
Reference in New Issue
Block a user