@aws-sdk/client-identitystore 3.170.0 → 3.174.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-cjs/models/models_0.js +37 -37
- package/dist-es/models/models_0.js +34 -34
- package/dist-types/models/models_0.d.ts +49 -49
- package/dist-types/ts3.4/Identitystore.d.ts +0 -19
- package/dist-types/ts3.4/IdentitystoreClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/IdentitystoreServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +24 -238
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,49 +1,33 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { DocumentType as __DocumentType } from "@aws-sdk/types";
|
|
3
3
|
import { IdentitystoreServiceException as __BaseException } from "./IdentitystoreServiceException";
|
|
4
|
-
|
|
5
4
|
export declare class AccessDeniedException extends __BaseException {
|
|
6
5
|
readonly name: "AccessDeniedException";
|
|
7
6
|
readonly $fault: "client";
|
|
8
7
|
Message?: string;
|
|
9
|
-
|
|
10
8
|
RequestId?: string;
|
|
11
|
-
|
|
12
9
|
constructor(
|
|
13
10
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
14
11
|
);
|
|
15
12
|
}
|
|
16
|
-
|
|
17
13
|
export interface Address {
|
|
18
14
|
StreetAddress?: string;
|
|
19
|
-
|
|
20
15
|
Locality?: string;
|
|
21
|
-
|
|
22
16
|
Region?: string;
|
|
23
|
-
|
|
24
17
|
PostalCode?: string;
|
|
25
|
-
|
|
26
18
|
Country?: string;
|
|
27
|
-
|
|
28
19
|
Formatted?: string;
|
|
29
|
-
|
|
30
20
|
Type?: string;
|
|
31
|
-
|
|
32
21
|
Primary?: boolean;
|
|
33
22
|
}
|
|
34
|
-
|
|
35
23
|
export interface ExternalId {
|
|
36
24
|
Issuer: string | undefined;
|
|
37
|
-
|
|
38
25
|
Id: string | undefined;
|
|
39
26
|
}
|
|
40
|
-
|
|
41
27
|
export interface UniqueAttribute {
|
|
42
28
|
AttributePath: string | undefined;
|
|
43
|
-
|
|
44
29
|
AttributeValue: __DocumentType | undefined;
|
|
45
30
|
}
|
|
46
|
-
|
|
47
31
|
export declare type AlternateIdentifier =
|
|
48
32
|
| AlternateIdentifier.ExternalIdMember
|
|
49
33
|
| AlternateIdentifier.UniqueAttributeMember
|
|
@@ -54,7 +38,6 @@ export declare namespace AlternateIdentifier {
|
|
|
54
38
|
UniqueAttribute?: never;
|
|
55
39
|
$unknown?: never;
|
|
56
40
|
}
|
|
57
|
-
|
|
58
41
|
interface UniqueAttributeMember {
|
|
59
42
|
ExternalId?: never;
|
|
60
43
|
UniqueAttribute: UniqueAttribute;
|
|
@@ -72,57 +55,68 @@ export declare namespace AlternateIdentifier {
|
|
|
72
55
|
}
|
|
73
56
|
const visit: <T>(value: AlternateIdentifier, visitor: Visitor<T>) => T;
|
|
74
57
|
}
|
|
75
|
-
|
|
76
58
|
export interface AttributeOperation {
|
|
77
59
|
AttributePath: string | undefined;
|
|
78
|
-
|
|
79
60
|
AttributeValue?: __DocumentType;
|
|
80
61
|
}
|
|
81
62
|
export interface GetGroupIdRequest {
|
|
82
63
|
IdentityStoreId: string | undefined;
|
|
83
|
-
|
|
84
64
|
AlternateIdentifier: AlternateIdentifier | undefined;
|
|
85
65
|
}
|
|
86
66
|
export interface GetGroupIdResponse {
|
|
87
67
|
GroupId: string | undefined;
|
|
88
|
-
|
|
89
68
|
IdentityStoreId: string | undefined;
|
|
90
69
|
}
|
|
70
|
+
export declare class InternalServerException extends __BaseException {
|
|
71
|
+
readonly name: "InternalServerException";
|
|
72
|
+
readonly $fault: "server";
|
|
73
|
+
$retryable: {};
|
|
74
|
+
Message?: string;
|
|
75
|
+
RequestId?: string;
|
|
76
|
+
RetryAfterSeconds?: number;
|
|
77
|
+
constructor(
|
|
78
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
79
|
+
);
|
|
80
|
+
}
|
|
91
81
|
export declare enum ResourceType {
|
|
92
82
|
GROUP = "GROUP",
|
|
93
83
|
GROUP_MEMBERSHIP = "GROUP_MEMBERSHIP",
|
|
94
84
|
IDENTITY_STORE = "IDENTITY_STORE",
|
|
95
85
|
USER = "USER",
|
|
96
86
|
}
|
|
97
|
-
|
|
98
87
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
99
88
|
readonly name: "ResourceNotFoundException";
|
|
100
89
|
readonly $fault: "client";
|
|
101
|
-
|
|
102
90
|
ResourceType?: ResourceType | string;
|
|
103
|
-
|
|
104
91
|
ResourceId?: string;
|
|
105
92
|
Message?: string;
|
|
106
|
-
|
|
107
93
|
RequestId?: string;
|
|
108
|
-
|
|
109
94
|
constructor(
|
|
110
95
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
111
96
|
);
|
|
112
97
|
}
|
|
113
|
-
|
|
98
|
+
export declare class ThrottlingException extends __BaseException {
|
|
99
|
+
readonly name: "ThrottlingException";
|
|
100
|
+
readonly $fault: "client";
|
|
101
|
+
$retryable: {
|
|
102
|
+
throttling: boolean;
|
|
103
|
+
};
|
|
104
|
+
Message?: string;
|
|
105
|
+
RequestId?: string;
|
|
106
|
+
RetryAfterSeconds?: number;
|
|
107
|
+
constructor(
|
|
108
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
109
|
+
);
|
|
110
|
+
}
|
|
114
111
|
export declare class ValidationException extends __BaseException {
|
|
115
112
|
readonly name: "ValidationException";
|
|
116
113
|
readonly $fault: "client";
|
|
117
114
|
Message?: string;
|
|
118
|
-
|
|
119
115
|
RequestId?: string;
|
|
120
|
-
|
|
121
116
|
constructor(
|
|
122
117
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
123
118
|
);
|
|
124
119
|
}
|
|
125
|
-
|
|
126
120
|
export declare type MemberId = MemberId.UserIdMember | MemberId.$UnknownMember;
|
|
127
121
|
export declare namespace MemberId {
|
|
128
122
|
interface UserIdMember {
|
|
@@ -141,212 +135,142 @@ export declare namespace MemberId {
|
|
|
141
135
|
}
|
|
142
136
|
export interface GetGroupMembershipIdRequest {
|
|
143
137
|
IdentityStoreId: string | undefined;
|
|
144
|
-
|
|
145
138
|
GroupId: string | undefined;
|
|
146
|
-
|
|
147
139
|
MemberId: MemberId | undefined;
|
|
148
140
|
}
|
|
149
141
|
export interface GetGroupMembershipIdResponse {
|
|
150
142
|
MembershipId: string | undefined;
|
|
151
|
-
|
|
152
143
|
IdentityStoreId: string | undefined;
|
|
153
144
|
}
|
|
154
145
|
export interface GetUserIdRequest {
|
|
155
146
|
IdentityStoreId: string | undefined;
|
|
156
|
-
|
|
157
147
|
AlternateIdentifier: AlternateIdentifier | undefined;
|
|
158
148
|
}
|
|
159
149
|
export interface GetUserIdResponse {
|
|
160
150
|
UserId: string | undefined;
|
|
161
|
-
|
|
162
151
|
IdentityStoreId: string | undefined;
|
|
163
152
|
}
|
|
164
153
|
export declare enum ConflictExceptionReason {
|
|
165
154
|
CONCURRENT_MODIFICATION = "CONCURRENT_MODIFICATION",
|
|
166
155
|
UNIQUENESS_CONSTRAINT_VIOLATION = "UNIQUENESS_CONSTRAINT_VIOLATION",
|
|
167
156
|
}
|
|
168
|
-
|
|
169
157
|
export declare class ConflictException extends __BaseException {
|
|
170
158
|
readonly name: "ConflictException";
|
|
171
159
|
readonly $fault: "client";
|
|
172
160
|
Message?: string;
|
|
173
|
-
|
|
174
161
|
RequestId?: string;
|
|
175
|
-
|
|
176
162
|
Reason?: ConflictExceptionReason | string;
|
|
177
|
-
|
|
178
163
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
179
164
|
}
|
|
180
165
|
export interface CreateGroupMembershipRequest {
|
|
181
166
|
IdentityStoreId: string | undefined;
|
|
182
|
-
|
|
183
167
|
GroupId: string | undefined;
|
|
184
|
-
|
|
185
168
|
MemberId: MemberId | undefined;
|
|
186
169
|
}
|
|
187
170
|
export interface CreateGroupMembershipResponse {
|
|
188
171
|
MembershipId: string | undefined;
|
|
189
|
-
|
|
190
172
|
IdentityStoreId: string | undefined;
|
|
191
173
|
}
|
|
192
|
-
|
|
193
174
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
194
175
|
readonly name: "ServiceQuotaExceededException";
|
|
195
176
|
readonly $fault: "client";
|
|
196
177
|
Message?: string;
|
|
197
|
-
|
|
198
178
|
RequestId?: string;
|
|
199
|
-
|
|
200
179
|
constructor(
|
|
201
180
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
202
181
|
);
|
|
203
182
|
}
|
|
204
183
|
export interface DeleteGroupMembershipRequest {
|
|
205
184
|
IdentityStoreId: string | undefined;
|
|
206
|
-
|
|
207
185
|
MembershipId: string | undefined;
|
|
208
186
|
}
|
|
209
187
|
export interface DeleteGroupMembershipResponse {}
|
|
210
188
|
export interface DescribeGroupMembershipRequest {
|
|
211
189
|
IdentityStoreId: string | undefined;
|
|
212
|
-
|
|
213
190
|
MembershipId: string | undefined;
|
|
214
191
|
}
|
|
215
192
|
export interface DescribeGroupMembershipResponse {
|
|
216
193
|
IdentityStoreId: string | undefined;
|
|
217
|
-
|
|
218
194
|
MembershipId: string | undefined;
|
|
219
|
-
|
|
220
195
|
GroupId: string | undefined;
|
|
221
|
-
|
|
222
196
|
MemberId: MemberId | undefined;
|
|
223
197
|
}
|
|
224
198
|
export interface ListGroupMembershipsRequest {
|
|
225
199
|
IdentityStoreId: string | undefined;
|
|
226
|
-
|
|
227
200
|
GroupId: string | undefined;
|
|
228
|
-
|
|
229
201
|
MaxResults?: number;
|
|
230
|
-
|
|
231
202
|
NextToken?: string;
|
|
232
203
|
}
|
|
233
|
-
|
|
234
204
|
export interface GroupMembership {
|
|
235
205
|
IdentityStoreId: string | undefined;
|
|
236
|
-
|
|
237
206
|
MembershipId?: string;
|
|
238
|
-
|
|
239
207
|
GroupId?: string;
|
|
240
|
-
|
|
241
208
|
MemberId?: MemberId;
|
|
242
209
|
}
|
|
243
210
|
export interface ListGroupMembershipsResponse {
|
|
244
211
|
GroupMemberships: GroupMembership[] | undefined;
|
|
245
|
-
|
|
246
212
|
NextToken?: string;
|
|
247
213
|
}
|
|
248
214
|
export interface CreateGroupRequest {
|
|
249
215
|
IdentityStoreId: string | undefined;
|
|
250
|
-
|
|
251
216
|
DisplayName?: string;
|
|
252
|
-
|
|
253
217
|
Description?: string;
|
|
254
218
|
}
|
|
255
219
|
export interface CreateGroupResponse {
|
|
256
220
|
GroupId: string | undefined;
|
|
257
|
-
|
|
258
221
|
IdentityStoreId: string | undefined;
|
|
259
222
|
}
|
|
260
223
|
export interface DeleteGroupRequest {
|
|
261
224
|
IdentityStoreId: string | undefined;
|
|
262
|
-
|
|
263
225
|
GroupId: string | undefined;
|
|
264
226
|
}
|
|
265
227
|
export interface DeleteGroupResponse {}
|
|
266
228
|
export interface DescribeGroupRequest {
|
|
267
229
|
IdentityStoreId: string | undefined;
|
|
268
|
-
|
|
269
230
|
GroupId: string | undefined;
|
|
270
231
|
}
|
|
271
232
|
export interface DescribeGroupResponse {
|
|
272
233
|
GroupId: string | undefined;
|
|
273
|
-
|
|
274
234
|
DisplayName?: string;
|
|
275
|
-
|
|
276
235
|
ExternalIds?: ExternalId[];
|
|
277
|
-
|
|
278
236
|
Description?: string;
|
|
279
|
-
|
|
280
237
|
IdentityStoreId: string | undefined;
|
|
281
238
|
}
|
|
282
|
-
|
|
283
239
|
export interface Filter {
|
|
284
240
|
AttributePath: string | undefined;
|
|
285
|
-
|
|
286
241
|
AttributeValue: string | undefined;
|
|
287
242
|
}
|
|
288
243
|
export interface ListGroupsRequest {
|
|
289
244
|
IdentityStoreId: string | undefined;
|
|
290
|
-
|
|
291
245
|
MaxResults?: number;
|
|
292
|
-
|
|
293
246
|
NextToken?: string;
|
|
294
|
-
|
|
295
247
|
Filters?: Filter[];
|
|
296
248
|
}
|
|
297
|
-
|
|
298
249
|
export interface Group {
|
|
299
250
|
GroupId: string | undefined;
|
|
300
|
-
|
|
301
251
|
DisplayName?: string;
|
|
302
|
-
|
|
303
252
|
ExternalIds?: ExternalId[];
|
|
304
|
-
|
|
305
253
|
Description?: string;
|
|
306
|
-
|
|
307
254
|
IdentityStoreId: string | undefined;
|
|
308
255
|
}
|
|
309
256
|
export interface ListGroupsResponse {
|
|
310
257
|
Groups: Group[] | undefined;
|
|
311
|
-
|
|
312
258
|
NextToken?: string;
|
|
313
259
|
}
|
|
314
260
|
export interface UpdateGroupRequest {
|
|
315
261
|
IdentityStoreId: string | undefined;
|
|
316
|
-
|
|
317
262
|
GroupId: string | undefined;
|
|
318
|
-
|
|
319
263
|
Operations: AttributeOperation[] | undefined;
|
|
320
264
|
}
|
|
321
265
|
export interface UpdateGroupResponse {}
|
|
322
|
-
|
|
323
|
-
export declare class InternalServerException extends __BaseException {
|
|
324
|
-
readonly name: "InternalServerException";
|
|
325
|
-
readonly $fault: "server";
|
|
326
|
-
$retryable: {};
|
|
327
|
-
Message?: string;
|
|
328
|
-
|
|
329
|
-
RequestId?: string;
|
|
330
|
-
|
|
331
|
-
RetryAfterSeconds?: number;
|
|
332
|
-
|
|
333
|
-
constructor(
|
|
334
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
335
|
-
);
|
|
336
|
-
}
|
|
337
266
|
export interface IsMemberInGroupsRequest {
|
|
338
267
|
IdentityStoreId: string | undefined;
|
|
339
|
-
|
|
340
268
|
MemberId: MemberId | undefined;
|
|
341
|
-
|
|
342
269
|
GroupIds: string[] | undefined;
|
|
343
270
|
}
|
|
344
|
-
|
|
345
271
|
export interface GroupMembershipExistenceResult {
|
|
346
272
|
GroupId?: string;
|
|
347
|
-
|
|
348
273
|
MemberId?: MemberId;
|
|
349
|
-
|
|
350
274
|
MembershipExists?: boolean;
|
|
351
275
|
}
|
|
352
276
|
export interface IsMemberInGroupsResponse {
|
|
@@ -354,386 +278,248 @@ export interface IsMemberInGroupsResponse {
|
|
|
354
278
|
}
|
|
355
279
|
export interface ListGroupMembershipsForMemberRequest {
|
|
356
280
|
IdentityStoreId: string | undefined;
|
|
357
|
-
|
|
358
281
|
MemberId: MemberId | undefined;
|
|
359
|
-
|
|
360
282
|
MaxResults?: number;
|
|
361
|
-
|
|
362
283
|
NextToken?: string;
|
|
363
284
|
}
|
|
364
285
|
export interface ListGroupMembershipsForMemberResponse {
|
|
365
286
|
GroupMemberships: GroupMembership[] | undefined;
|
|
366
|
-
|
|
367
287
|
NextToken?: string;
|
|
368
288
|
}
|
|
369
|
-
|
|
370
|
-
export declare class ThrottlingException extends __BaseException {
|
|
371
|
-
readonly name: "ThrottlingException";
|
|
372
|
-
readonly $fault: "client";
|
|
373
|
-
$retryable: {
|
|
374
|
-
throttling: boolean;
|
|
375
|
-
};
|
|
376
|
-
Message?: string;
|
|
377
|
-
|
|
378
|
-
RequestId?: string;
|
|
379
|
-
|
|
380
|
-
RetryAfterSeconds?: number;
|
|
381
|
-
|
|
382
|
-
constructor(
|
|
383
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
384
|
-
);
|
|
385
|
-
}
|
|
386
|
-
|
|
387
289
|
export interface Email {
|
|
388
290
|
Value?: string;
|
|
389
|
-
|
|
390
291
|
Type?: string;
|
|
391
|
-
|
|
392
292
|
Primary?: boolean;
|
|
393
293
|
}
|
|
394
|
-
|
|
395
294
|
export interface Name {
|
|
396
295
|
Formatted?: string;
|
|
397
|
-
|
|
398
296
|
FamilyName?: string;
|
|
399
|
-
|
|
400
297
|
GivenName?: string;
|
|
401
|
-
|
|
402
298
|
MiddleName?: string;
|
|
403
|
-
|
|
404
299
|
HonorificPrefix?: string;
|
|
405
|
-
|
|
406
300
|
HonorificSuffix?: string;
|
|
407
301
|
}
|
|
408
|
-
|
|
409
302
|
export interface PhoneNumber {
|
|
410
303
|
Value?: string;
|
|
411
|
-
|
|
412
304
|
Type?: string;
|
|
413
|
-
|
|
414
305
|
Primary?: boolean;
|
|
415
306
|
}
|
|
416
307
|
export interface CreateUserRequest {
|
|
417
308
|
IdentityStoreId: string | undefined;
|
|
418
|
-
|
|
419
309
|
UserName?: string;
|
|
420
|
-
|
|
421
310
|
Name?: Name;
|
|
422
|
-
|
|
423
311
|
DisplayName?: string;
|
|
424
|
-
|
|
425
312
|
NickName?: string;
|
|
426
|
-
|
|
427
313
|
ProfileUrl?: string;
|
|
428
|
-
|
|
429
314
|
Emails?: Email[];
|
|
430
|
-
|
|
431
315
|
Addresses?: Address[];
|
|
432
|
-
|
|
433
316
|
PhoneNumbers?: PhoneNumber[];
|
|
434
|
-
|
|
435
317
|
UserType?: string;
|
|
436
|
-
|
|
437
318
|
Title?: string;
|
|
438
|
-
|
|
439
319
|
PreferredLanguage?: string;
|
|
440
|
-
|
|
441
320
|
Locale?: string;
|
|
442
|
-
|
|
443
321
|
Timezone?: string;
|
|
444
322
|
}
|
|
445
323
|
export interface CreateUserResponse {
|
|
446
324
|
UserId: string | undefined;
|
|
447
|
-
|
|
448
325
|
IdentityStoreId: string | undefined;
|
|
449
326
|
}
|
|
450
327
|
export interface DeleteUserRequest {
|
|
451
328
|
IdentityStoreId: string | undefined;
|
|
452
|
-
|
|
453
329
|
UserId: string | undefined;
|
|
454
330
|
}
|
|
455
331
|
export interface DeleteUserResponse {}
|
|
456
332
|
export interface DescribeUserRequest {
|
|
457
333
|
IdentityStoreId: string | undefined;
|
|
458
|
-
|
|
459
334
|
UserId: string | undefined;
|
|
460
335
|
}
|
|
461
336
|
export interface DescribeUserResponse {
|
|
462
337
|
UserName?: string;
|
|
463
|
-
|
|
464
338
|
UserId: string | undefined;
|
|
465
|
-
|
|
466
339
|
ExternalIds?: ExternalId[];
|
|
467
|
-
|
|
468
340
|
Name?: Name;
|
|
469
|
-
|
|
470
341
|
DisplayName?: string;
|
|
471
|
-
|
|
472
342
|
NickName?: string;
|
|
473
|
-
|
|
474
343
|
ProfileUrl?: string;
|
|
475
|
-
|
|
476
344
|
Emails?: Email[];
|
|
477
|
-
|
|
478
345
|
Addresses?: Address[];
|
|
479
|
-
|
|
480
346
|
PhoneNumbers?: PhoneNumber[];
|
|
481
|
-
|
|
482
347
|
UserType?: string;
|
|
483
|
-
|
|
484
348
|
Title?: string;
|
|
485
|
-
|
|
486
349
|
PreferredLanguage?: string;
|
|
487
|
-
|
|
488
350
|
Locale?: string;
|
|
489
|
-
|
|
490
351
|
Timezone?: string;
|
|
491
|
-
|
|
492
352
|
IdentityStoreId: string | undefined;
|
|
493
353
|
}
|
|
494
354
|
export interface ListUsersRequest {
|
|
495
355
|
IdentityStoreId: string | undefined;
|
|
496
|
-
|
|
497
356
|
MaxResults?: number;
|
|
498
|
-
|
|
499
357
|
NextToken?: string;
|
|
500
|
-
|
|
501
358
|
Filters?: Filter[];
|
|
502
359
|
}
|
|
503
|
-
|
|
504
360
|
export interface User {
|
|
505
361
|
UserName?: string;
|
|
506
|
-
|
|
507
362
|
UserId: string | undefined;
|
|
508
|
-
|
|
509
363
|
ExternalIds?: ExternalId[];
|
|
510
|
-
|
|
511
364
|
Name?: Name;
|
|
512
|
-
|
|
513
365
|
DisplayName?: string;
|
|
514
|
-
|
|
515
366
|
NickName?: string;
|
|
516
|
-
|
|
517
367
|
ProfileUrl?: string;
|
|
518
|
-
|
|
519
368
|
Emails?: Email[];
|
|
520
|
-
|
|
521
369
|
Addresses?: Address[];
|
|
522
|
-
|
|
523
370
|
PhoneNumbers?: PhoneNumber[];
|
|
524
|
-
|
|
525
371
|
UserType?: string;
|
|
526
|
-
|
|
527
372
|
Title?: string;
|
|
528
|
-
|
|
529
373
|
PreferredLanguage?: string;
|
|
530
|
-
|
|
531
374
|
Locale?: string;
|
|
532
|
-
|
|
533
375
|
Timezone?: string;
|
|
534
|
-
|
|
535
376
|
IdentityStoreId: string | undefined;
|
|
536
377
|
}
|
|
537
378
|
export interface ListUsersResponse {
|
|
538
379
|
Users: User[] | undefined;
|
|
539
|
-
|
|
540
380
|
NextToken?: string;
|
|
541
381
|
}
|
|
542
382
|
export interface UpdateUserRequest {
|
|
543
383
|
IdentityStoreId: string | undefined;
|
|
544
|
-
|
|
545
384
|
UserId: string | undefined;
|
|
546
|
-
|
|
547
385
|
Operations: AttributeOperation[] | undefined;
|
|
548
386
|
}
|
|
549
387
|
export interface UpdateUserResponse {}
|
|
550
|
-
|
|
551
388
|
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
552
|
-
|
|
553
389
|
export declare const ExternalIdFilterSensitiveLog: (obj: ExternalId) => any;
|
|
554
|
-
|
|
555
390
|
export declare const UniqueAttributeFilterSensitiveLog: (
|
|
556
391
|
obj: UniqueAttribute
|
|
557
392
|
) => any;
|
|
558
|
-
|
|
559
393
|
export declare const AlternateIdentifierFilterSensitiveLog: (
|
|
560
394
|
obj: AlternateIdentifier
|
|
561
395
|
) => any;
|
|
562
|
-
|
|
563
396
|
export declare const AttributeOperationFilterSensitiveLog: (
|
|
564
397
|
obj: AttributeOperation
|
|
565
398
|
) => any;
|
|
566
|
-
|
|
567
399
|
export declare const GetGroupIdRequestFilterSensitiveLog: (
|
|
568
400
|
obj: GetGroupIdRequest
|
|
569
401
|
) => any;
|
|
570
|
-
|
|
571
402
|
export declare const GetGroupIdResponseFilterSensitiveLog: (
|
|
572
403
|
obj: GetGroupIdResponse
|
|
573
404
|
) => any;
|
|
574
|
-
|
|
575
405
|
export declare const MemberIdFilterSensitiveLog: (obj: MemberId) => any;
|
|
576
|
-
|
|
577
406
|
export declare const GetGroupMembershipIdRequestFilterSensitiveLog: (
|
|
578
407
|
obj: GetGroupMembershipIdRequest
|
|
579
408
|
) => any;
|
|
580
|
-
|
|
581
409
|
export declare const GetGroupMembershipIdResponseFilterSensitiveLog: (
|
|
582
410
|
obj: GetGroupMembershipIdResponse
|
|
583
411
|
) => any;
|
|
584
|
-
|
|
585
412
|
export declare const GetUserIdRequestFilterSensitiveLog: (
|
|
586
413
|
obj: GetUserIdRequest
|
|
587
414
|
) => any;
|
|
588
|
-
|
|
589
415
|
export declare const GetUserIdResponseFilterSensitiveLog: (
|
|
590
416
|
obj: GetUserIdResponse
|
|
591
417
|
) => any;
|
|
592
|
-
|
|
593
418
|
export declare const CreateGroupMembershipRequestFilterSensitiveLog: (
|
|
594
419
|
obj: CreateGroupMembershipRequest
|
|
595
420
|
) => any;
|
|
596
|
-
|
|
597
421
|
export declare const CreateGroupMembershipResponseFilterSensitiveLog: (
|
|
598
422
|
obj: CreateGroupMembershipResponse
|
|
599
423
|
) => any;
|
|
600
|
-
|
|
601
424
|
export declare const DeleteGroupMembershipRequestFilterSensitiveLog: (
|
|
602
425
|
obj: DeleteGroupMembershipRequest
|
|
603
426
|
) => any;
|
|
604
|
-
|
|
605
427
|
export declare const DeleteGroupMembershipResponseFilterSensitiveLog: (
|
|
606
428
|
obj: DeleteGroupMembershipResponse
|
|
607
429
|
) => any;
|
|
608
|
-
|
|
609
430
|
export declare const DescribeGroupMembershipRequestFilterSensitiveLog: (
|
|
610
431
|
obj: DescribeGroupMembershipRequest
|
|
611
432
|
) => any;
|
|
612
|
-
|
|
613
433
|
export declare const DescribeGroupMembershipResponseFilterSensitiveLog: (
|
|
614
434
|
obj: DescribeGroupMembershipResponse
|
|
615
435
|
) => any;
|
|
616
|
-
|
|
617
436
|
export declare const ListGroupMembershipsRequestFilterSensitiveLog: (
|
|
618
437
|
obj: ListGroupMembershipsRequest
|
|
619
438
|
) => any;
|
|
620
|
-
|
|
621
439
|
export declare const GroupMembershipFilterSensitiveLog: (
|
|
622
440
|
obj: GroupMembership
|
|
623
441
|
) => any;
|
|
624
|
-
|
|
625
442
|
export declare const ListGroupMembershipsResponseFilterSensitiveLog: (
|
|
626
443
|
obj: ListGroupMembershipsResponse
|
|
627
444
|
) => any;
|
|
628
|
-
|
|
629
445
|
export declare const CreateGroupRequestFilterSensitiveLog: (
|
|
630
446
|
obj: CreateGroupRequest
|
|
631
447
|
) => any;
|
|
632
|
-
|
|
633
448
|
export declare const CreateGroupResponseFilterSensitiveLog: (
|
|
634
449
|
obj: CreateGroupResponse
|
|
635
450
|
) => any;
|
|
636
|
-
|
|
637
451
|
export declare const DeleteGroupRequestFilterSensitiveLog: (
|
|
638
452
|
obj: DeleteGroupRequest
|
|
639
453
|
) => any;
|
|
640
|
-
|
|
641
454
|
export declare const DeleteGroupResponseFilterSensitiveLog: (
|
|
642
455
|
obj: DeleteGroupResponse
|
|
643
456
|
) => any;
|
|
644
|
-
|
|
645
457
|
export declare const DescribeGroupRequestFilterSensitiveLog: (
|
|
646
458
|
obj: DescribeGroupRequest
|
|
647
459
|
) => any;
|
|
648
|
-
|
|
649
460
|
export declare const DescribeGroupResponseFilterSensitiveLog: (
|
|
650
461
|
obj: DescribeGroupResponse
|
|
651
462
|
) => any;
|
|
652
|
-
|
|
653
463
|
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
654
|
-
|
|
655
464
|
export declare const ListGroupsRequestFilterSensitiveLog: (
|
|
656
465
|
obj: ListGroupsRequest
|
|
657
466
|
) => any;
|
|
658
|
-
|
|
659
467
|
export declare const GroupFilterSensitiveLog: (obj: Group) => any;
|
|
660
|
-
|
|
661
468
|
export declare const ListGroupsResponseFilterSensitiveLog: (
|
|
662
469
|
obj: ListGroupsResponse
|
|
663
470
|
) => any;
|
|
664
|
-
|
|
665
471
|
export declare const UpdateGroupRequestFilterSensitiveLog: (
|
|
666
472
|
obj: UpdateGroupRequest
|
|
667
473
|
) => any;
|
|
668
|
-
|
|
669
474
|
export declare const UpdateGroupResponseFilterSensitiveLog: (
|
|
670
475
|
obj: UpdateGroupResponse
|
|
671
476
|
) => any;
|
|
672
|
-
|
|
673
477
|
export declare const IsMemberInGroupsRequestFilterSensitiveLog: (
|
|
674
478
|
obj: IsMemberInGroupsRequest
|
|
675
479
|
) => any;
|
|
676
|
-
|
|
677
480
|
export declare const GroupMembershipExistenceResultFilterSensitiveLog: (
|
|
678
481
|
obj: GroupMembershipExistenceResult
|
|
679
482
|
) => any;
|
|
680
|
-
|
|
681
483
|
export declare const IsMemberInGroupsResponseFilterSensitiveLog: (
|
|
682
484
|
obj: IsMemberInGroupsResponse
|
|
683
485
|
) => any;
|
|
684
|
-
|
|
685
486
|
export declare const ListGroupMembershipsForMemberRequestFilterSensitiveLog: (
|
|
686
487
|
obj: ListGroupMembershipsForMemberRequest
|
|
687
488
|
) => any;
|
|
688
|
-
|
|
689
489
|
export declare const ListGroupMembershipsForMemberResponseFilterSensitiveLog: (
|
|
690
490
|
obj: ListGroupMembershipsForMemberResponse
|
|
691
491
|
) => any;
|
|
692
|
-
|
|
693
492
|
export declare const EmailFilterSensitiveLog: (obj: Email) => any;
|
|
694
|
-
|
|
695
493
|
export declare const NameFilterSensitiveLog: (obj: Name) => any;
|
|
696
|
-
|
|
697
494
|
export declare const PhoneNumberFilterSensitiveLog: (obj: PhoneNumber) => any;
|
|
698
|
-
|
|
699
495
|
export declare const CreateUserRequestFilterSensitiveLog: (
|
|
700
496
|
obj: CreateUserRequest
|
|
701
497
|
) => any;
|
|
702
|
-
|
|
703
498
|
export declare const CreateUserResponseFilterSensitiveLog: (
|
|
704
499
|
obj: CreateUserResponse
|
|
705
500
|
) => any;
|
|
706
|
-
|
|
707
501
|
export declare const DeleteUserRequestFilterSensitiveLog: (
|
|
708
502
|
obj: DeleteUserRequest
|
|
709
503
|
) => any;
|
|
710
|
-
|
|
711
504
|
export declare const DeleteUserResponseFilterSensitiveLog: (
|
|
712
505
|
obj: DeleteUserResponse
|
|
713
506
|
) => any;
|
|
714
|
-
|
|
715
507
|
export declare const DescribeUserRequestFilterSensitiveLog: (
|
|
716
508
|
obj: DescribeUserRequest
|
|
717
509
|
) => any;
|
|
718
|
-
|
|
719
510
|
export declare const DescribeUserResponseFilterSensitiveLog: (
|
|
720
511
|
obj: DescribeUserResponse
|
|
721
512
|
) => any;
|
|
722
|
-
|
|
723
513
|
export declare const ListUsersRequestFilterSensitiveLog: (
|
|
724
514
|
obj: ListUsersRequest
|
|
725
515
|
) => any;
|
|
726
|
-
|
|
727
516
|
export declare const UserFilterSensitiveLog: (obj: User) => any;
|
|
728
|
-
|
|
729
517
|
export declare const ListUsersResponseFilterSensitiveLog: (
|
|
730
518
|
obj: ListUsersResponse
|
|
731
519
|
) => any;
|
|
732
|
-
|
|
733
520
|
export declare const UpdateUserRequestFilterSensitiveLog: (
|
|
734
521
|
obj: UpdateUserRequest
|
|
735
522
|
) => any;
|
|
736
|
-
|
|
737
523
|
export declare const UpdateUserResponseFilterSensitiveLog: (
|
|
738
524
|
obj: UpdateUserResponse
|
|
739
525
|
) => any;
|