-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathidentity-management.ts
35 lines (29 loc) · 1.08 KB
/
identity-management.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import {
AwsResponseError,
GetSsoTokenParams,
GetSsoTokenResult,
InvalidateSsoTokenParams,
InvalidateSsoTokenResult,
ListProfilesParams,
ListProfilesResult,
SsoTokenChangedParams,
UpdateProfileParams,
UpdateProfileResult,
} from '../protocol/identity-management'
import { RequestHandler } from '../protocol'
export * from '../protocol/identity-management'
export type IdentityManagement = {
onListProfiles: (
handler: RequestHandler<ListProfilesParams, ListProfilesResult | undefined | null, AwsResponseError>
) => void
onUpdateProfile: (
handler: RequestHandler<UpdateProfileParams, UpdateProfileResult | undefined | null, AwsResponseError>
) => void
onGetSsoToken: (
handler: RequestHandler<GetSsoTokenParams, GetSsoTokenResult | undefined | null, AwsResponseError>
) => void
onInvalidateSsoToken: (
handler: RequestHandler<InvalidateSsoTokenParams, InvalidateSsoTokenResult | undefined | null, AwsResponseError>
) => void
sendSsoTokenChanged: (params: SsoTokenChangedParams) => void
}