Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
74 lines
1.3 KiB
TypeScript
74 lines
1.3 KiB
TypeScript
import type { IDataObject } from 'n8n-workflow';
|
|
|
|
export interface IUserAttribute {
|
|
Name: string;
|
|
Value: string;
|
|
}
|
|
|
|
export interface IUser {
|
|
Username: string;
|
|
Enabled: boolean;
|
|
UserCreateDate: string;
|
|
UserLastModifiedDate: string;
|
|
UserStatus: string;
|
|
Attributes?: IUserAttribute[];
|
|
}
|
|
|
|
export interface IGroup {
|
|
GroupName: string;
|
|
}
|
|
|
|
export interface IListUsersResponse {
|
|
Users: IUser[];
|
|
NextToken?: string;
|
|
}
|
|
|
|
export interface IListGroupsResponse {
|
|
Groups: IGroup[];
|
|
NextToken?: string;
|
|
}
|
|
|
|
export interface IGroupWithUserResponse extends IGroup {
|
|
Users: IUser[];
|
|
}
|
|
|
|
export interface IUserAttributeInput {
|
|
attributeType: string;
|
|
standardName: string;
|
|
customName: string;
|
|
value: string;
|
|
}
|
|
|
|
export interface IUserPool {
|
|
Id: string;
|
|
Name: string;
|
|
UsernameAttributes?: string[];
|
|
AccountRecoverySetting?: IDataObject;
|
|
AdminCreateUserConfig?: IDataObject;
|
|
EmailConfiguration?: IDataObject;
|
|
LambdaConfig?: IDataObject;
|
|
Policies?: IDataObject;
|
|
SchemaAttributes?: IDataObject;
|
|
UserAttributeUpdateSettings?: IDataObject;
|
|
UserPoolTags?: IDataObject;
|
|
UserPoolTier?: string;
|
|
VerificationMessageTemplate?: IDataObject;
|
|
}
|
|
|
|
export interface Filters {
|
|
filter?: {
|
|
attribute?: string;
|
|
value?: string;
|
|
};
|
|
}
|
|
|
|
export interface AwsError {
|
|
__type?: string;
|
|
message?: string;
|
|
}
|
|
|
|
export interface ErrorMessage {
|
|
message: string;
|
|
description: string;
|
|
}
|