@aws-sdk/client-identitystore 3.529.1 → 3.535.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/dist-types/Identitystore.d.ts +1 -1
- package/dist-types/IdentitystoreClient.d.ts +1 -1
- package/dist-types/commands/CreateGroupCommand.d.ts +2 -1
- package/dist-types/commands/CreateGroupMembershipCommand.d.ts +2 -1
- package/dist-types/commands/CreateUserCommand.d.ts +2 -1
- package/dist-types/commands/DeleteGroupCommand.d.ts +2 -1
- package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +2 -1
- package/dist-types/commands/DeleteUserCommand.d.ts +2 -1
- package/dist-types/commands/DescribeGroupCommand.d.ts +2 -1
- package/dist-types/commands/DescribeGroupMembershipCommand.d.ts +2 -1
- package/dist-types/commands/DescribeUserCommand.d.ts +2 -1
- package/dist-types/commands/GetGroupIdCommand.d.ts +2 -1
- package/dist-types/commands/GetGroupMembershipIdCommand.d.ts +2 -1
- package/dist-types/commands/GetUserIdCommand.d.ts +2 -1
- package/dist-types/commands/IsMemberInGroupsCommand.d.ts +2 -1
- package/dist-types/commands/ListGroupMembershipsCommand.d.ts +2 -1
- package/dist-types/commands/ListGroupMembershipsForMemberCommand.d.ts +2 -1
- package/dist-types/commands/ListGroupsCommand.d.ts +2 -1
- package/dist-types/commands/ListUsersCommand.d.ts +2 -1
- package/dist-types/commands/UpdateGroupCommand.d.ts +2 -1
- package/dist-types/commands/UpdateUserCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +202 -202
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +40 -40
|
@@ -2,18 +2,18 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
|
|
|
2
2
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
3
3
|
import { IdentitystoreServiceException as __BaseException } from "./IdentitystoreServiceException";
|
|
4
4
|
/**
|
|
5
|
-
* @public
|
|
6
5
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
6
|
+
* @public
|
|
7
7
|
*/
|
|
8
8
|
export declare class AccessDeniedException extends __BaseException {
|
|
9
9
|
readonly name: "AccessDeniedException";
|
|
10
10
|
readonly $fault: "client";
|
|
11
11
|
Message?: string;
|
|
12
12
|
/**
|
|
13
|
-
* @public
|
|
14
13
|
* <p>The identifier for each request. This value is a globally unique ID that is generated by
|
|
15
14
|
* the identity store service for each sent request, and is then returned inside the exception
|
|
16
15
|
* if the request fails.</p>
|
|
16
|
+
* @public
|
|
17
17
|
*/
|
|
18
18
|
RequestId?: string;
|
|
19
19
|
/**
|
|
@@ -22,94 +22,94 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
22
22
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
|
-
* @public
|
|
26
25
|
* <p>The address associated with the specified user.</p>
|
|
26
|
+
* @public
|
|
27
27
|
*/
|
|
28
28
|
export interface Address {
|
|
29
29
|
/**
|
|
30
|
-
* @public
|
|
31
30
|
* <p>The
|
|
32
31
|
* street
|
|
33
32
|
* of the address.</p>
|
|
33
|
+
* @public
|
|
34
34
|
*/
|
|
35
35
|
StreetAddress?: string;
|
|
36
36
|
/**
|
|
37
|
-
* @public
|
|
38
37
|
* <p>A string of the address locality.</p>
|
|
38
|
+
* @public
|
|
39
39
|
*/
|
|
40
40
|
Locality?: string;
|
|
41
41
|
/**
|
|
42
|
-
* @public
|
|
43
42
|
* <p>The
|
|
44
43
|
* region
|
|
45
44
|
* of the address.</p>
|
|
45
|
+
* @public
|
|
46
46
|
*/
|
|
47
47
|
Region?: string;
|
|
48
48
|
/**
|
|
49
|
-
* @public
|
|
50
49
|
* <p>The postal code of the address.</p>
|
|
50
|
+
* @public
|
|
51
51
|
*/
|
|
52
52
|
PostalCode?: string;
|
|
53
53
|
/**
|
|
54
|
-
* @public
|
|
55
54
|
* <p>The country of the address.</p>
|
|
55
|
+
* @public
|
|
56
56
|
*/
|
|
57
57
|
Country?: string;
|
|
58
58
|
/**
|
|
59
|
-
* @public
|
|
60
59
|
* <p>A string containing a formatted version of the address for display.</p>
|
|
60
|
+
* @public
|
|
61
61
|
*/
|
|
62
62
|
Formatted?: string;
|
|
63
63
|
/**
|
|
64
|
-
* @public
|
|
65
64
|
* <p>A string representing the type of address. For example, "Home."</p>
|
|
65
|
+
* @public
|
|
66
66
|
*/
|
|
67
67
|
Type?: string;
|
|
68
68
|
/**
|
|
69
|
-
* @public
|
|
70
69
|
* <p>A Boolean value representing whether this is the primary address for the associated
|
|
71
70
|
* resource.</p>
|
|
71
|
+
* @public
|
|
72
72
|
*/
|
|
73
73
|
Primary?: boolean;
|
|
74
74
|
}
|
|
75
75
|
/**
|
|
76
|
-
* @public
|
|
77
76
|
* <p>The identifier issued to this resource by an external identity provider.</p>
|
|
77
|
+
* @public
|
|
78
78
|
*/
|
|
79
79
|
export interface ExternalId {
|
|
80
80
|
/**
|
|
81
|
-
* @public
|
|
82
81
|
* <p>The issuer for an external identifier.</p>
|
|
82
|
+
* @public
|
|
83
83
|
*/
|
|
84
84
|
Issuer: string | undefined;
|
|
85
85
|
/**
|
|
86
|
-
* @public
|
|
87
86
|
* <p>The identifier issued to this resource by an external identity provider.</p>
|
|
87
|
+
* @public
|
|
88
88
|
*/
|
|
89
89
|
Id: string | undefined;
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
|
-
* @public
|
|
93
92
|
* <p>An entity attribute that's unique to a specific entity.</p>
|
|
93
|
+
* @public
|
|
94
94
|
*/
|
|
95
95
|
export interface UniqueAttribute {
|
|
96
96
|
/**
|
|
97
|
-
* @public
|
|
98
97
|
* <p>A string representation of the path to a given attribute or sub-attribute. Supports
|
|
99
98
|
* JMESPath.</p>
|
|
99
|
+
* @public
|
|
100
100
|
*/
|
|
101
101
|
AttributePath: string | undefined;
|
|
102
102
|
/**
|
|
103
|
-
* @public
|
|
104
103
|
* <p>The value of the attribute. This is a <code>Document</code> type.
|
|
105
104
|
* This type is not supported by Java V1, Go V1, and older versions of the CLI.</p>
|
|
105
|
+
* @public
|
|
106
106
|
*/
|
|
107
107
|
AttributeValue: __DocumentType | undefined;
|
|
108
108
|
}
|
|
109
109
|
/**
|
|
110
|
-
* @public
|
|
111
110
|
* <p>A unique identifier for a user or group that is not the primary identifier. This value can be
|
|
112
111
|
* an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute.</p>
|
|
112
|
+
* @public
|
|
113
113
|
*/
|
|
114
114
|
export type AlternateIdentifier = AlternateIdentifier.ExternalIdMember | AlternateIdentifier.UniqueAttributeMember | AlternateIdentifier.$UnknownMember;
|
|
115
115
|
/**
|
|
@@ -117,8 +117,8 @@ export type AlternateIdentifier = AlternateIdentifier.ExternalIdMember | Alterna
|
|
|
117
117
|
*/
|
|
118
118
|
export declare namespace AlternateIdentifier {
|
|
119
119
|
/**
|
|
120
|
-
* @public
|
|
121
120
|
* <p>The identifier issued to this resource by an external identity provider.</p>
|
|
121
|
+
* @public
|
|
122
122
|
*/
|
|
123
123
|
interface ExternalIdMember {
|
|
124
124
|
ExternalId: ExternalId;
|
|
@@ -126,8 +126,8 @@ export declare namespace AlternateIdentifier {
|
|
|
126
126
|
$unknown?: never;
|
|
127
127
|
}
|
|
128
128
|
/**
|
|
129
|
-
* @public
|
|
130
129
|
* <p>An entity attribute that's unique to a specific entity.</p>
|
|
130
|
+
* @public
|
|
131
131
|
*/
|
|
132
132
|
interface UniqueAttributeMember {
|
|
133
133
|
ExternalId?: never;
|
|
@@ -150,20 +150,20 @@ export declare namespace AlternateIdentifier {
|
|
|
150
150
|
const visit: <T>(value: AlternateIdentifier, visitor: Visitor<T>) => T;
|
|
151
151
|
}
|
|
152
152
|
/**
|
|
153
|
-
* @public
|
|
154
153
|
* <p>An operation that applies to the requested group. This operation might add, replace, or remove an attribute.</p>
|
|
154
|
+
* @public
|
|
155
155
|
*/
|
|
156
156
|
export interface AttributeOperation {
|
|
157
157
|
/**
|
|
158
|
-
* @public
|
|
159
158
|
* <p>A string representation of the path to a given attribute or sub-attribute. Supports
|
|
160
159
|
* JMESPath.</p>
|
|
160
|
+
* @public
|
|
161
161
|
*/
|
|
162
162
|
AttributePath: string | undefined;
|
|
163
163
|
/**
|
|
164
|
-
* @public
|
|
165
164
|
* <p>The value of the attribute. This is a <code>Document</code> type.
|
|
166
165
|
* This type is not supported by Java V1, Go V1, and older versions of the CLI.</p>
|
|
166
|
+
* @public
|
|
167
167
|
*/
|
|
168
168
|
AttributeValue?: __DocumentType;
|
|
169
169
|
}
|
|
@@ -172,14 +172,14 @@ export interface AttributeOperation {
|
|
|
172
172
|
*/
|
|
173
173
|
export interface GetGroupIdRequest {
|
|
174
174
|
/**
|
|
175
|
-
* @public
|
|
176
175
|
* <p>The globally unique identifier for the identity store.</p>
|
|
176
|
+
* @public
|
|
177
177
|
*/
|
|
178
178
|
IdentityStoreId: string | undefined;
|
|
179
179
|
/**
|
|
180
|
-
* @public
|
|
181
180
|
* <p>A unique identifier for a user or group that is not the primary identifier. This value can be
|
|
182
181
|
* an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For the unique attribute, the only valid path is <code>displayName</code>.</p>
|
|
182
|
+
* @public
|
|
183
183
|
*/
|
|
184
184
|
AlternateIdentifier: AlternateIdentifier | undefined;
|
|
185
185
|
}
|
|
@@ -188,19 +188,19 @@ export interface GetGroupIdRequest {
|
|
|
188
188
|
*/
|
|
189
189
|
export interface GetGroupIdResponse {
|
|
190
190
|
/**
|
|
191
|
-
* @public
|
|
192
191
|
* <p>The identifier for a group in the identity store.</p>
|
|
192
|
+
* @public
|
|
193
193
|
*/
|
|
194
194
|
GroupId: string | undefined;
|
|
195
195
|
/**
|
|
196
|
-
* @public
|
|
197
196
|
* <p>The globally unique identifier for the identity store.</p>
|
|
197
|
+
* @public
|
|
198
198
|
*/
|
|
199
199
|
IdentityStoreId: string | undefined;
|
|
200
200
|
}
|
|
201
201
|
/**
|
|
202
|
-
* @public
|
|
203
202
|
* <p>The request processing has failed because of an unknown error, exception or failure with an internal server.</p>
|
|
203
|
+
* @public
|
|
204
204
|
*/
|
|
205
205
|
export declare class InternalServerException extends __BaseException {
|
|
206
206
|
readonly name: "InternalServerException";
|
|
@@ -208,15 +208,15 @@ export declare class InternalServerException extends __BaseException {
|
|
|
208
208
|
$retryable: {};
|
|
209
209
|
Message?: string;
|
|
210
210
|
/**
|
|
211
|
-
* @public
|
|
212
211
|
* <p>The identifier for each request. This value is a globally unique ID that is generated by
|
|
213
212
|
* the identity store service for each sent request, and is then returned inside the exception
|
|
214
213
|
* if the request fails.</p>
|
|
214
|
+
* @public
|
|
215
215
|
*/
|
|
216
216
|
RequestId?: string;
|
|
217
217
|
/**
|
|
218
|
-
* @public
|
|
219
218
|
* <p>The number of seconds to wait before retrying the next request.</p>
|
|
219
|
+
* @public
|
|
220
220
|
*/
|
|
221
221
|
RetryAfterSeconds?: number;
|
|
222
222
|
/**
|
|
@@ -239,28 +239,28 @@ export declare const ResourceType: {
|
|
|
239
239
|
*/
|
|
240
240
|
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
241
241
|
/**
|
|
242
|
-
* @public
|
|
243
242
|
* <p>Indicates that a requested resource is not found.</p>
|
|
243
|
+
* @public
|
|
244
244
|
*/
|
|
245
245
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
246
246
|
readonly name: "ResourceNotFoundException";
|
|
247
247
|
readonly $fault: "client";
|
|
248
248
|
/**
|
|
249
|
-
* @public
|
|
250
249
|
* <p>An enum object indicating the type of resource in the identity store service. Valid values include USER, GROUP, and IDENTITY_STORE.</p>
|
|
250
|
+
* @public
|
|
251
251
|
*/
|
|
252
252
|
ResourceType?: ResourceType;
|
|
253
253
|
/**
|
|
254
|
-
* @public
|
|
255
254
|
* <p>The identifier for a resource in the identity store that can be used as <code>UserId</code> or <code>GroupId</code>. The format for <code>ResourceId</code> is either <code>UUID</code> or <code>1234567890-UUID</code>, where <code>UUID</code> is a randomly generated value for each resource when it is created and <code>1234567890</code> represents the <code>IdentityStoreId</code> string value. In the case that the identity store is migrated from a legacy SSO identity store, the <code>ResourceId</code> for that identity store will be in the format of <code>UUID</code>. Otherwise, it will be in the <code>1234567890-UUID</code> format.</p>
|
|
255
|
+
* @public
|
|
256
256
|
*/
|
|
257
257
|
ResourceId?: string;
|
|
258
258
|
Message?: string;
|
|
259
259
|
/**
|
|
260
|
-
* @public
|
|
261
260
|
* <p>The identifier for each request. This value is a globally unique ID that is generated by
|
|
262
261
|
* the identity store service for each sent request, and is then returned inside the exception
|
|
263
262
|
* if the request fails.</p>
|
|
263
|
+
* @public
|
|
264
264
|
*/
|
|
265
265
|
RequestId?: string;
|
|
266
266
|
/**
|
|
@@ -269,8 +269,8 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
269
269
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
270
270
|
}
|
|
271
271
|
/**
|
|
272
|
-
* @public
|
|
273
272
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
273
|
+
* @public
|
|
274
274
|
*/
|
|
275
275
|
export declare class ThrottlingException extends __BaseException {
|
|
276
276
|
readonly name: "ThrottlingException";
|
|
@@ -280,15 +280,15 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
280
280
|
};
|
|
281
281
|
Message?: string;
|
|
282
282
|
/**
|
|
283
|
-
* @public
|
|
284
283
|
* <p>The identifier for each request. This value is a globally unique ID that is generated by
|
|
285
284
|
* the identity store service for each sent request, and is then returned inside the exception
|
|
286
285
|
* if the request fails.</p>
|
|
286
|
+
* @public
|
|
287
287
|
*/
|
|
288
288
|
RequestId?: string;
|
|
289
289
|
/**
|
|
290
|
-
* @public
|
|
291
290
|
* <p>The number of seconds to wait before retrying the next request.</p>
|
|
291
|
+
* @public
|
|
292
292
|
*/
|
|
293
293
|
RetryAfterSeconds?: number;
|
|
294
294
|
/**
|
|
@@ -297,18 +297,18 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
297
297
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
298
298
|
}
|
|
299
299
|
/**
|
|
300
|
-
* @public
|
|
301
300
|
* <p>The request failed because it contains a syntax error.</p>
|
|
301
|
+
* @public
|
|
302
302
|
*/
|
|
303
303
|
export declare class ValidationException extends __BaseException {
|
|
304
304
|
readonly name: "ValidationException";
|
|
305
305
|
readonly $fault: "client";
|
|
306
306
|
Message?: string;
|
|
307
307
|
/**
|
|
308
|
-
* @public
|
|
309
308
|
* <p>The identifier for each request. This value is a globally unique ID that is generated by
|
|
310
309
|
* the identity store service for each sent request, and is then returned inside the exception
|
|
311
310
|
* if the request fails.</p>
|
|
311
|
+
* @public
|
|
312
312
|
*/
|
|
313
313
|
RequestId?: string;
|
|
314
314
|
/**
|
|
@@ -317,8 +317,8 @@ export declare class ValidationException extends __BaseException {
|
|
|
317
317
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
318
318
|
}
|
|
319
319
|
/**
|
|
320
|
-
* @public
|
|
321
320
|
* <p>An object containing the identifier of a group member.</p>
|
|
321
|
+
* @public
|
|
322
322
|
*/
|
|
323
323
|
export type MemberId = MemberId.UserIdMember | MemberId.$UnknownMember;
|
|
324
324
|
/**
|
|
@@ -326,8 +326,8 @@ export type MemberId = MemberId.UserIdMember | MemberId.$UnknownMember;
|
|
|
326
326
|
*/
|
|
327
327
|
export declare namespace MemberId {
|
|
328
328
|
/**
|
|
329
|
-
* @public
|
|
330
329
|
* <p>An object containing the identifiers of resources that can be members.</p>
|
|
330
|
+
* @public
|
|
331
331
|
*/
|
|
332
332
|
interface UserIdMember {
|
|
333
333
|
UserId: string;
|
|
@@ -351,18 +351,18 @@ export declare namespace MemberId {
|
|
|
351
351
|
*/
|
|
352
352
|
export interface GetGroupMembershipIdRequest {
|
|
353
353
|
/**
|
|
354
|
-
* @public
|
|
355
354
|
* <p>The globally unique identifier for the identity store.</p>
|
|
355
|
+
* @public
|
|
356
356
|
*/
|
|
357
357
|
IdentityStoreId: string | undefined;
|
|
358
358
|
/**
|
|
359
|
-
* @public
|
|
360
359
|
* <p>The identifier for a group in the identity store.</p>
|
|
360
|
+
* @public
|
|
361
361
|
*/
|
|
362
362
|
GroupId: string | undefined;
|
|
363
363
|
/**
|
|
364
|
-
* @public
|
|
365
364
|
* <p>An object that contains the identifier of a group member. Setting the <code>UserID</code> field to the specific identifier for a user indicates that the user is a member of the group.</p>
|
|
365
|
+
* @public
|
|
366
366
|
*/
|
|
367
367
|
MemberId: MemberId | undefined;
|
|
368
368
|
}
|
|
@@ -371,13 +371,13 @@ export interface GetGroupMembershipIdRequest {
|
|
|
371
371
|
*/
|
|
372
372
|
export interface GetGroupMembershipIdResponse {
|
|
373
373
|
/**
|
|
374
|
-
* @public
|
|
375
374
|
* <p>The identifier for a <code>GroupMembership</code> in an identity store.</p>
|
|
375
|
+
* @public
|
|
376
376
|
*/
|
|
377
377
|
MembershipId: string | undefined;
|
|
378
378
|
/**
|
|
379
|
-
* @public
|
|
380
379
|
* <p>The globally unique identifier for the identity store.</p>
|
|
380
|
+
* @public
|
|
381
381
|
*/
|
|
382
382
|
IdentityStoreId: string | undefined;
|
|
383
383
|
}
|
|
@@ -386,14 +386,14 @@ export interface GetGroupMembershipIdResponse {
|
|
|
386
386
|
*/
|
|
387
387
|
export interface GetUserIdRequest {
|
|
388
388
|
/**
|
|
389
|
-
* @public
|
|
390
389
|
* <p>The globally unique identifier for the identity store.</p>
|
|
390
|
+
* @public
|
|
391
391
|
*/
|
|
392
392
|
IdentityStoreId: string | undefined;
|
|
393
393
|
/**
|
|
394
|
-
* @public
|
|
395
394
|
* <p>A unique identifier for a user or group that is not the primary identifier. This value can be
|
|
396
395
|
* an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For the unique attribute, the only valid paths are <code>userName</code> and <code>emails.value</code>.</p>
|
|
396
|
+
* @public
|
|
397
397
|
*/
|
|
398
398
|
AlternateIdentifier: AlternateIdentifier | undefined;
|
|
399
399
|
}
|
|
@@ -402,13 +402,13 @@ export interface GetUserIdRequest {
|
|
|
402
402
|
*/
|
|
403
403
|
export interface GetUserIdResponse {
|
|
404
404
|
/**
|
|
405
|
-
* @public
|
|
406
405
|
* <p>The identifier for a user in the identity store.</p>
|
|
406
|
+
* @public
|
|
407
407
|
*/
|
|
408
408
|
UserId: string | undefined;
|
|
409
409
|
/**
|
|
410
|
-
* @public
|
|
411
410
|
* <p>The globally unique identifier for the identity store.</p>
|
|
411
|
+
* @public
|
|
412
412
|
*/
|
|
413
413
|
IdentityStoreId: string | undefined;
|
|
414
414
|
}
|
|
@@ -425,7 +425,6 @@ export declare const ConflictExceptionReason: {
|
|
|
425
425
|
*/
|
|
426
426
|
export type ConflictExceptionReason = (typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason];
|
|
427
427
|
/**
|
|
428
|
-
* @public
|
|
429
428
|
* <p>This request cannot be completed for one of the following reasons:</p>
|
|
430
429
|
* <ul>
|
|
431
430
|
* <li>
|
|
@@ -435,18 +434,18 @@ export type ConflictExceptionReason = (typeof ConflictExceptionReason)[keyof typ
|
|
|
435
434
|
* <p>The requested resource was being concurrently modified by another request.</p>
|
|
436
435
|
* </li>
|
|
437
436
|
* </ul>
|
|
437
|
+
* @public
|
|
438
438
|
*/
|
|
439
439
|
export declare class ConflictException extends __BaseException {
|
|
440
440
|
readonly name: "ConflictException";
|
|
441
441
|
readonly $fault: "client";
|
|
442
442
|
Message?: string;
|
|
443
443
|
/**
|
|
444
|
-
* @public
|
|
445
444
|
* <p>The identifier for each request. This value is a globally unique ID that is generated by the identity store service for each sent request, and is then returned inside the exception if the request fails.</p>
|
|
445
|
+
* @public
|
|
446
446
|
*/
|
|
447
447
|
RequestId?: string;
|
|
448
448
|
/**
|
|
449
|
-
* @public
|
|
450
449
|
* <p>This request cannot be completed for one of the following reasons:</p>
|
|
451
450
|
* <ul>
|
|
452
451
|
* <li>
|
|
@@ -456,6 +455,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
456
455
|
* <p>The requested resource was being concurrently modified by another request.</p>
|
|
457
456
|
* </li>
|
|
458
457
|
* </ul>
|
|
458
|
+
* @public
|
|
459
459
|
*/
|
|
460
460
|
Reason?: ConflictExceptionReason;
|
|
461
461
|
/**
|
|
@@ -468,18 +468,18 @@ export declare class ConflictException extends __BaseException {
|
|
|
468
468
|
*/
|
|
469
469
|
export interface CreateGroupMembershipRequest {
|
|
470
470
|
/**
|
|
471
|
-
* @public
|
|
472
471
|
* <p>The globally unique identifier for the identity store.</p>
|
|
472
|
+
* @public
|
|
473
473
|
*/
|
|
474
474
|
IdentityStoreId: string | undefined;
|
|
475
475
|
/**
|
|
476
|
-
* @public
|
|
477
476
|
* <p>The identifier for a group in the identity store.</p>
|
|
477
|
+
* @public
|
|
478
478
|
*/
|
|
479
479
|
GroupId: string | undefined;
|
|
480
480
|
/**
|
|
481
|
-
* @public
|
|
482
481
|
* <p>An object that contains the identifier of a group member. Setting the <code>UserID</code> field to the specific identifier for a user indicates that the user is a member of the group.</p>
|
|
482
|
+
* @public
|
|
483
483
|
*/
|
|
484
484
|
MemberId: MemberId | undefined;
|
|
485
485
|
}
|
|
@@ -488,28 +488,28 @@ export interface CreateGroupMembershipRequest {
|
|
|
488
488
|
*/
|
|
489
489
|
export interface CreateGroupMembershipResponse {
|
|
490
490
|
/**
|
|
491
|
-
* @public
|
|
492
491
|
* <p>The identifier for a newly created <code>GroupMembership</code> in an identity
|
|
493
492
|
* store.</p>
|
|
493
|
+
* @public
|
|
494
494
|
*/
|
|
495
495
|
MembershipId: string | undefined;
|
|
496
496
|
/**
|
|
497
|
-
* @public
|
|
498
497
|
* <p>The globally unique identifier for the identity store.</p>
|
|
498
|
+
* @public
|
|
499
499
|
*/
|
|
500
500
|
IdentityStoreId: string | undefined;
|
|
501
501
|
}
|
|
502
502
|
/**
|
|
503
|
-
* @public
|
|
504
503
|
* <p>The request would cause the number of users or groups in the identity store to exceed the maximum allowed.</p>
|
|
504
|
+
* @public
|
|
505
505
|
*/
|
|
506
506
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
507
507
|
readonly name: "ServiceQuotaExceededException";
|
|
508
508
|
readonly $fault: "client";
|
|
509
509
|
Message?: string;
|
|
510
510
|
/**
|
|
511
|
-
* @public
|
|
512
511
|
* <p>The identifier for each request. This value is a globally unique ID that is generated by the identity store service for each sent request, and is then returned inside the exception if the request fails.</p>
|
|
512
|
+
* @public
|
|
513
513
|
*/
|
|
514
514
|
RequestId?: string;
|
|
515
515
|
/**
|
|
@@ -522,13 +522,13 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
522
522
|
*/
|
|
523
523
|
export interface DeleteGroupMembershipRequest {
|
|
524
524
|
/**
|
|
525
|
-
* @public
|
|
526
525
|
* <p>The globally unique identifier for the identity store.</p>
|
|
526
|
+
* @public
|
|
527
527
|
*/
|
|
528
528
|
IdentityStoreId: string | undefined;
|
|
529
529
|
/**
|
|
530
|
-
* @public
|
|
531
530
|
* <p>The identifier for a <code>GroupMembership</code> in an identity store.</p>
|
|
531
|
+
* @public
|
|
532
532
|
*/
|
|
533
533
|
MembershipId: string | undefined;
|
|
534
534
|
}
|
|
@@ -542,13 +542,13 @@ export interface DeleteGroupMembershipResponse {
|
|
|
542
542
|
*/
|
|
543
543
|
export interface DescribeGroupMembershipRequest {
|
|
544
544
|
/**
|
|
545
|
-
* @public
|
|
546
545
|
* <p>The globally unique identifier for the identity store.</p>
|
|
546
|
+
* @public
|
|
547
547
|
*/
|
|
548
548
|
IdentityStoreId: string | undefined;
|
|
549
549
|
/**
|
|
550
|
-
* @public
|
|
551
550
|
* <p>The identifier for a <code>GroupMembership</code> in an identity store.</p>
|
|
551
|
+
* @public
|
|
552
552
|
*/
|
|
553
553
|
MembershipId: string | undefined;
|
|
554
554
|
}
|
|
@@ -557,23 +557,23 @@ export interface DescribeGroupMembershipRequest {
|
|
|
557
557
|
*/
|
|
558
558
|
export interface DescribeGroupMembershipResponse {
|
|
559
559
|
/**
|
|
560
|
-
* @public
|
|
561
560
|
* <p>The globally unique identifier for the identity store.</p>
|
|
561
|
+
* @public
|
|
562
562
|
*/
|
|
563
563
|
IdentityStoreId: string | undefined;
|
|
564
564
|
/**
|
|
565
|
-
* @public
|
|
566
565
|
* <p>The identifier for a <code>GroupMembership</code> in an identity store.</p>
|
|
566
|
+
* @public
|
|
567
567
|
*/
|
|
568
568
|
MembershipId: string | undefined;
|
|
569
569
|
/**
|
|
570
|
-
* @public
|
|
571
570
|
* <p>The identifier for a group in the identity store.</p>
|
|
571
|
+
* @public
|
|
572
572
|
*/
|
|
573
573
|
GroupId: string | undefined;
|
|
574
574
|
/**
|
|
575
|
-
* @public
|
|
576
575
|
* <p>An object containing the identifier of a group member.</p>
|
|
576
|
+
* @public
|
|
577
577
|
*/
|
|
578
578
|
MemberId: MemberId | undefined;
|
|
579
579
|
}
|
|
@@ -582,51 +582,51 @@ export interface DescribeGroupMembershipResponse {
|
|
|
582
582
|
*/
|
|
583
583
|
export interface ListGroupMembershipsRequest {
|
|
584
584
|
/**
|
|
585
|
-
* @public
|
|
586
585
|
* <p>The globally unique identifier for the identity store.</p>
|
|
586
|
+
* @public
|
|
587
587
|
*/
|
|
588
588
|
IdentityStoreId: string | undefined;
|
|
589
589
|
/**
|
|
590
|
-
* @public
|
|
591
590
|
* <p>The identifier for a group in the identity store.</p>
|
|
591
|
+
* @public
|
|
592
592
|
*/
|
|
593
593
|
GroupId: string | undefined;
|
|
594
594
|
/**
|
|
595
|
-
* @public
|
|
596
595
|
* <p>The maximum number of results to be returned per request. This parameter is used in all
|
|
597
596
|
* <code>List</code> requests to specify how many results to return in one page.</p>
|
|
597
|
+
* @public
|
|
598
598
|
*/
|
|
599
599
|
MaxResults?: number;
|
|
600
600
|
/**
|
|
601
|
-
* @public
|
|
602
601
|
* <p>The pagination token used for the <code>ListUsers</code>, <code>ListGroups</code> and <code>ListGroupMemberships</code> API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page.</p>
|
|
602
|
+
* @public
|
|
603
603
|
*/
|
|
604
604
|
NextToken?: string;
|
|
605
605
|
}
|
|
606
606
|
/**
|
|
607
|
-
* @public
|
|
608
607
|
* <p>Contains the identifiers for a group, a group member, and a <code>GroupMembership</code>
|
|
609
608
|
* object in the identity store.</p>
|
|
609
|
+
* @public
|
|
610
610
|
*/
|
|
611
611
|
export interface GroupMembership {
|
|
612
612
|
/**
|
|
613
|
-
* @public
|
|
614
613
|
* <p>The globally unique identifier for the identity store.</p>
|
|
614
|
+
* @public
|
|
615
615
|
*/
|
|
616
616
|
IdentityStoreId: string | undefined;
|
|
617
617
|
/**
|
|
618
|
-
* @public
|
|
619
618
|
* <p>The identifier for a <code>GroupMembership</code> object in an identity store.</p>
|
|
619
|
+
* @public
|
|
620
620
|
*/
|
|
621
621
|
MembershipId?: string;
|
|
622
622
|
/**
|
|
623
|
-
* @public
|
|
624
623
|
* <p>The identifier for a group in the identity store.</p>
|
|
624
|
+
* @public
|
|
625
625
|
*/
|
|
626
626
|
GroupId?: string;
|
|
627
627
|
/**
|
|
628
|
-
* @public
|
|
629
628
|
* <p>An object that contains the identifier of a group member. Setting the <code>UserID</code> field to the specific identifier for a user indicates that the user is a member of the group.</p>
|
|
629
|
+
* @public
|
|
630
630
|
*/
|
|
631
631
|
MemberId?: MemberId;
|
|
632
632
|
}
|
|
@@ -635,13 +635,13 @@ export interface GroupMembership {
|
|
|
635
635
|
*/
|
|
636
636
|
export interface ListGroupMembershipsResponse {
|
|
637
637
|
/**
|
|
638
|
-
* @public
|
|
639
638
|
* <p>A list of <code>GroupMembership</code> objects in the group.</p>
|
|
639
|
+
* @public
|
|
640
640
|
*/
|
|
641
641
|
GroupMemberships: GroupMembership[] | undefined;
|
|
642
642
|
/**
|
|
643
|
-
* @public
|
|
644
643
|
* <p>The pagination token used for the <code>ListUsers</code>, <code>ListGroups</code>, and <code>ListGroupMemberships</code> API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page.</p>
|
|
644
|
+
* @public
|
|
645
645
|
*/
|
|
646
646
|
NextToken?: string;
|
|
647
647
|
}
|
|
@@ -650,20 +650,20 @@ export interface ListGroupMembershipsResponse {
|
|
|
650
650
|
*/
|
|
651
651
|
export interface CreateGroupRequest {
|
|
652
652
|
/**
|
|
653
|
-
* @public
|
|
654
653
|
* <p>The globally unique identifier for the identity store.</p>
|
|
654
|
+
* @public
|
|
655
655
|
*/
|
|
656
656
|
IdentityStoreId: string | undefined;
|
|
657
657
|
/**
|
|
658
|
-
* @public
|
|
659
658
|
* <p>A string containing the name of the group. This value is commonly displayed when the
|
|
660
659
|
* group is referenced. <code>Administrator</code> and <code>AWSAdministrators</code> are
|
|
661
660
|
* reserved names and can't be used for users or groups.</p>
|
|
661
|
+
* @public
|
|
662
662
|
*/
|
|
663
663
|
DisplayName?: string;
|
|
664
664
|
/**
|
|
665
|
-
* @public
|
|
666
665
|
* <p>A string containing the description of the group.</p>
|
|
666
|
+
* @public
|
|
667
667
|
*/
|
|
668
668
|
Description?: string;
|
|
669
669
|
}
|
|
@@ -672,15 +672,15 @@ export interface CreateGroupRequest {
|
|
|
672
672
|
*/
|
|
673
673
|
export interface CreateGroupResponse {
|
|
674
674
|
/**
|
|
675
|
-
* @public
|
|
676
675
|
* <p>The
|
|
677
676
|
* identifier
|
|
678
677
|
* of the newly created group in the identity store.</p>
|
|
678
|
+
* @public
|
|
679
679
|
*/
|
|
680
680
|
GroupId: string | undefined;
|
|
681
681
|
/**
|
|
682
|
-
* @public
|
|
683
682
|
* <p>The globally unique identifier for the identity store.</p>
|
|
683
|
+
* @public
|
|
684
684
|
*/
|
|
685
685
|
IdentityStoreId: string | undefined;
|
|
686
686
|
}
|
|
@@ -689,13 +689,13 @@ export interface CreateGroupResponse {
|
|
|
689
689
|
*/
|
|
690
690
|
export interface DeleteGroupRequest {
|
|
691
691
|
/**
|
|
692
|
-
* @public
|
|
693
692
|
* <p>The globally unique identifier for the identity store.</p>
|
|
693
|
+
* @public
|
|
694
694
|
*/
|
|
695
695
|
IdentityStoreId: string | undefined;
|
|
696
696
|
/**
|
|
697
|
-
* @public
|
|
698
697
|
* <p>The identifier for a group in the identity store.</p>
|
|
698
|
+
* @public
|
|
699
699
|
*/
|
|
700
700
|
GroupId: string | undefined;
|
|
701
701
|
}
|
|
@@ -709,17 +709,17 @@ export interface DeleteGroupResponse {
|
|
|
709
709
|
*/
|
|
710
710
|
export interface DescribeGroupRequest {
|
|
711
711
|
/**
|
|
712
|
-
* @public
|
|
713
712
|
* <p>The globally unique identifier for the identity store, such as
|
|
714
713
|
* <code>d-1234567890</code>. In this example, <code>d-</code> is a fixed prefix, and
|
|
715
714
|
* <code>1234567890</code> is a randomly generated string that contains numbers and lower
|
|
716
715
|
* case letters. This value is generated at the time that a new identity store is
|
|
717
716
|
* created.</p>
|
|
717
|
+
* @public
|
|
718
718
|
*/
|
|
719
719
|
IdentityStoreId: string | undefined;
|
|
720
720
|
/**
|
|
721
|
-
* @public
|
|
722
721
|
* <p>The identifier for a group in the identity store.</p>
|
|
722
|
+
* @public
|
|
723
723
|
*/
|
|
724
724
|
GroupId: string | undefined;
|
|
725
725
|
}
|
|
@@ -728,54 +728,54 @@ export interface DescribeGroupRequest {
|
|
|
728
728
|
*/
|
|
729
729
|
export interface DescribeGroupResponse {
|
|
730
730
|
/**
|
|
731
|
-
* @public
|
|
732
731
|
* <p>The identifier for a group in the identity store.</p>
|
|
732
|
+
* @public
|
|
733
733
|
*/
|
|
734
734
|
GroupId: string | undefined;
|
|
735
735
|
/**
|
|
736
|
-
* @public
|
|
737
736
|
* <p>The group’s display name value. The length limit is 1,024 characters. This
|
|
738
737
|
* value can consist of letters, accented characters, symbols, numbers, punctuation, tab, new
|
|
739
738
|
* line, carriage return, space, and nonbreaking space in this attribute. This value is specified at the time that the
|
|
740
739
|
* group is created and stored as an attribute of the group object in the identity
|
|
741
740
|
* store.</p>
|
|
741
|
+
* @public
|
|
742
742
|
*/
|
|
743
743
|
DisplayName?: string;
|
|
744
744
|
/**
|
|
745
|
-
* @public
|
|
746
745
|
* <p>A list of <code>ExternalId</code> objects that contains the identifiers issued to this
|
|
747
746
|
* resource by an external identity provider.</p>
|
|
747
|
+
* @public
|
|
748
748
|
*/
|
|
749
749
|
ExternalIds?: ExternalId[];
|
|
750
750
|
/**
|
|
751
|
-
* @public
|
|
752
751
|
* <p>A string containing a description of the group.</p>
|
|
752
|
+
* @public
|
|
753
753
|
*/
|
|
754
754
|
Description?: string;
|
|
755
755
|
/**
|
|
756
|
-
* @public
|
|
757
756
|
* <p>The globally unique identifier for the identity store.</p>
|
|
757
|
+
* @public
|
|
758
758
|
*/
|
|
759
759
|
IdentityStoreId: string | undefined;
|
|
760
760
|
}
|
|
761
761
|
/**
|
|
762
|
-
* @public
|
|
763
762
|
* <p>A query filter used by <code>ListUsers</code> and <code>ListGroups</code>. This filter
|
|
764
763
|
* object provides the attribute name and attribute value to search users or groups.</p>
|
|
764
|
+
* @public
|
|
765
765
|
*/
|
|
766
766
|
export interface Filter {
|
|
767
767
|
/**
|
|
768
|
-
* @public
|
|
769
768
|
* <p>The attribute path that is used to specify which attribute name to search. Length limit
|
|
770
769
|
* is 255 characters. For example, <code>UserName</code> is a valid attribute path for the
|
|
771
770
|
* <code>ListUsers</code> API, and <code>DisplayName</code> is a valid attribute path for
|
|
772
771
|
* the <code>ListGroups</code> API.</p>
|
|
772
|
+
* @public
|
|
773
773
|
*/
|
|
774
774
|
AttributePath: string | undefined;
|
|
775
775
|
/**
|
|
776
|
-
* @public
|
|
777
776
|
* <p>Represents the data for an attribute. Each attribute value is described as a name-value
|
|
778
777
|
* pair. </p>
|
|
778
|
+
* @public
|
|
779
779
|
*/
|
|
780
780
|
AttributeValue: string | undefined;
|
|
781
781
|
}
|
|
@@ -784,71 +784,71 @@ export interface Filter {
|
|
|
784
784
|
*/
|
|
785
785
|
export interface ListGroupsRequest {
|
|
786
786
|
/**
|
|
787
|
-
* @public
|
|
788
787
|
* <p>The globally unique identifier for the identity store, such as
|
|
789
788
|
* <code>d-1234567890</code>. In this example, <code>d-</code> is a fixed prefix, and
|
|
790
789
|
* <code>1234567890</code> is a randomly generated string that contains numbers and lower
|
|
791
790
|
* case letters. This value is generated at the time that a new identity store is
|
|
792
791
|
* created.</p>
|
|
792
|
+
* @public
|
|
793
793
|
*/
|
|
794
794
|
IdentityStoreId: string | undefined;
|
|
795
795
|
/**
|
|
796
|
-
* @public
|
|
797
796
|
* <p>The maximum number of results to be returned per request. This parameter is used in the
|
|
798
797
|
* <code>ListUsers</code> and <code>ListGroups</code> requests to specify how many results
|
|
799
798
|
* to return in one page. The length limit is 50 characters.</p>
|
|
799
|
+
* @public
|
|
800
800
|
*/
|
|
801
801
|
MaxResults?: number;
|
|
802
802
|
/**
|
|
803
|
-
* @public
|
|
804
803
|
* <p>The pagination token used for the <code>ListUsers</code> and <code>ListGroups</code> API
|
|
805
804
|
* operations. This value is generated by the identity store service. It is returned in the
|
|
806
805
|
* API response if the total results are more than the size of one page. This token is also
|
|
807
806
|
* returned when it is used in the API request to search for the next page.</p>
|
|
807
|
+
* @public
|
|
808
808
|
*/
|
|
809
809
|
NextToken?: string;
|
|
810
810
|
/**
|
|
811
|
-
* @public
|
|
812
811
|
* @deprecated
|
|
813
812
|
*
|
|
814
813
|
* <p>A list of <code>Filter</code> objects, which is used in the <code>ListUsers</code> and
|
|
815
814
|
* <code>ListGroups</code> requests.</p>
|
|
815
|
+
* @public
|
|
816
816
|
*/
|
|
817
817
|
Filters?: Filter[];
|
|
818
818
|
}
|
|
819
819
|
/**
|
|
820
|
-
* @public
|
|
821
820
|
* <p>A group object that contains the metadata and attributes for a specified group.</p>
|
|
821
|
+
* @public
|
|
822
822
|
*/
|
|
823
823
|
export interface Group {
|
|
824
824
|
/**
|
|
825
|
-
* @public
|
|
826
825
|
* <p>The identifier for a group in the identity store.</p>
|
|
826
|
+
* @public
|
|
827
827
|
*/
|
|
828
828
|
GroupId: string | undefined;
|
|
829
829
|
/**
|
|
830
|
-
* @public
|
|
831
830
|
* <p>The display name value for the group. The length limit is 1,024 characters. This value
|
|
832
831
|
* can consist of letters, accented characters, symbols, numbers, punctuation, tab, new line,
|
|
833
832
|
* carriage return, space, and nonbreaking space in this attribute. This value is specified at
|
|
834
833
|
* the time the group is created and stored as an attribute of the group object in the
|
|
835
834
|
* identity store.</p>
|
|
835
|
+
* @public
|
|
836
836
|
*/
|
|
837
837
|
DisplayName?: string;
|
|
838
838
|
/**
|
|
839
|
-
* @public
|
|
840
839
|
* <p>A list of <code>ExternalId</code> objects that contains the identifiers issued to this
|
|
841
840
|
* resource by an external identity provider.</p>
|
|
841
|
+
* @public
|
|
842
842
|
*/
|
|
843
843
|
ExternalIds?: ExternalId[];
|
|
844
844
|
/**
|
|
845
|
-
* @public
|
|
846
845
|
* <p>A string containing a description of the specified group.</p>
|
|
846
|
+
* @public
|
|
847
847
|
*/
|
|
848
848
|
Description?: string;
|
|
849
849
|
/**
|
|
850
|
-
* @public
|
|
851
850
|
* <p>The globally unique identifier for the identity store.</p>
|
|
851
|
+
* @public
|
|
852
852
|
*/
|
|
853
853
|
IdentityStoreId: string | undefined;
|
|
854
854
|
}
|
|
@@ -857,16 +857,16 @@ export interface Group {
|
|
|
857
857
|
*/
|
|
858
858
|
export interface ListGroupsResponse {
|
|
859
859
|
/**
|
|
860
|
-
* @public
|
|
861
860
|
* <p>A list of <code>Group</code> objects in the identity store.</p>
|
|
861
|
+
* @public
|
|
862
862
|
*/
|
|
863
863
|
Groups: Group[] | undefined;
|
|
864
864
|
/**
|
|
865
|
-
* @public
|
|
866
865
|
* <p>The pagination token used for the <code>ListUsers</code> and <code>ListGroups</code> API
|
|
867
866
|
* operations. This value is generated by the identity store service. It is returned in the
|
|
868
867
|
* API response if the total results are more than the size of one page. This token is also
|
|
869
868
|
* returned when it1 is used in the API request to search for the next page.</p>
|
|
869
|
+
* @public
|
|
870
870
|
*/
|
|
871
871
|
NextToken?: string;
|
|
872
872
|
}
|
|
@@ -875,19 +875,19 @@ export interface ListGroupsResponse {
|
|
|
875
875
|
*/
|
|
876
876
|
export interface UpdateGroupRequest {
|
|
877
877
|
/**
|
|
878
|
-
* @public
|
|
879
878
|
* <p>The globally unique identifier for the identity store.</p>
|
|
879
|
+
* @public
|
|
880
880
|
*/
|
|
881
881
|
IdentityStoreId: string | undefined;
|
|
882
882
|
/**
|
|
883
|
-
* @public
|
|
884
883
|
* <p>The identifier for a group in the identity store.</p>
|
|
884
|
+
* @public
|
|
885
885
|
*/
|
|
886
886
|
GroupId: string | undefined;
|
|
887
887
|
/**
|
|
888
|
-
* @public
|
|
889
888
|
* <p>A list of <code>AttributeOperation</code> objects to apply to the requested group. These
|
|
890
889
|
* operations might add, replace, or remove an attribute.</p>
|
|
890
|
+
* @public
|
|
891
891
|
*/
|
|
892
892
|
Operations: AttributeOperation[] | undefined;
|
|
893
893
|
}
|
|
@@ -901,39 +901,39 @@ export interface UpdateGroupResponse {
|
|
|
901
901
|
*/
|
|
902
902
|
export interface IsMemberInGroupsRequest {
|
|
903
903
|
/**
|
|
904
|
-
* @public
|
|
905
904
|
* <p>The globally unique identifier for the identity store.</p>
|
|
905
|
+
* @public
|
|
906
906
|
*/
|
|
907
907
|
IdentityStoreId: string | undefined;
|
|
908
908
|
/**
|
|
909
|
-
* @public
|
|
910
909
|
* <p>An object containing the identifier of a group member.</p>
|
|
910
|
+
* @public
|
|
911
911
|
*/
|
|
912
912
|
MemberId: MemberId | undefined;
|
|
913
913
|
/**
|
|
914
|
-
* @public
|
|
915
914
|
* <p>A list of identifiers for groups in the identity store.</p>
|
|
915
|
+
* @public
|
|
916
916
|
*/
|
|
917
917
|
GroupIds: string[] | undefined;
|
|
918
918
|
}
|
|
919
919
|
/**
|
|
920
|
-
* @public
|
|
921
920
|
* <p>Indicates whether a resource is a member of a group in the identity store.</p>
|
|
921
|
+
* @public
|
|
922
922
|
*/
|
|
923
923
|
export interface GroupMembershipExistenceResult {
|
|
924
924
|
/**
|
|
925
|
-
* @public
|
|
926
925
|
* <p>The identifier for a group in the identity store.</p>
|
|
926
|
+
* @public
|
|
927
927
|
*/
|
|
928
928
|
GroupId?: string;
|
|
929
929
|
/**
|
|
930
|
-
* @public
|
|
931
930
|
* <p>An object that contains the identifier of a group member. Setting the <code>UserID</code> field to the specific identifier for a user indicates that the user is a member of the group.</p>
|
|
931
|
+
* @public
|
|
932
932
|
*/
|
|
933
933
|
MemberId?: MemberId;
|
|
934
934
|
/**
|
|
935
|
-
* @public
|
|
936
935
|
* <p>Indicates whether a membership relation exists or not.</p>
|
|
936
|
+
* @public
|
|
937
937
|
*/
|
|
938
938
|
MembershipExists?: boolean;
|
|
939
939
|
}
|
|
@@ -942,8 +942,8 @@ export interface GroupMembershipExistenceResult {
|
|
|
942
942
|
*/
|
|
943
943
|
export interface IsMemberInGroupsResponse {
|
|
944
944
|
/**
|
|
945
|
-
* @public
|
|
946
945
|
* <p>A list containing the results of membership existence checks.</p>
|
|
946
|
+
* @public
|
|
947
947
|
*/
|
|
948
948
|
Results: GroupMembershipExistenceResult[] | undefined;
|
|
949
949
|
}
|
|
@@ -952,23 +952,23 @@ export interface IsMemberInGroupsResponse {
|
|
|
952
952
|
*/
|
|
953
953
|
export interface ListGroupMembershipsForMemberRequest {
|
|
954
954
|
/**
|
|
955
|
-
* @public
|
|
956
955
|
* <p>The globally unique identifier for the identity store.</p>
|
|
956
|
+
* @public
|
|
957
957
|
*/
|
|
958
958
|
IdentityStoreId: string | undefined;
|
|
959
959
|
/**
|
|
960
|
-
* @public
|
|
961
960
|
* <p>An object that contains the identifier of a group member. Setting the <code>UserID</code> field to the specific identifier for a user indicates that the user is a member of the group.</p>
|
|
961
|
+
* @public
|
|
962
962
|
*/
|
|
963
963
|
MemberId: MemberId | undefined;
|
|
964
964
|
/**
|
|
965
|
-
* @public
|
|
966
965
|
* <p>The maximum number of results to be returned per request. This parameter is used in the <code>ListUsers</code> and <code>ListGroups</code> requests to specify how many results to return in one page. The length limit is 50 characters.</p>
|
|
966
|
+
* @public
|
|
967
967
|
*/
|
|
968
968
|
MaxResults?: number;
|
|
969
969
|
/**
|
|
970
|
-
* @public
|
|
971
970
|
* <p>The pagination token used for the <code>ListUsers</code>, <code>ListGroups</code>, and <code>ListGroupMemberships</code> API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page.</p>
|
|
971
|
+
* @public
|
|
972
972
|
*/
|
|
973
973
|
NextToken?: string;
|
|
974
974
|
}
|
|
@@ -977,98 +977,98 @@ export interface ListGroupMembershipsForMemberRequest {
|
|
|
977
977
|
*/
|
|
978
978
|
export interface ListGroupMembershipsForMemberResponse {
|
|
979
979
|
/**
|
|
980
|
-
* @public
|
|
981
980
|
* <p>A list of <code>GroupMembership</code> objects in the group for a specified member.</p>
|
|
981
|
+
* @public
|
|
982
982
|
*/
|
|
983
983
|
GroupMemberships: GroupMembership[] | undefined;
|
|
984
984
|
/**
|
|
985
|
-
* @public
|
|
986
985
|
* <p>The pagination token used for the <code>ListUsers</code>, <code>ListGroups</code>, and <code>ListGroupMemberships</code> API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page.
|
|
987
986
|
* </p>
|
|
987
|
+
* @public
|
|
988
988
|
*/
|
|
989
989
|
NextToken?: string;
|
|
990
990
|
}
|
|
991
991
|
/**
|
|
992
|
-
* @public
|
|
993
992
|
* <p>The email address associated with the user.</p>
|
|
993
|
+
* @public
|
|
994
994
|
*/
|
|
995
995
|
export interface Email {
|
|
996
996
|
/**
|
|
997
|
-
* @public
|
|
998
997
|
* <p>A string containing an email address. For example, "johndoe@amazon.com."</p>
|
|
998
|
+
* @public
|
|
999
999
|
*/
|
|
1000
1000
|
Value?: string;
|
|
1001
1001
|
/**
|
|
1002
|
-
* @public
|
|
1003
1002
|
* <p>A string representing the type of address. For example, "Work."</p>
|
|
1003
|
+
* @public
|
|
1004
1004
|
*/
|
|
1005
1005
|
Type?: string;
|
|
1006
1006
|
/**
|
|
1007
|
-
* @public
|
|
1008
1007
|
* <p>A Boolean value representing whether this is the primary email address for the
|
|
1009
1008
|
* associated resource.</p>
|
|
1009
|
+
* @public
|
|
1010
1010
|
*/
|
|
1011
1011
|
Primary?: boolean;
|
|
1012
1012
|
}
|
|
1013
1013
|
/**
|
|
1014
|
-
* @public
|
|
1015
1014
|
* <p>The
|
|
1016
1015
|
* full name
|
|
1017
1016
|
* of the user.</p>
|
|
1017
|
+
* @public
|
|
1018
1018
|
*/
|
|
1019
1019
|
export interface Name {
|
|
1020
1020
|
/**
|
|
1021
|
-
* @public
|
|
1022
1021
|
* <p>A string containing a formatted version of the name for display.</p>
|
|
1022
|
+
* @public
|
|
1023
1023
|
*/
|
|
1024
1024
|
Formatted?: string;
|
|
1025
1025
|
/**
|
|
1026
|
-
* @public
|
|
1027
1026
|
* <p>The family name of the user.</p>
|
|
1027
|
+
* @public
|
|
1028
1028
|
*/
|
|
1029
1029
|
FamilyName?: string;
|
|
1030
1030
|
/**
|
|
1031
|
-
* @public
|
|
1032
1031
|
* <p>The given name of the user.</p>
|
|
1032
|
+
* @public
|
|
1033
1033
|
*/
|
|
1034
1034
|
GivenName?: string;
|
|
1035
1035
|
/**
|
|
1036
|
-
* @public
|
|
1037
1036
|
* <p>The middle name of the user.</p>
|
|
1037
|
+
* @public
|
|
1038
1038
|
*/
|
|
1039
1039
|
MiddleName?: string;
|
|
1040
1040
|
/**
|
|
1041
|
-
* @public
|
|
1042
1041
|
* <p>The honorific prefix of the user. For example, "Dr."</p>
|
|
1042
|
+
* @public
|
|
1043
1043
|
*/
|
|
1044
1044
|
HonorificPrefix?: string;
|
|
1045
1045
|
/**
|
|
1046
|
-
* @public
|
|
1047
1046
|
* <p>The honorific suffix of the user. For example, "M.D."</p>
|
|
1047
|
+
* @public
|
|
1048
1048
|
*/
|
|
1049
1049
|
HonorificSuffix?: string;
|
|
1050
1050
|
}
|
|
1051
1051
|
/**
|
|
1052
|
-
* @public
|
|
1053
1052
|
* <p>The phone number associated with the user.</p>
|
|
1053
|
+
* @public
|
|
1054
1054
|
*/
|
|
1055
1055
|
export interface PhoneNumber {
|
|
1056
1056
|
/**
|
|
1057
|
-
* @public
|
|
1058
1057
|
* <p>A string containing a phone number. For example,
|
|
1059
1058
|
* "8675309"
|
|
1060
1059
|
* or "+1 (800) 123-4567".</p>
|
|
1060
|
+
* @public
|
|
1061
1061
|
*/
|
|
1062
1062
|
Value?: string;
|
|
1063
1063
|
/**
|
|
1064
|
-
* @public
|
|
1065
1064
|
* <p>A string representing the type of a phone number. For example, "Mobile."</p>
|
|
1065
|
+
* @public
|
|
1066
1066
|
*/
|
|
1067
1067
|
Type?: string;
|
|
1068
1068
|
/**
|
|
1069
|
-
* @public
|
|
1070
1069
|
* <p>A Boolean value representing whether this is the primary phone number for the associated
|
|
1071
1070
|
* resource.</p>
|
|
1071
|
+
* @public
|
|
1072
1072
|
*/
|
|
1073
1073
|
Primary?: boolean;
|
|
1074
1074
|
}
|
|
@@ -1077,81 +1077,81 @@ export interface PhoneNumber {
|
|
|
1077
1077
|
*/
|
|
1078
1078
|
export interface CreateUserRequest {
|
|
1079
1079
|
/**
|
|
1080
|
-
* @public
|
|
1081
1080
|
* <p>The globally unique identifier for the identity store.</p>
|
|
1081
|
+
* @public
|
|
1082
1082
|
*/
|
|
1083
1083
|
IdentityStoreId: string | undefined;
|
|
1084
1084
|
/**
|
|
1085
|
-
* @public
|
|
1086
1085
|
* <p>A unique string used to identify the user. The length limit is 128 characters. This
|
|
1087
1086
|
* value can consist of letters, accented characters, symbols, numbers, and punctuation. This
|
|
1088
1087
|
* value is specified at the time the user is created and stored as an attribute of the user
|
|
1089
1088
|
* object in the identity store. <code>Administrator</code> and <code>AWSAdministrators</code>
|
|
1090
1089
|
* are reserved names and can't be used for users or groups.</p>
|
|
1090
|
+
* @public
|
|
1091
1091
|
*/
|
|
1092
1092
|
UserName?: string;
|
|
1093
1093
|
/**
|
|
1094
|
-
* @public
|
|
1095
1094
|
* <p>An object containing the name of the user.</p>
|
|
1095
|
+
* @public
|
|
1096
1096
|
*/
|
|
1097
1097
|
Name?: Name;
|
|
1098
1098
|
/**
|
|
1099
|
-
* @public
|
|
1100
1099
|
* <p>A string containing the name of the user. This value is typically formatted for display
|
|
1101
1100
|
* when the user is referenced. For example, "John Doe." </p>
|
|
1101
|
+
* @public
|
|
1102
1102
|
*/
|
|
1103
1103
|
DisplayName?: string;
|
|
1104
1104
|
/**
|
|
1105
|
-
* @public
|
|
1106
1105
|
* <p>A string containing an alternate name for the user.</p>
|
|
1106
|
+
* @public
|
|
1107
1107
|
*/
|
|
1108
1108
|
NickName?: string;
|
|
1109
1109
|
/**
|
|
1110
|
-
* @public
|
|
1111
1110
|
* <p>A string containing a URL that might be associated with the user.</p>
|
|
1111
|
+
* @public
|
|
1112
1112
|
*/
|
|
1113
1113
|
ProfileUrl?: string;
|
|
1114
1114
|
/**
|
|
1115
|
-
* @public
|
|
1116
1115
|
* <p>A list of <code>Email</code> objects containing email addresses associated with the user.</p>
|
|
1116
|
+
* @public
|
|
1117
1117
|
*/
|
|
1118
1118
|
Emails?: Email[];
|
|
1119
1119
|
/**
|
|
1120
|
-
* @public
|
|
1121
1120
|
* <p>A list of <code>Address</code> objects containing addresses associated with the user.</p>
|
|
1121
|
+
* @public
|
|
1122
1122
|
*/
|
|
1123
1123
|
Addresses?: Address[];
|
|
1124
1124
|
/**
|
|
1125
|
-
* @public
|
|
1126
1125
|
* <p>A list of <code>PhoneNumber</code> objects containing phone numbers associated with the user.</p>
|
|
1126
|
+
* @public
|
|
1127
1127
|
*/
|
|
1128
1128
|
PhoneNumbers?: PhoneNumber[];
|
|
1129
1129
|
/**
|
|
1130
|
-
* @public
|
|
1131
1130
|
* <p>A string indicating the type of user. Possible values are left unspecified. The value
|
|
1132
1131
|
* can vary based on your specific use case.</p>
|
|
1132
|
+
* @public
|
|
1133
1133
|
*/
|
|
1134
1134
|
UserType?: string;
|
|
1135
1135
|
/**
|
|
1136
|
-
* @public
|
|
1137
1136
|
* <p>A string containing the title of the user. Possible values are left unspecified. The
|
|
1138
1137
|
* value can vary based on your specific use case.</p>
|
|
1138
|
+
* @public
|
|
1139
1139
|
*/
|
|
1140
1140
|
Title?: string;
|
|
1141
1141
|
/**
|
|
1142
|
-
* @public
|
|
1143
1142
|
* <p>A string containing the preferred language of the user. For example, "American English"
|
|
1144
1143
|
* or "en-us."</p>
|
|
1144
|
+
* @public
|
|
1145
1145
|
*/
|
|
1146
1146
|
PreferredLanguage?: string;
|
|
1147
1147
|
/**
|
|
1148
|
-
* @public
|
|
1149
1148
|
* <p>A string containing the geographical region or location of the user.</p>
|
|
1149
|
+
* @public
|
|
1150
1150
|
*/
|
|
1151
1151
|
Locale?: string;
|
|
1152
1152
|
/**
|
|
1153
|
-
* @public
|
|
1154
1153
|
* <p>A string containing the time zone of the user.</p>
|
|
1154
|
+
* @public
|
|
1155
1155
|
*/
|
|
1156
1156
|
Timezone?: string;
|
|
1157
1157
|
}
|
|
@@ -1160,13 +1160,13 @@ export interface CreateUserRequest {
|
|
|
1160
1160
|
*/
|
|
1161
1161
|
export interface CreateUserResponse {
|
|
1162
1162
|
/**
|
|
1163
|
-
* @public
|
|
1164
1163
|
* <p>The identifier of the newly created user in the identity store.</p>
|
|
1164
|
+
* @public
|
|
1165
1165
|
*/
|
|
1166
1166
|
UserId: string | undefined;
|
|
1167
1167
|
/**
|
|
1168
|
-
* @public
|
|
1169
1168
|
* <p>The globally unique identifier for the identity store.</p>
|
|
1169
|
+
* @public
|
|
1170
1170
|
*/
|
|
1171
1171
|
IdentityStoreId: string | undefined;
|
|
1172
1172
|
}
|
|
@@ -1175,13 +1175,13 @@ export interface CreateUserResponse {
|
|
|
1175
1175
|
*/
|
|
1176
1176
|
export interface DeleteUserRequest {
|
|
1177
1177
|
/**
|
|
1178
|
-
* @public
|
|
1179
1178
|
* <p>The globally unique identifier for the identity store.</p>
|
|
1179
|
+
* @public
|
|
1180
1180
|
*/
|
|
1181
1181
|
IdentityStoreId: string | undefined;
|
|
1182
1182
|
/**
|
|
1183
|
-
* @public
|
|
1184
1183
|
* <p>The identifier for a user in the identity store.</p>
|
|
1184
|
+
* @public
|
|
1185
1185
|
*/
|
|
1186
1186
|
UserId: string | undefined;
|
|
1187
1187
|
}
|
|
@@ -1195,17 +1195,17 @@ export interface DeleteUserResponse {
|
|
|
1195
1195
|
*/
|
|
1196
1196
|
export interface DescribeUserRequest {
|
|
1197
1197
|
/**
|
|
1198
|
-
* @public
|
|
1199
1198
|
* <p>The globally unique identifier for the identity store, such as
|
|
1200
1199
|
* <code>d-1234567890</code>. In this example, <code>d-</code> is a fixed prefix, and
|
|
1201
1200
|
* <code>1234567890</code> is a randomly generated string that contains numbers and lower
|
|
1202
1201
|
* case letters. This value is generated at the time that a new identity store is
|
|
1203
1202
|
* created.</p>
|
|
1203
|
+
* @public
|
|
1204
1204
|
*/
|
|
1205
1205
|
IdentityStoreId: string | undefined;
|
|
1206
1206
|
/**
|
|
1207
|
-
* @public
|
|
1208
1207
|
* <p>The identifier for a user in the identity store.</p>
|
|
1208
|
+
* @public
|
|
1209
1209
|
*/
|
|
1210
1210
|
UserId: string | undefined;
|
|
1211
1211
|
}
|
|
@@ -1214,86 +1214,86 @@ export interface DescribeUserRequest {
|
|
|
1214
1214
|
*/
|
|
1215
1215
|
export interface DescribeUserResponse {
|
|
1216
1216
|
/**
|
|
1217
|
-
* @public
|
|
1218
1217
|
* <p>A unique string used to identify the user. The length limit is 128 characters. This value can consist of
|
|
1219
1218
|
* letters, accented characters, symbols, numbers, and punctuation. This value is specified at the time the user is
|
|
1220
1219
|
* created and stored as an attribute of the user object in the identity store.</p>
|
|
1220
|
+
* @public
|
|
1221
1221
|
*/
|
|
1222
1222
|
UserName?: string;
|
|
1223
1223
|
/**
|
|
1224
|
-
* @public
|
|
1225
1224
|
* <p>The identifier for a user in the identity store.</p>
|
|
1225
|
+
* @public
|
|
1226
1226
|
*/
|
|
1227
1227
|
UserId: string | undefined;
|
|
1228
1228
|
/**
|
|
1229
|
-
* @public
|
|
1230
1229
|
* <p>A list of <code>ExternalId</code> objects that contains the identifiers issued to this
|
|
1231
1230
|
* resource by an external identity provider.</p>
|
|
1231
|
+
* @public
|
|
1232
1232
|
*/
|
|
1233
1233
|
ExternalIds?: ExternalId[];
|
|
1234
1234
|
/**
|
|
1235
|
-
* @public
|
|
1236
1235
|
* <p>The name of the user.</p>
|
|
1236
|
+
* @public
|
|
1237
1237
|
*/
|
|
1238
1238
|
Name?: Name;
|
|
1239
1239
|
/**
|
|
1240
|
-
* @public
|
|
1241
1240
|
* <p>The display name of the user.</p>
|
|
1241
|
+
* @public
|
|
1242
1242
|
*/
|
|
1243
1243
|
DisplayName?: string;
|
|
1244
1244
|
/**
|
|
1245
|
-
* @public
|
|
1246
1245
|
* <p>An alternative descriptive name for the user.</p>
|
|
1246
|
+
* @public
|
|
1247
1247
|
*/
|
|
1248
1248
|
NickName?: string;
|
|
1249
1249
|
/**
|
|
1250
|
-
* @public
|
|
1251
1250
|
* <p>A URL link for the user's profile.</p>
|
|
1251
|
+
* @public
|
|
1252
1252
|
*/
|
|
1253
1253
|
ProfileUrl?: string;
|
|
1254
1254
|
/**
|
|
1255
|
-
* @public
|
|
1256
1255
|
* <p>The email address of the user.</p>
|
|
1256
|
+
* @public
|
|
1257
1257
|
*/
|
|
1258
1258
|
Emails?: Email[];
|
|
1259
1259
|
/**
|
|
1260
|
-
* @public
|
|
1261
1260
|
* <p>The physical address of the user.</p>
|
|
1261
|
+
* @public
|
|
1262
1262
|
*/
|
|
1263
1263
|
Addresses?: Address[];
|
|
1264
1264
|
/**
|
|
1265
|
-
* @public
|
|
1266
1265
|
* <p>A list of <code>PhoneNumber</code> objects associated with a user.</p>
|
|
1266
|
+
* @public
|
|
1267
1267
|
*/
|
|
1268
1268
|
PhoneNumbers?: PhoneNumber[];
|
|
1269
1269
|
/**
|
|
1270
|
-
* @public
|
|
1271
1270
|
* <p>A string indicating the type of user.</p>
|
|
1271
|
+
* @public
|
|
1272
1272
|
*/
|
|
1273
1273
|
UserType?: string;
|
|
1274
1274
|
/**
|
|
1275
|
-
* @public
|
|
1276
1275
|
* <p>A string containing the title of the user.</p>
|
|
1276
|
+
* @public
|
|
1277
1277
|
*/
|
|
1278
1278
|
Title?: string;
|
|
1279
1279
|
/**
|
|
1280
|
-
* @public
|
|
1281
1280
|
* <p>The preferred language of the user.</p>
|
|
1281
|
+
* @public
|
|
1282
1282
|
*/
|
|
1283
1283
|
PreferredLanguage?: string;
|
|
1284
1284
|
/**
|
|
1285
|
-
* @public
|
|
1286
1285
|
* <p>A string containing the geographical region or location of the user.</p>
|
|
1286
|
+
* @public
|
|
1287
1287
|
*/
|
|
1288
1288
|
Locale?: string;
|
|
1289
1289
|
/**
|
|
1290
|
-
* @public
|
|
1291
1290
|
* <p>The time zone for a user.</p>
|
|
1291
|
+
* @public
|
|
1292
1292
|
*/
|
|
1293
1293
|
Timezone?: string;
|
|
1294
1294
|
/**
|
|
1295
|
-
* @public
|
|
1296
1295
|
* <p>The globally unique identifier for the identity store.</p>
|
|
1296
|
+
* @public
|
|
1297
1297
|
*/
|
|
1298
1298
|
IdentityStoreId: string | undefined;
|
|
1299
1299
|
}
|
|
@@ -1302,128 +1302,128 @@ export interface DescribeUserResponse {
|
|
|
1302
1302
|
*/
|
|
1303
1303
|
export interface ListUsersRequest {
|
|
1304
1304
|
/**
|
|
1305
|
-
* @public
|
|
1306
1305
|
* <p>The globally unique identifier for the identity store, such as
|
|
1307
1306
|
* <code>d-1234567890</code>. In this example, <code>d-</code> is a fixed prefix, and
|
|
1308
1307
|
* <code>1234567890</code> is a randomly generated string that contains numbers and lower
|
|
1309
1308
|
* case letters. This value is generated at the time that a new identity store is
|
|
1310
1309
|
* created.</p>
|
|
1310
|
+
* @public
|
|
1311
1311
|
*/
|
|
1312
1312
|
IdentityStoreId: string | undefined;
|
|
1313
1313
|
/**
|
|
1314
|
-
* @public
|
|
1315
1314
|
* <p>The maximum number of results to be returned per request. This parameter is used in the
|
|
1316
1315
|
* <code>ListUsers</code> and <code>ListGroups</code> requests to specify how many results
|
|
1317
1316
|
* to return in one page. The length limit is 50 characters.</p>
|
|
1317
|
+
* @public
|
|
1318
1318
|
*/
|
|
1319
1319
|
MaxResults?: number;
|
|
1320
1320
|
/**
|
|
1321
|
-
* @public
|
|
1322
1321
|
* <p>The pagination token used for the <code>ListUsers</code> and <code>ListGroups</code> API
|
|
1323
1322
|
* operations. This value is generated by the identity store service. It is returned in the
|
|
1324
1323
|
* API response if the total results are more than the size of one page. This token is also
|
|
1325
1324
|
* returned when it is used in the API request to search for the next page.</p>
|
|
1325
|
+
* @public
|
|
1326
1326
|
*/
|
|
1327
1327
|
NextToken?: string;
|
|
1328
1328
|
/**
|
|
1329
|
-
* @public
|
|
1330
1329
|
* @deprecated
|
|
1331
1330
|
*
|
|
1332
1331
|
* <p>A list of <code>Filter</code> objects, which is used in the <code>ListUsers</code> and
|
|
1333
1332
|
* <code>ListGroups</code> requests. </p>
|
|
1333
|
+
* @public
|
|
1334
1334
|
*/
|
|
1335
1335
|
Filters?: Filter[];
|
|
1336
1336
|
}
|
|
1337
1337
|
/**
|
|
1338
|
-
* @public
|
|
1339
1338
|
* <p>A user object that contains the metadata and attributes for a specified user.</p>
|
|
1339
|
+
* @public
|
|
1340
1340
|
*/
|
|
1341
1341
|
export interface User {
|
|
1342
1342
|
/**
|
|
1343
|
-
* @public
|
|
1344
1343
|
* <p>A unique string used to identify the user. The length limit is 128 characters. This value can
|
|
1345
1344
|
* consist of letters, accented characters, symbols, numbers, and punctuation. This value is specified at the time the user is
|
|
1346
1345
|
* created and stored as an attribute of the user object in the identity store.</p>
|
|
1346
|
+
* @public
|
|
1347
1347
|
*/
|
|
1348
1348
|
UserName?: string;
|
|
1349
1349
|
/**
|
|
1350
|
-
* @public
|
|
1351
1350
|
* <p>The identifier for a user in the identity store.</p>
|
|
1351
|
+
* @public
|
|
1352
1352
|
*/
|
|
1353
1353
|
UserId: string | undefined;
|
|
1354
1354
|
/**
|
|
1355
|
-
* @public
|
|
1356
1355
|
* <p>A list of <code>ExternalId</code> objects that contains the identifiers issued to this
|
|
1357
1356
|
* resource by an external identity provider.</p>
|
|
1357
|
+
* @public
|
|
1358
1358
|
*/
|
|
1359
1359
|
ExternalIds?: ExternalId[];
|
|
1360
1360
|
/**
|
|
1361
|
-
* @public
|
|
1362
1361
|
* <p>An object containing the name of the user.</p>
|
|
1362
|
+
* @public
|
|
1363
1363
|
*/
|
|
1364
1364
|
Name?: Name;
|
|
1365
1365
|
/**
|
|
1366
|
-
* @public
|
|
1367
1366
|
* <p>A string containing the name of the user that is formatted for display when the user is
|
|
1368
1367
|
* referenced. For example, "John Doe."</p>
|
|
1368
|
+
* @public
|
|
1369
1369
|
*/
|
|
1370
1370
|
DisplayName?: string;
|
|
1371
1371
|
/**
|
|
1372
|
-
* @public
|
|
1373
1372
|
* <p>A string containing an alternate name for the user.</p>
|
|
1373
|
+
* @public
|
|
1374
1374
|
*/
|
|
1375
1375
|
NickName?: string;
|
|
1376
1376
|
/**
|
|
1377
|
-
* @public
|
|
1378
1377
|
* <p>A string containing a URL that might be associated with the user.</p>
|
|
1378
|
+
* @public
|
|
1379
1379
|
*/
|
|
1380
1380
|
ProfileUrl?: string;
|
|
1381
1381
|
/**
|
|
1382
|
-
* @public
|
|
1383
1382
|
* <p>A list of <code>Email</code> objects containing email addresses associated with the user.</p>
|
|
1383
|
+
* @public
|
|
1384
1384
|
*/
|
|
1385
1385
|
Emails?: Email[];
|
|
1386
1386
|
/**
|
|
1387
|
-
* @public
|
|
1388
1387
|
* <p>A list of <code>Address</code> objects containing addresses associated with the user.</p>
|
|
1388
|
+
* @public
|
|
1389
1389
|
*/
|
|
1390
1390
|
Addresses?: Address[];
|
|
1391
1391
|
/**
|
|
1392
|
-
* @public
|
|
1393
1392
|
* <p>A list of <code>PhoneNumber</code> objects containing phone numbers associated with the user.</p>
|
|
1393
|
+
* @public
|
|
1394
1394
|
*/
|
|
1395
1395
|
PhoneNumbers?: PhoneNumber[];
|
|
1396
1396
|
/**
|
|
1397
|
-
* @public
|
|
1398
1397
|
* <p>A string indicating the type of user. Possible values are left unspecified. The value
|
|
1399
1398
|
* can vary based on your specific use case.</p>
|
|
1399
|
+
* @public
|
|
1400
1400
|
*/
|
|
1401
1401
|
UserType?: string;
|
|
1402
1402
|
/**
|
|
1403
|
-
* @public
|
|
1404
1403
|
* <p>A string containing the title of the user. Possible values are left unspecified. The
|
|
1405
1404
|
* value can vary based on your specific use case.</p>
|
|
1405
|
+
* @public
|
|
1406
1406
|
*/
|
|
1407
1407
|
Title?: string;
|
|
1408
1408
|
/**
|
|
1409
|
-
* @public
|
|
1410
1409
|
* <p>A string containing the preferred language of the user. For example, "American English"
|
|
1411
1410
|
* or "en-us."</p>
|
|
1411
|
+
* @public
|
|
1412
1412
|
*/
|
|
1413
1413
|
PreferredLanguage?: string;
|
|
1414
1414
|
/**
|
|
1415
|
-
* @public
|
|
1416
1415
|
* <p>A string containing the geographical region or location of the user.</p>
|
|
1416
|
+
* @public
|
|
1417
1417
|
*/
|
|
1418
1418
|
Locale?: string;
|
|
1419
1419
|
/**
|
|
1420
|
-
* @public
|
|
1421
1420
|
* <p>A string containing the time zone of the user.</p>
|
|
1421
|
+
* @public
|
|
1422
1422
|
*/
|
|
1423
1423
|
Timezone?: string;
|
|
1424
1424
|
/**
|
|
1425
|
-
* @public
|
|
1426
1425
|
* <p>The globally unique identifier for the identity store.</p>
|
|
1426
|
+
* @public
|
|
1427
1427
|
*/
|
|
1428
1428
|
IdentityStoreId: string | undefined;
|
|
1429
1429
|
}
|
|
@@ -1432,16 +1432,16 @@ export interface User {
|
|
|
1432
1432
|
*/
|
|
1433
1433
|
export interface ListUsersResponse {
|
|
1434
1434
|
/**
|
|
1435
|
-
* @public
|
|
1436
1435
|
* <p>A list of <code>User</code> objects in the identity store.</p>
|
|
1436
|
+
* @public
|
|
1437
1437
|
*/
|
|
1438
1438
|
Users: User[] | undefined;
|
|
1439
1439
|
/**
|
|
1440
|
-
* @public
|
|
1441
1440
|
* <p>The pagination token used for the <code>ListUsers</code> and <code>ListGroups</code> API
|
|
1442
1441
|
* operations. This value is generated by the identity store service. It is returned in the
|
|
1443
1442
|
* API response if the total results are more than the size of one page. This token is also
|
|
1444
1443
|
* returned when it is used in the API request to search for the next page.</p>
|
|
1444
|
+
* @public
|
|
1445
1445
|
*/
|
|
1446
1446
|
NextToken?: string;
|
|
1447
1447
|
}
|
|
@@ -1450,19 +1450,19 @@ export interface ListUsersResponse {
|
|
|
1450
1450
|
*/
|
|
1451
1451
|
export interface UpdateUserRequest {
|
|
1452
1452
|
/**
|
|
1453
|
-
* @public
|
|
1454
1453
|
* <p>The globally unique identifier for the identity store.</p>
|
|
1454
|
+
* @public
|
|
1455
1455
|
*/
|
|
1456
1456
|
IdentityStoreId: string | undefined;
|
|
1457
1457
|
/**
|
|
1458
|
-
* @public
|
|
1459
1458
|
* <p>The identifier for a user in the identity store.</p>
|
|
1459
|
+
* @public
|
|
1460
1460
|
*/
|
|
1461
1461
|
UserId: string | undefined;
|
|
1462
1462
|
/**
|
|
1463
|
-
* @public
|
|
1464
1463
|
* <p>A list of <code>AttributeOperation</code> objects to apply to the requested user. These
|
|
1465
1464
|
* operations might add, replace, or remove an attribute.</p>
|
|
1465
|
+
* @public
|
|
1466
1466
|
*/
|
|
1467
1467
|
Operations: AttributeOperation[] | undefined;
|
|
1468
1468
|
}
|