@aws-sdk/client-chime-sdk-identity 3.687.0 → 3.691.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/models/models_0.d.ts +138 -138
- package/dist-types/ts3.4/models/models_0.d.ts +138 -138
- package/package.json +7 -7
|
@@ -22,27 +22,27 @@ export interface AppInstance {
|
|
|
22
22
|
* <p>The ARN of the messaging instance.</p>
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
|
-
AppInstanceArn?: string;
|
|
25
|
+
AppInstanceArn?: string | undefined;
|
|
26
26
|
/**
|
|
27
27
|
* <p>The name of an <code>AppInstance</code>.</p>
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
30
|
-
Name?: string;
|
|
30
|
+
Name?: string | undefined;
|
|
31
31
|
/**
|
|
32
32
|
* <p>The time at which an <code>AppInstance</code> was created. In epoch milliseconds.</p>
|
|
33
33
|
* @public
|
|
34
34
|
*/
|
|
35
|
-
CreatedTimestamp?: Date;
|
|
35
|
+
CreatedTimestamp?: Date | undefined;
|
|
36
36
|
/**
|
|
37
37
|
* <p>The time an <code>AppInstance</code> was last updated. In epoch milliseconds.</p>
|
|
38
38
|
* @public
|
|
39
39
|
*/
|
|
40
|
-
LastUpdatedTimestamp?: Date;
|
|
40
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
41
41
|
/**
|
|
42
42
|
* <p>The metadata of an <code>AppInstance</code>.</p>
|
|
43
43
|
* @public
|
|
44
44
|
*/
|
|
45
|
-
Metadata?: string;
|
|
45
|
+
Metadata?: string | undefined;
|
|
46
46
|
}
|
|
47
47
|
/**
|
|
48
48
|
* <p>The details of a user or bot.</p>
|
|
@@ -53,12 +53,12 @@ export interface Identity {
|
|
|
53
53
|
* <p>The ARN in an Identity.</p>
|
|
54
54
|
* @public
|
|
55
55
|
*/
|
|
56
|
-
Arn?: string;
|
|
56
|
+
Arn?: string | undefined;
|
|
57
57
|
/**
|
|
58
58
|
* <p>The name in an Identity.</p>
|
|
59
59
|
* @public
|
|
60
60
|
*/
|
|
61
|
-
Name?: string;
|
|
61
|
+
Name?: string | undefined;
|
|
62
62
|
}
|
|
63
63
|
/**
|
|
64
64
|
* <p>The name and ARN of the admin for the <code>AppInstance</code>.</p>
|
|
@@ -69,17 +69,17 @@ export interface AppInstanceAdmin {
|
|
|
69
69
|
* <p>The <code>AppInstanceAdmin</code> data.</p>
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
|
-
Admin?: Identity;
|
|
72
|
+
Admin?: Identity | undefined;
|
|
73
73
|
/**
|
|
74
74
|
* <p>The ARN of the <code>AppInstance</code> for which the user is an administrator.</p>
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
|
-
AppInstanceArn?: string;
|
|
77
|
+
AppInstanceArn?: string | undefined;
|
|
78
78
|
/**
|
|
79
79
|
* <p>The time at which an administrator was created.</p>
|
|
80
80
|
* @public
|
|
81
81
|
*/
|
|
82
|
-
CreatedTimestamp?: Date;
|
|
82
|
+
CreatedTimestamp?: Date | undefined;
|
|
83
83
|
}
|
|
84
84
|
/**
|
|
85
85
|
* <p>Summary of the details of an <code>AppInstanceAdmin</code>.</p>
|
|
@@ -90,7 +90,7 @@ export interface AppInstanceAdminSummary {
|
|
|
90
90
|
* <p>The details of the <code>AppInstanceAdmin</code>.</p>
|
|
91
91
|
* @public
|
|
92
92
|
*/
|
|
93
|
-
Admin?: Identity;
|
|
93
|
+
Admin?: Identity | undefined;
|
|
94
94
|
}
|
|
95
95
|
/**
|
|
96
96
|
* @public
|
|
@@ -189,12 +189,12 @@ export interface LexConfiguration {
|
|
|
189
189
|
* <p>Determines whether the Amazon Lex V2 bot responds to all standard messages. Control messages are not supported.</p>
|
|
190
190
|
* @public
|
|
191
191
|
*/
|
|
192
|
-
RespondsTo?: RespondsTo;
|
|
192
|
+
RespondsTo?: RespondsTo | undefined;
|
|
193
193
|
/**
|
|
194
194
|
* <p>Specifies the type of message that triggers a bot.</p>
|
|
195
195
|
* @public
|
|
196
196
|
*/
|
|
197
|
-
InvokedBy?: InvokedBy;
|
|
197
|
+
InvokedBy?: InvokedBy | undefined;
|
|
198
198
|
/**
|
|
199
199
|
* <p>The ARN of the Amazon Lex V2 bot's alias. The ARN uses this format:
|
|
200
200
|
* <code>arn:aws:lex:REGION:ACCOUNT:bot-alias/MYBOTID/MYBOTALIAS</code>
|
|
@@ -213,7 +213,7 @@ export interface LexConfiguration {
|
|
|
213
213
|
* <p>The name of the welcome intent configured in the Amazon Lex V2 bot.</p>
|
|
214
214
|
* @public
|
|
215
215
|
*/
|
|
216
|
-
WelcomeIntent?: string;
|
|
216
|
+
WelcomeIntent?: string | undefined;
|
|
217
217
|
}
|
|
218
218
|
/**
|
|
219
219
|
* <p>A structure that contains configuration data.</p>
|
|
@@ -235,32 +235,32 @@ export interface AppInstanceBot {
|
|
|
235
235
|
* <p>The ARN of the AppInstanceBot.</p>
|
|
236
236
|
* @public
|
|
237
237
|
*/
|
|
238
|
-
AppInstanceBotArn?: string;
|
|
238
|
+
AppInstanceBotArn?: string | undefined;
|
|
239
239
|
/**
|
|
240
240
|
* <p>The name of the AppInstanceBot.</p>
|
|
241
241
|
* @public
|
|
242
242
|
*/
|
|
243
|
-
Name?: string;
|
|
243
|
+
Name?: string | undefined;
|
|
244
244
|
/**
|
|
245
245
|
* <p>The data processing instructions for an AppInstanceBot.</p>
|
|
246
246
|
* @public
|
|
247
247
|
*/
|
|
248
|
-
Configuration?: Configuration;
|
|
248
|
+
Configuration?: Configuration | undefined;
|
|
249
249
|
/**
|
|
250
250
|
* <p>The time at which the <code>AppInstanceBot</code> was created.</p>
|
|
251
251
|
* @public
|
|
252
252
|
*/
|
|
253
|
-
CreatedTimestamp?: Date;
|
|
253
|
+
CreatedTimestamp?: Date | undefined;
|
|
254
254
|
/**
|
|
255
255
|
* <p>The time at which the <code>AppInstanceBot</code> was last updated.</p>
|
|
256
256
|
* @public
|
|
257
257
|
*/
|
|
258
|
-
LastUpdatedTimestamp?: Date;
|
|
258
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
259
259
|
/**
|
|
260
260
|
* <p>The metadata for an AppInstanceBot.</p>
|
|
261
261
|
* @public
|
|
262
262
|
*/
|
|
263
|
-
Metadata?: string;
|
|
263
|
+
Metadata?: string | undefined;
|
|
264
264
|
}
|
|
265
265
|
/**
|
|
266
266
|
* <p>High-level information about an AppInstanceBot.</p>
|
|
@@ -271,17 +271,17 @@ export interface AppInstanceBotSummary {
|
|
|
271
271
|
* <p>The ARN of the AppInstanceBot.</p>
|
|
272
272
|
* @public
|
|
273
273
|
*/
|
|
274
|
-
AppInstanceBotArn?: string;
|
|
274
|
+
AppInstanceBotArn?: string | undefined;
|
|
275
275
|
/**
|
|
276
276
|
* <p>The name of the AppInstanceBox.</p>
|
|
277
277
|
* @public
|
|
278
278
|
*/
|
|
279
|
-
Name?: string;
|
|
279
|
+
Name?: string | undefined;
|
|
280
280
|
/**
|
|
281
281
|
* <p>The metadata of the AppInstanceBot.</p>
|
|
282
282
|
* @public
|
|
283
283
|
*/
|
|
284
|
-
Metadata?: string;
|
|
284
|
+
Metadata?: string | undefined;
|
|
285
285
|
}
|
|
286
286
|
/**
|
|
287
287
|
* <p>Summary of the data for an <code>AppInstance</code>.</p>
|
|
@@ -292,17 +292,17 @@ export interface AppInstanceSummary {
|
|
|
292
292
|
* <p>The <code>AppInstance</code> ARN.</p>
|
|
293
293
|
* @public
|
|
294
294
|
*/
|
|
295
|
-
AppInstanceArn?: string;
|
|
295
|
+
AppInstanceArn?: string | undefined;
|
|
296
296
|
/**
|
|
297
297
|
* <p>The name of the <code>AppInstance</code>.</p>
|
|
298
298
|
* @public
|
|
299
299
|
*/
|
|
300
|
-
Name?: string;
|
|
300
|
+
Name?: string | undefined;
|
|
301
301
|
/**
|
|
302
302
|
* <p>The metadata of the <code>AppInstance</code>.</p>
|
|
303
303
|
* @public
|
|
304
304
|
*/
|
|
305
|
-
Metadata?: string;
|
|
305
|
+
Metadata?: string | undefined;
|
|
306
306
|
}
|
|
307
307
|
/**
|
|
308
308
|
* <p>The details of the retention settings for a channel.</p>
|
|
@@ -313,7 +313,7 @@ export interface ChannelRetentionSettings {
|
|
|
313
313
|
* <p>The time in days to retain the messages in a channel.</p>
|
|
314
314
|
* @public
|
|
315
315
|
*/
|
|
316
|
-
RetentionDays?: number;
|
|
316
|
+
RetentionDays?: number | undefined;
|
|
317
317
|
}
|
|
318
318
|
/**
|
|
319
319
|
* <p>The details of the data-retention settings for an <code>AppInstance</code>.</p>
|
|
@@ -324,7 +324,7 @@ export interface AppInstanceRetentionSettings {
|
|
|
324
324
|
* <p>The length of time in days to retain the messages in a channel.</p>
|
|
325
325
|
* @public
|
|
326
326
|
*/
|
|
327
|
-
ChannelRetentionSettings?: ChannelRetentionSettings;
|
|
327
|
+
ChannelRetentionSettings?: ChannelRetentionSettings | undefined;
|
|
328
328
|
}
|
|
329
329
|
/**
|
|
330
330
|
* @public
|
|
@@ -362,32 +362,32 @@ export interface AppInstanceUser {
|
|
|
362
362
|
* <p>The ARN of the <code>AppInstanceUser</code>.</p>
|
|
363
363
|
* @public
|
|
364
364
|
*/
|
|
365
|
-
AppInstanceUserArn?: string;
|
|
365
|
+
AppInstanceUserArn?: string | undefined;
|
|
366
366
|
/**
|
|
367
367
|
* <p>The name of the <code>AppInstanceUser</code>.</p>
|
|
368
368
|
* @public
|
|
369
369
|
*/
|
|
370
|
-
Name?: string;
|
|
370
|
+
Name?: string | undefined;
|
|
371
371
|
/**
|
|
372
372
|
* <p>The metadata of the <code>AppInstanceUser</code>.</p>
|
|
373
373
|
* @public
|
|
374
374
|
*/
|
|
375
|
-
Metadata?: string;
|
|
375
|
+
Metadata?: string | undefined;
|
|
376
376
|
/**
|
|
377
377
|
* <p>The time at which the <code>AppInstanceUser</code> was created.</p>
|
|
378
378
|
* @public
|
|
379
379
|
*/
|
|
380
|
-
CreatedTimestamp?: Date;
|
|
380
|
+
CreatedTimestamp?: Date | undefined;
|
|
381
381
|
/**
|
|
382
382
|
* <p>The time at which the <code>AppInstanceUser</code> was last updated.</p>
|
|
383
383
|
* @public
|
|
384
384
|
*/
|
|
385
|
-
LastUpdatedTimestamp?: Date;
|
|
385
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
386
386
|
/**
|
|
387
387
|
* <p>The interval after which an <code>AppInstanceUser</code> is automatically deleted.</p>
|
|
388
388
|
* @public
|
|
389
389
|
*/
|
|
390
|
-
ExpirationSettings?: ExpirationSettings;
|
|
390
|
+
ExpirationSettings?: ExpirationSettings | undefined;
|
|
391
391
|
}
|
|
392
392
|
/**
|
|
393
393
|
* <p>The attributes of an <code>Endpoint</code>.</p>
|
|
@@ -403,7 +403,7 @@ export interface EndpointAttributes {
|
|
|
403
403
|
* <p>The VOIP device token for the APNS and APNS_SANDBOX endpoint types.</p>
|
|
404
404
|
* @public
|
|
405
405
|
*/
|
|
406
|
-
VoipDeviceToken?: string;
|
|
406
|
+
VoipDeviceToken?: string | undefined;
|
|
407
407
|
}
|
|
408
408
|
/**
|
|
409
409
|
* @public
|
|
@@ -463,7 +463,7 @@ export interface EndpointState {
|
|
|
463
463
|
* <p>The reason for the <code>EndpointStatus</code>.</p>
|
|
464
464
|
* @public
|
|
465
465
|
*/
|
|
466
|
-
StatusReason?: EndpointStatusReason;
|
|
466
|
+
StatusReason?: EndpointStatusReason | undefined;
|
|
467
467
|
}
|
|
468
468
|
/**
|
|
469
469
|
* @public
|
|
@@ -487,48 +487,48 @@ export interface AppInstanceUserEndpoint {
|
|
|
487
487
|
* <p>The ARN of the <code>AppInstanceUser</code>.</p>
|
|
488
488
|
* @public
|
|
489
489
|
*/
|
|
490
|
-
AppInstanceUserArn?: string;
|
|
490
|
+
AppInstanceUserArn?: string | undefined;
|
|
491
491
|
/**
|
|
492
492
|
* <p>The unique identifier of the <code>AppInstanceUserEndpoint</code>.</p>
|
|
493
493
|
* @public
|
|
494
494
|
*/
|
|
495
|
-
EndpointId?: string;
|
|
495
|
+
EndpointId?: string | undefined;
|
|
496
496
|
/**
|
|
497
497
|
* <p>The name of the <code>AppInstanceUserEndpoint</code>.</p>
|
|
498
498
|
* @public
|
|
499
499
|
*/
|
|
500
|
-
Name?: string;
|
|
500
|
+
Name?: string | undefined;
|
|
501
501
|
/**
|
|
502
502
|
* <p>The type of the <code>AppInstanceUserEndpoint</code>.</p>
|
|
503
503
|
* @public
|
|
504
504
|
*/
|
|
505
|
-
Type?: AppInstanceUserEndpointType;
|
|
505
|
+
Type?: AppInstanceUserEndpointType | undefined;
|
|
506
506
|
/**
|
|
507
507
|
* <p>The ARN of the resource to which the endpoint belongs.</p>
|
|
508
508
|
* @public
|
|
509
509
|
*/
|
|
510
|
-
ResourceArn?: string;
|
|
510
|
+
ResourceArn?: string | undefined;
|
|
511
511
|
/**
|
|
512
512
|
* <p>The attributes of an <code>Endpoint</code>.</p>
|
|
513
513
|
* @public
|
|
514
514
|
*/
|
|
515
|
-
EndpointAttributes?: EndpointAttributes;
|
|
515
|
+
EndpointAttributes?: EndpointAttributes | undefined;
|
|
516
516
|
/**
|
|
517
517
|
* <p>The time at which an <code>AppInstanceUserEndpoint</code> was created.</p>
|
|
518
518
|
* @public
|
|
519
519
|
*/
|
|
520
|
-
CreatedTimestamp?: Date;
|
|
520
|
+
CreatedTimestamp?: Date | undefined;
|
|
521
521
|
/**
|
|
522
522
|
* <p>The time at which an <code>AppInstanceUserEndpoint</code> was last updated.</p>
|
|
523
523
|
* @public
|
|
524
524
|
*/
|
|
525
|
-
LastUpdatedTimestamp?: Date;
|
|
525
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
526
526
|
/**
|
|
527
527
|
* <p>Boolean that controls whether the <code>AppInstanceUserEndpoint</code> is opted in to receive messages. <code>ALL</code> indicates the endpoint will receive all messages.
|
|
528
528
|
* <code>NONE</code> indicates the endpoint will receive no messages.</p>
|
|
529
529
|
* @public
|
|
530
530
|
*/
|
|
531
|
-
AllowMessages?: AllowMessages;
|
|
531
|
+
AllowMessages?: AllowMessages | undefined;
|
|
532
532
|
/**
|
|
533
533
|
* <p>A read-only field that represents the state of an <code>AppInstanceUserEndpoint</code>. Supported values:</p>
|
|
534
534
|
* <ul>
|
|
@@ -553,7 +553,7 @@ export interface AppInstanceUserEndpoint {
|
|
|
553
553
|
* </ul>
|
|
554
554
|
* @public
|
|
555
555
|
*/
|
|
556
|
-
EndpointState?: EndpointState;
|
|
556
|
+
EndpointState?: EndpointState | undefined;
|
|
557
557
|
}
|
|
558
558
|
/**
|
|
559
559
|
* <p>Summary of the details of an <code>AppInstanceUserEndpoint</code>.</p>
|
|
@@ -564,33 +564,33 @@ export interface AppInstanceUserEndpointSummary {
|
|
|
564
564
|
* <p>The ARN of the <code>AppInstanceUser</code>.</p>
|
|
565
565
|
* @public
|
|
566
566
|
*/
|
|
567
|
-
AppInstanceUserArn?: string;
|
|
567
|
+
AppInstanceUserArn?: string | undefined;
|
|
568
568
|
/**
|
|
569
569
|
* <p>The unique identifier of the <code>AppInstanceUserEndpoint</code>.</p>
|
|
570
570
|
* @public
|
|
571
571
|
*/
|
|
572
|
-
EndpointId?: string;
|
|
572
|
+
EndpointId?: string | undefined;
|
|
573
573
|
/**
|
|
574
574
|
* <p>The name of the <code>AppInstanceUserEndpoint</code>.</p>
|
|
575
575
|
* @public
|
|
576
576
|
*/
|
|
577
|
-
Name?: string;
|
|
577
|
+
Name?: string | undefined;
|
|
578
578
|
/**
|
|
579
579
|
* <p>The type of the <code>AppInstanceUserEndpoint</code>.</p>
|
|
580
580
|
* @public
|
|
581
581
|
*/
|
|
582
|
-
Type?: AppInstanceUserEndpointType;
|
|
582
|
+
Type?: AppInstanceUserEndpointType | undefined;
|
|
583
583
|
/**
|
|
584
584
|
* <p>BBoolean that controls whether the <code>AppInstanceUserEndpoint</code> is opted in to receive messages. <code>ALL</code> indicates the endpoint will receive all messages.
|
|
585
585
|
* <code>NONE</code> indicates the endpoint will receive no messages.</p>
|
|
586
586
|
* @public
|
|
587
587
|
*/
|
|
588
|
-
AllowMessages?: AllowMessages;
|
|
588
|
+
AllowMessages?: AllowMessages | undefined;
|
|
589
589
|
/**
|
|
590
590
|
* <p>A read-only field that represent the state of an <code>AppInstanceUserEndpoint</code>.</p>
|
|
591
591
|
* @public
|
|
592
592
|
*/
|
|
593
|
-
EndpointState?: EndpointState;
|
|
593
|
+
EndpointState?: EndpointState | undefined;
|
|
594
594
|
}
|
|
595
595
|
/**
|
|
596
596
|
* <p>Summary of the details of an <code>AppInstanceUser</code>.</p>
|
|
@@ -601,17 +601,17 @@ export interface AppInstanceUserSummary {
|
|
|
601
601
|
* <p>The ARN of the <code>AppInstanceUser</code>.</p>
|
|
602
602
|
* @public
|
|
603
603
|
*/
|
|
604
|
-
AppInstanceUserArn?: string;
|
|
604
|
+
AppInstanceUserArn?: string | undefined;
|
|
605
605
|
/**
|
|
606
606
|
* <p>The name of an <code>AppInstanceUser</code>.</p>
|
|
607
607
|
* @public
|
|
608
608
|
*/
|
|
609
|
-
Name?: string;
|
|
609
|
+
Name?: string | undefined;
|
|
610
610
|
/**
|
|
611
611
|
* <p>The metadata of the <code>AppInstanceUser</code>.</p>
|
|
612
612
|
* @public
|
|
613
613
|
*/
|
|
614
|
-
Metadata?: string;
|
|
614
|
+
Metadata?: string | undefined;
|
|
615
615
|
}
|
|
616
616
|
/**
|
|
617
617
|
* @public
|
|
@@ -645,8 +645,8 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
|
645
645
|
export declare class BadRequestException extends __BaseException {
|
|
646
646
|
readonly name: "BadRequestException";
|
|
647
647
|
readonly $fault: "client";
|
|
648
|
-
Code?: ErrorCode;
|
|
649
|
-
Message?: string;
|
|
648
|
+
Code?: ErrorCode | undefined;
|
|
649
|
+
Message?: string | undefined;
|
|
650
650
|
/**
|
|
651
651
|
* @internal
|
|
652
652
|
*/
|
|
@@ -660,8 +660,8 @@ export declare class BadRequestException extends __BaseException {
|
|
|
660
660
|
export declare class ConflictException extends __BaseException {
|
|
661
661
|
readonly name: "ConflictException";
|
|
662
662
|
readonly $fault: "client";
|
|
663
|
-
Code?: ErrorCode;
|
|
664
|
-
Message?: string;
|
|
663
|
+
Code?: ErrorCode | undefined;
|
|
664
|
+
Message?: string | undefined;
|
|
665
665
|
/**
|
|
666
666
|
* @internal
|
|
667
667
|
*/
|
|
@@ -696,17 +696,17 @@ export interface CreateAppInstanceRequest {
|
|
|
696
696
|
* <p>The metadata of the <code>AppInstance</code>. Limited to a 1KB string in UTF-8.</p>
|
|
697
697
|
* @public
|
|
698
698
|
*/
|
|
699
|
-
Metadata?: string;
|
|
699
|
+
Metadata?: string | undefined;
|
|
700
700
|
/**
|
|
701
701
|
* <p>The unique ID of the request. Use different tokens to create different <code>AppInstances</code>.</p>
|
|
702
702
|
* @public
|
|
703
703
|
*/
|
|
704
|
-
ClientRequestToken?: string;
|
|
704
|
+
ClientRequestToken?: string | undefined;
|
|
705
705
|
/**
|
|
706
706
|
* <p>Tags assigned to the <code>AppInstance</code>.</p>
|
|
707
707
|
* @public
|
|
708
708
|
*/
|
|
709
|
-
Tags?: Tag[];
|
|
709
|
+
Tags?: Tag[] | undefined;
|
|
710
710
|
}
|
|
711
711
|
/**
|
|
712
712
|
* @public
|
|
@@ -716,7 +716,7 @@ export interface CreateAppInstanceResponse {
|
|
|
716
716
|
* <p>The Amazon Resource Number (ARN) of the <code>AppInstance</code>.</p>
|
|
717
717
|
* @public
|
|
718
718
|
*/
|
|
719
|
-
AppInstanceArn?: string;
|
|
719
|
+
AppInstanceArn?: string | undefined;
|
|
720
720
|
}
|
|
721
721
|
/**
|
|
722
722
|
* <p>The client is permanently forbidden from making the request.</p>
|
|
@@ -725,8 +725,8 @@ export interface CreateAppInstanceResponse {
|
|
|
725
725
|
export declare class ForbiddenException extends __BaseException {
|
|
726
726
|
readonly name: "ForbiddenException";
|
|
727
727
|
readonly $fault: "client";
|
|
728
|
-
Code?: ErrorCode;
|
|
729
|
-
Message?: string;
|
|
728
|
+
Code?: ErrorCode | undefined;
|
|
729
|
+
Message?: string | undefined;
|
|
730
730
|
/**
|
|
731
731
|
* @internal
|
|
732
732
|
*/
|
|
@@ -739,8 +739,8 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
739
739
|
export declare class ResourceLimitExceededException extends __BaseException {
|
|
740
740
|
readonly name: "ResourceLimitExceededException";
|
|
741
741
|
readonly $fault: "client";
|
|
742
|
-
Code?: ErrorCode;
|
|
743
|
-
Message?: string;
|
|
742
|
+
Code?: ErrorCode | undefined;
|
|
743
|
+
Message?: string | undefined;
|
|
744
744
|
/**
|
|
745
745
|
* @internal
|
|
746
746
|
*/
|
|
@@ -753,8 +753,8 @@ export declare class ResourceLimitExceededException extends __BaseException {
|
|
|
753
753
|
export declare class ServiceFailureException extends __BaseException {
|
|
754
754
|
readonly name: "ServiceFailureException";
|
|
755
755
|
readonly $fault: "server";
|
|
756
|
-
Code?: ErrorCode;
|
|
757
|
-
Message?: string;
|
|
756
|
+
Code?: ErrorCode | undefined;
|
|
757
|
+
Message?: string | undefined;
|
|
758
758
|
/**
|
|
759
759
|
* @internal
|
|
760
760
|
*/
|
|
@@ -767,8 +767,8 @@ export declare class ServiceFailureException extends __BaseException {
|
|
|
767
767
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
768
768
|
readonly name: "ServiceUnavailableException";
|
|
769
769
|
readonly $fault: "server";
|
|
770
|
-
Code?: ErrorCode;
|
|
771
|
-
Message?: string;
|
|
770
|
+
Code?: ErrorCode | undefined;
|
|
771
|
+
Message?: string | undefined;
|
|
772
772
|
/**
|
|
773
773
|
* @internal
|
|
774
774
|
*/
|
|
@@ -781,8 +781,8 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
781
781
|
export declare class ThrottledClientException extends __BaseException {
|
|
782
782
|
readonly name: "ThrottledClientException";
|
|
783
783
|
readonly $fault: "client";
|
|
784
|
-
Code?: ErrorCode;
|
|
785
|
-
Message?: string;
|
|
784
|
+
Code?: ErrorCode | undefined;
|
|
785
|
+
Message?: string | undefined;
|
|
786
786
|
/**
|
|
787
787
|
* @internal
|
|
788
788
|
*/
|
|
@@ -795,8 +795,8 @@ export declare class ThrottledClientException extends __BaseException {
|
|
|
795
795
|
export declare class UnauthorizedClientException extends __BaseException {
|
|
796
796
|
readonly name: "UnauthorizedClientException";
|
|
797
797
|
readonly $fault: "client";
|
|
798
|
-
Code?: ErrorCode;
|
|
799
|
-
Message?: string;
|
|
798
|
+
Code?: ErrorCode | undefined;
|
|
799
|
+
Message?: string | undefined;
|
|
800
800
|
/**
|
|
801
801
|
* @internal
|
|
802
802
|
*/
|
|
@@ -826,12 +826,12 @@ export interface CreateAppInstanceAdminResponse {
|
|
|
826
826
|
* last-updated timestamps. All timestamps use epoch milliseconds.</p>
|
|
827
827
|
* @public
|
|
828
828
|
*/
|
|
829
|
-
AppInstanceAdmin?: Identity;
|
|
829
|
+
AppInstanceAdmin?: Identity | undefined;
|
|
830
830
|
/**
|
|
831
831
|
* <p>The ARN of the of the admin for the <code>AppInstance</code>.</p>
|
|
832
832
|
* @public
|
|
833
833
|
*/
|
|
834
|
-
AppInstanceArn?: string;
|
|
834
|
+
AppInstanceArn?: string | undefined;
|
|
835
835
|
}
|
|
836
836
|
/**
|
|
837
837
|
* @public
|
|
@@ -846,22 +846,22 @@ export interface CreateAppInstanceBotRequest {
|
|
|
846
846
|
* <p>The user's name.</p>
|
|
847
847
|
* @public
|
|
848
848
|
*/
|
|
849
|
-
Name?: string;
|
|
849
|
+
Name?: string | undefined;
|
|
850
850
|
/**
|
|
851
851
|
* <p>The request metadata. Limited to a 1KB string in UTF-8.</p>
|
|
852
852
|
* @public
|
|
853
853
|
*/
|
|
854
|
-
Metadata?: string;
|
|
854
|
+
Metadata?: string | undefined;
|
|
855
855
|
/**
|
|
856
856
|
* <p>The unique ID for the client making the request. Use different tokens for different <code>AppInstanceBots</code>.</p>
|
|
857
857
|
* @public
|
|
858
858
|
*/
|
|
859
|
-
ClientRequestToken?: string;
|
|
859
|
+
ClientRequestToken?: string | undefined;
|
|
860
860
|
/**
|
|
861
861
|
* <p>The tags assigned to the <code>AppInstanceBot</code>.</p>
|
|
862
862
|
* @public
|
|
863
863
|
*/
|
|
864
|
-
Tags?: Tag[];
|
|
864
|
+
Tags?: Tag[] | undefined;
|
|
865
865
|
/**
|
|
866
866
|
* <p>Configuration information about the Amazon Lex V2 V2 bot.</p>
|
|
867
867
|
* @public
|
|
@@ -876,7 +876,7 @@ export interface CreateAppInstanceBotResponse {
|
|
|
876
876
|
* <p>The ARN of the <code>AppinstanceBot</code>.</p>
|
|
877
877
|
* @public
|
|
878
878
|
*/
|
|
879
|
-
AppInstanceBotArn?: string;
|
|
879
|
+
AppInstanceBotArn?: string | undefined;
|
|
880
880
|
}
|
|
881
881
|
/**
|
|
882
882
|
* @public
|
|
@@ -901,22 +901,22 @@ export interface CreateAppInstanceUserRequest {
|
|
|
901
901
|
* <p>The request's metadata. Limited to a 1KB string in UTF-8.</p>
|
|
902
902
|
* @public
|
|
903
903
|
*/
|
|
904
|
-
Metadata?: string;
|
|
904
|
+
Metadata?: string | undefined;
|
|
905
905
|
/**
|
|
906
906
|
* <p>The unique ID of the request. Use different tokens to request additional <code>AppInstances</code>.</p>
|
|
907
907
|
* @public
|
|
908
908
|
*/
|
|
909
|
-
ClientRequestToken?: string;
|
|
909
|
+
ClientRequestToken?: string | undefined;
|
|
910
910
|
/**
|
|
911
911
|
* <p>Tags assigned to the <code>AppInstanceUser</code>.</p>
|
|
912
912
|
* @public
|
|
913
913
|
*/
|
|
914
|
-
Tags?: Tag[];
|
|
914
|
+
Tags?: Tag[] | undefined;
|
|
915
915
|
/**
|
|
916
916
|
* <p>Settings that control the interval after which the <code>AppInstanceUser</code> is automatically deleted.</p>
|
|
917
917
|
* @public
|
|
918
918
|
*/
|
|
919
|
-
ExpirationSettings?: ExpirationSettings;
|
|
919
|
+
ExpirationSettings?: ExpirationSettings | undefined;
|
|
920
920
|
}
|
|
921
921
|
/**
|
|
922
922
|
* @public
|
|
@@ -926,7 +926,7 @@ export interface CreateAppInstanceUserResponse {
|
|
|
926
926
|
* <p>The user's ARN.</p>
|
|
927
927
|
* @public
|
|
928
928
|
*/
|
|
929
|
-
AppInstanceUserArn?: string;
|
|
929
|
+
AppInstanceUserArn?: string | undefined;
|
|
930
930
|
}
|
|
931
931
|
/**
|
|
932
932
|
* @public
|
|
@@ -1007,7 +1007,7 @@ export interface DescribeAppInstanceResponse {
|
|
|
1007
1007
|
* <code>AppInstance</code>. All timestamps use epoch milliseconds.</p>
|
|
1008
1008
|
* @public
|
|
1009
1009
|
*/
|
|
1010
|
-
AppInstance?: AppInstance;
|
|
1010
|
+
AppInstance?: AppInstance | undefined;
|
|
1011
1011
|
}
|
|
1012
1012
|
/**
|
|
1013
1013
|
* @public
|
|
@@ -1034,7 +1034,7 @@ export interface DescribeAppInstanceAdminResponse {
|
|
|
1034
1034
|
* use epoch milliseconds.</p>
|
|
1035
1035
|
* @public
|
|
1036
1036
|
*/
|
|
1037
|
-
AppInstanceAdmin?: AppInstanceAdmin;
|
|
1037
|
+
AppInstanceAdmin?: AppInstanceAdmin | undefined;
|
|
1038
1038
|
}
|
|
1039
1039
|
/**
|
|
1040
1040
|
* @public
|
|
@@ -1054,7 +1054,7 @@ export interface DescribeAppInstanceBotResponse {
|
|
|
1054
1054
|
* <p>The detials of the <code>AppInstanceBot</code>.</p>
|
|
1055
1055
|
* @public
|
|
1056
1056
|
*/
|
|
1057
|
-
AppInstanceBot?: AppInstanceBot;
|
|
1057
|
+
AppInstanceBot?: AppInstanceBot | undefined;
|
|
1058
1058
|
}
|
|
1059
1059
|
/**
|
|
1060
1060
|
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
@@ -1063,8 +1063,8 @@ export interface DescribeAppInstanceBotResponse {
|
|
|
1063
1063
|
export declare class NotFoundException extends __BaseException {
|
|
1064
1064
|
readonly name: "NotFoundException";
|
|
1065
1065
|
readonly $fault: "client";
|
|
1066
|
-
Code?: ErrorCode;
|
|
1067
|
-
Message?: string;
|
|
1066
|
+
Code?: ErrorCode | undefined;
|
|
1067
|
+
Message?: string | undefined;
|
|
1068
1068
|
/**
|
|
1069
1069
|
* @internal
|
|
1070
1070
|
*/
|
|
@@ -1088,7 +1088,7 @@ export interface DescribeAppInstanceUserResponse {
|
|
|
1088
1088
|
* <p>The name of the <code>AppInstanceUser</code>.</p>
|
|
1089
1089
|
* @public
|
|
1090
1090
|
*/
|
|
1091
|
-
AppInstanceUser?: AppInstanceUser;
|
|
1091
|
+
AppInstanceUser?: AppInstanceUser | undefined;
|
|
1092
1092
|
}
|
|
1093
1093
|
/**
|
|
1094
1094
|
* @public
|
|
@@ -1114,7 +1114,7 @@ export interface DescribeAppInstanceUserEndpointResponse {
|
|
|
1114
1114
|
* allow messages, state, and created and last updated timestamps. All timestamps use epoch milliseconds.</p>
|
|
1115
1115
|
* @public
|
|
1116
1116
|
*/
|
|
1117
|
-
AppInstanceUserEndpoint?: AppInstanceUserEndpoint;
|
|
1117
|
+
AppInstanceUserEndpoint?: AppInstanceUserEndpoint | undefined;
|
|
1118
1118
|
}
|
|
1119
1119
|
/**
|
|
1120
1120
|
* @public
|
|
@@ -1134,13 +1134,13 @@ export interface GetAppInstanceRetentionSettingsResponse {
|
|
|
1134
1134
|
* <p>The retention settings for the <code>AppInstance</code>.</p>
|
|
1135
1135
|
* @public
|
|
1136
1136
|
*/
|
|
1137
|
-
AppInstanceRetentionSettings?: AppInstanceRetentionSettings;
|
|
1137
|
+
AppInstanceRetentionSettings?: AppInstanceRetentionSettings | undefined;
|
|
1138
1138
|
/**
|
|
1139
1139
|
* <p>The timestamp representing the time at which the specified items are retained, in Epoch
|
|
1140
1140
|
* Seconds.</p>
|
|
1141
1141
|
* @public
|
|
1142
1142
|
*/
|
|
1143
|
-
InitiateDeletionTimestamp?: Date;
|
|
1143
|
+
InitiateDeletionTimestamp?: Date | undefined;
|
|
1144
1144
|
}
|
|
1145
1145
|
/**
|
|
1146
1146
|
* @public
|
|
@@ -1155,13 +1155,13 @@ export interface ListAppInstanceAdminsRequest {
|
|
|
1155
1155
|
* <p>The maximum number of administrators that you want to return.</p>
|
|
1156
1156
|
* @public
|
|
1157
1157
|
*/
|
|
1158
|
-
MaxResults?: number;
|
|
1158
|
+
MaxResults?: number | undefined;
|
|
1159
1159
|
/**
|
|
1160
1160
|
* <p>The token returned from previous API requests until the number of administrators is
|
|
1161
1161
|
* reached.</p>
|
|
1162
1162
|
* @public
|
|
1163
1163
|
*/
|
|
1164
|
-
NextToken?: string;
|
|
1164
|
+
NextToken?: string | undefined;
|
|
1165
1165
|
}
|
|
1166
1166
|
/**
|
|
1167
1167
|
* @public
|
|
@@ -1171,18 +1171,18 @@ export interface ListAppInstanceAdminsResponse {
|
|
|
1171
1171
|
* <p>The ARN of the <code>AppInstance</code>.</p>
|
|
1172
1172
|
* @public
|
|
1173
1173
|
*/
|
|
1174
|
-
AppInstanceArn?: string;
|
|
1174
|
+
AppInstanceArn?: string | undefined;
|
|
1175
1175
|
/**
|
|
1176
1176
|
* <p>The information for each administrator.</p>
|
|
1177
1177
|
* @public
|
|
1178
1178
|
*/
|
|
1179
|
-
AppInstanceAdmins?: AppInstanceAdminSummary[];
|
|
1179
|
+
AppInstanceAdmins?: AppInstanceAdminSummary[] | undefined;
|
|
1180
1180
|
/**
|
|
1181
1181
|
* <p>The token returned from previous API requests until the number of administrators is
|
|
1182
1182
|
* reached.</p>
|
|
1183
1183
|
* @public
|
|
1184
1184
|
*/
|
|
1185
|
-
NextToken?: string;
|
|
1185
|
+
NextToken?: string | undefined;
|
|
1186
1186
|
}
|
|
1187
1187
|
/**
|
|
1188
1188
|
* @public
|
|
@@ -1197,12 +1197,12 @@ export interface ListAppInstanceBotsRequest {
|
|
|
1197
1197
|
* <p>The maximum number of requests to return.</p>
|
|
1198
1198
|
* @public
|
|
1199
1199
|
*/
|
|
1200
|
-
MaxResults?: number;
|
|
1200
|
+
MaxResults?: number | undefined;
|
|
1201
1201
|
/**
|
|
1202
1202
|
* <p>The token passed by previous API calls until all requested bots are returned.</p>
|
|
1203
1203
|
* @public
|
|
1204
1204
|
*/
|
|
1205
|
-
NextToken?: string;
|
|
1205
|
+
NextToken?: string | undefined;
|
|
1206
1206
|
}
|
|
1207
1207
|
/**
|
|
1208
1208
|
* @public
|
|
@@ -1212,17 +1212,17 @@ export interface ListAppInstanceBotsResponse {
|
|
|
1212
1212
|
* <p>The ARN of the AppInstance.</p>
|
|
1213
1213
|
* @public
|
|
1214
1214
|
*/
|
|
1215
|
-
AppInstanceArn?: string;
|
|
1215
|
+
AppInstanceArn?: string | undefined;
|
|
1216
1216
|
/**
|
|
1217
1217
|
* <p>The information for each requested <code>AppInstanceBot</code>.</p>
|
|
1218
1218
|
* @public
|
|
1219
1219
|
*/
|
|
1220
|
-
AppInstanceBots?: AppInstanceBotSummary[];
|
|
1220
|
+
AppInstanceBots?: AppInstanceBotSummary[] | undefined;
|
|
1221
1221
|
/**
|
|
1222
1222
|
* <p>The token passed by previous API calls until all requested bots are returned.</p>
|
|
1223
1223
|
* @public
|
|
1224
1224
|
*/
|
|
1225
|
-
NextToken?: string;
|
|
1225
|
+
NextToken?: string | undefined;
|
|
1226
1226
|
}
|
|
1227
1227
|
/**
|
|
1228
1228
|
* @public
|
|
@@ -1232,13 +1232,13 @@ export interface ListAppInstancesRequest {
|
|
|
1232
1232
|
* <p>The maximum number of <code>AppInstance</code>s that you want to return.</p>
|
|
1233
1233
|
* @public
|
|
1234
1234
|
*/
|
|
1235
|
-
MaxResults?: number;
|
|
1235
|
+
MaxResults?: number | undefined;
|
|
1236
1236
|
/**
|
|
1237
1237
|
* <p>The token passed by previous API requests until you reach the maximum number of
|
|
1238
1238
|
* <code>AppInstances</code>.</p>
|
|
1239
1239
|
* @public
|
|
1240
1240
|
*/
|
|
1241
|
-
NextToken?: string;
|
|
1241
|
+
NextToken?: string | undefined;
|
|
1242
1242
|
}
|
|
1243
1243
|
/**
|
|
1244
1244
|
* @public
|
|
@@ -1248,13 +1248,13 @@ export interface ListAppInstancesResponse {
|
|
|
1248
1248
|
* <p>The information for each <code>AppInstance</code>.</p>
|
|
1249
1249
|
* @public
|
|
1250
1250
|
*/
|
|
1251
|
-
AppInstances?: AppInstanceSummary[];
|
|
1251
|
+
AppInstances?: AppInstanceSummary[] | undefined;
|
|
1252
1252
|
/**
|
|
1253
1253
|
* <p>The token passed by previous API requests until the maximum number of
|
|
1254
1254
|
* <code>AppInstance</code>s is reached.</p>
|
|
1255
1255
|
* @public
|
|
1256
1256
|
*/
|
|
1257
|
-
NextToken?: string;
|
|
1257
|
+
NextToken?: string | undefined;
|
|
1258
1258
|
}
|
|
1259
1259
|
/**
|
|
1260
1260
|
* @public
|
|
@@ -1269,12 +1269,12 @@ export interface ListAppInstanceUserEndpointsRequest {
|
|
|
1269
1269
|
* <p>The maximum number of endpoints that you want to return.</p>
|
|
1270
1270
|
* @public
|
|
1271
1271
|
*/
|
|
1272
|
-
MaxResults?: number;
|
|
1272
|
+
MaxResults?: number | undefined;
|
|
1273
1273
|
/**
|
|
1274
1274
|
* <p>The token passed by previous API calls until all requested endpoints are returned.</p>
|
|
1275
1275
|
* @public
|
|
1276
1276
|
*/
|
|
1277
|
-
NextToken?: string;
|
|
1277
|
+
NextToken?: string | undefined;
|
|
1278
1278
|
}
|
|
1279
1279
|
/**
|
|
1280
1280
|
* @public
|
|
@@ -1284,12 +1284,12 @@ export interface ListAppInstanceUserEndpointsResponse {
|
|
|
1284
1284
|
* <p>The information for each requested <code>AppInstanceUserEndpoint</code>.</p>
|
|
1285
1285
|
* @public
|
|
1286
1286
|
*/
|
|
1287
|
-
AppInstanceUserEndpoints?: AppInstanceUserEndpointSummary[];
|
|
1287
|
+
AppInstanceUserEndpoints?: AppInstanceUserEndpointSummary[] | undefined;
|
|
1288
1288
|
/**
|
|
1289
1289
|
* <p>The token passed by previous API calls until all requested endpoints are returned.</p>
|
|
1290
1290
|
* @public
|
|
1291
1291
|
*/
|
|
1292
|
-
NextToken?: string;
|
|
1292
|
+
NextToken?: string | undefined;
|
|
1293
1293
|
}
|
|
1294
1294
|
/**
|
|
1295
1295
|
* @public
|
|
@@ -1304,12 +1304,12 @@ export interface ListAppInstanceUsersRequest {
|
|
|
1304
1304
|
* <p>The maximum number of requests that you want returned.</p>
|
|
1305
1305
|
* @public
|
|
1306
1306
|
*/
|
|
1307
|
-
MaxResults?: number;
|
|
1307
|
+
MaxResults?: number | undefined;
|
|
1308
1308
|
/**
|
|
1309
1309
|
* <p>The token passed by previous API calls until all requested users are returned.</p>
|
|
1310
1310
|
* @public
|
|
1311
1311
|
*/
|
|
1312
|
-
NextToken?: string;
|
|
1312
|
+
NextToken?: string | undefined;
|
|
1313
1313
|
}
|
|
1314
1314
|
/**
|
|
1315
1315
|
* @public
|
|
@@ -1319,17 +1319,17 @@ export interface ListAppInstanceUsersResponse {
|
|
|
1319
1319
|
* <p>The ARN of the <code>AppInstance</code>.</p>
|
|
1320
1320
|
* @public
|
|
1321
1321
|
*/
|
|
1322
|
-
AppInstanceArn?: string;
|
|
1322
|
+
AppInstanceArn?: string | undefined;
|
|
1323
1323
|
/**
|
|
1324
1324
|
* <p>The information for each requested <code>AppInstanceUser</code>.</p>
|
|
1325
1325
|
* @public
|
|
1326
1326
|
*/
|
|
1327
|
-
AppInstanceUsers?: AppInstanceUserSummary[];
|
|
1327
|
+
AppInstanceUsers?: AppInstanceUserSummary[] | undefined;
|
|
1328
1328
|
/**
|
|
1329
1329
|
* <p>The token passed by previous API calls until all requested users are returned.</p>
|
|
1330
1330
|
* @public
|
|
1331
1331
|
*/
|
|
1332
|
-
NextToken?: string;
|
|
1332
|
+
NextToken?: string | undefined;
|
|
1333
1333
|
}
|
|
1334
1334
|
/**
|
|
1335
1335
|
* @public
|
|
@@ -1349,7 +1349,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1349
1349
|
* <p>The tag key-value pairs.</p>
|
|
1350
1350
|
* @public
|
|
1351
1351
|
*/
|
|
1352
|
-
Tags?: Tag[];
|
|
1352
|
+
Tags?: Tag[] | undefined;
|
|
1353
1353
|
}
|
|
1354
1354
|
/**
|
|
1355
1355
|
* @public
|
|
@@ -1374,12 +1374,12 @@ export interface PutAppInstanceRetentionSettingsResponse {
|
|
|
1374
1374
|
* <p>The time in days to retain data. Data type: number.</p>
|
|
1375
1375
|
* @public
|
|
1376
1376
|
*/
|
|
1377
|
-
AppInstanceRetentionSettings?: AppInstanceRetentionSettings;
|
|
1377
|
+
AppInstanceRetentionSettings?: AppInstanceRetentionSettings | undefined;
|
|
1378
1378
|
/**
|
|
1379
1379
|
* <p>The time at which the API deletes data.</p>
|
|
1380
1380
|
* @public
|
|
1381
1381
|
*/
|
|
1382
|
-
InitiateDeletionTimestamp?: Date;
|
|
1382
|
+
InitiateDeletionTimestamp?: Date | undefined;
|
|
1383
1383
|
}
|
|
1384
1384
|
/**
|
|
1385
1385
|
* @public
|
|
@@ -1394,7 +1394,7 @@ export interface PutAppInstanceUserExpirationSettingsRequest {
|
|
|
1394
1394
|
* <p>Settings that control the interval after which an <code>AppInstanceUser</code> is automatically deleted.</p>
|
|
1395
1395
|
* @public
|
|
1396
1396
|
*/
|
|
1397
|
-
ExpirationSettings?: ExpirationSettings;
|
|
1397
|
+
ExpirationSettings?: ExpirationSettings | undefined;
|
|
1398
1398
|
}
|
|
1399
1399
|
/**
|
|
1400
1400
|
* @public
|
|
@@ -1404,12 +1404,12 @@ export interface PutAppInstanceUserExpirationSettingsResponse {
|
|
|
1404
1404
|
* <p>The ARN of the <code>AppInstanceUser</code>.</p>
|
|
1405
1405
|
* @public
|
|
1406
1406
|
*/
|
|
1407
|
-
AppInstanceUserArn?: string;
|
|
1407
|
+
AppInstanceUserArn?: string | undefined;
|
|
1408
1408
|
/**
|
|
1409
1409
|
* <p>Settings that control the interval after which an <code>AppInstanceUser</code> is automatically deleted.</p>
|
|
1410
1410
|
* @public
|
|
1411
1411
|
*/
|
|
1412
|
-
ExpirationSettings?: ExpirationSettings;
|
|
1412
|
+
ExpirationSettings?: ExpirationSettings | undefined;
|
|
1413
1413
|
}
|
|
1414
1414
|
/**
|
|
1415
1415
|
* @public
|
|
@@ -1424,7 +1424,7 @@ export interface RegisterAppInstanceUserEndpointRequest {
|
|
|
1424
1424
|
* <p>The name of the <code>AppInstanceUserEndpoint</code>.</p>
|
|
1425
1425
|
* @public
|
|
1426
1426
|
*/
|
|
1427
|
-
Name?: string;
|
|
1427
|
+
Name?: string | undefined;
|
|
1428
1428
|
/**
|
|
1429
1429
|
* <p>The type of the <code>AppInstanceUserEndpoint</code>. Supported types:</p>
|
|
1430
1430
|
* <ul>
|
|
@@ -1459,13 +1459,13 @@ export interface RegisterAppInstanceUserEndpointRequest {
|
|
|
1459
1459
|
* <p>The unique ID assigned to the request. Use different tokens to register other endpoints.</p>
|
|
1460
1460
|
* @public
|
|
1461
1461
|
*/
|
|
1462
|
-
ClientRequestToken?: string;
|
|
1462
|
+
ClientRequestToken?: string | undefined;
|
|
1463
1463
|
/**
|
|
1464
1464
|
* <p>Boolean that controls whether the AppInstanceUserEndpoint is opted in to receive messages. <code>ALL</code> indicates the endpoint receives all messages.
|
|
1465
1465
|
* <code>NONE</code> indicates the endpoint receives no messages.</p>
|
|
1466
1466
|
* @public
|
|
1467
1467
|
*/
|
|
1468
|
-
AllowMessages?: AllowMessages;
|
|
1468
|
+
AllowMessages?: AllowMessages | undefined;
|
|
1469
1469
|
}
|
|
1470
1470
|
/**
|
|
1471
1471
|
* @public
|
|
@@ -1475,12 +1475,12 @@ export interface RegisterAppInstanceUserEndpointResponse {
|
|
|
1475
1475
|
* <p>The ARN of the <code>AppInstanceUser</code>.</p>
|
|
1476
1476
|
* @public
|
|
1477
1477
|
*/
|
|
1478
|
-
AppInstanceUserArn?: string;
|
|
1478
|
+
AppInstanceUserArn?: string | undefined;
|
|
1479
1479
|
/**
|
|
1480
1480
|
* <p>The unique identifier of the <code>AppInstanceUserEndpoint</code>.</p>
|
|
1481
1481
|
* @public
|
|
1482
1482
|
*/
|
|
1483
|
-
EndpointId?: string;
|
|
1483
|
+
EndpointId?: string | undefined;
|
|
1484
1484
|
}
|
|
1485
1485
|
/**
|
|
1486
1486
|
* @public
|
|
@@ -1540,7 +1540,7 @@ export interface UpdateAppInstanceResponse {
|
|
|
1540
1540
|
* <p>The ARN of the <code>AppInstance</code>.</p>
|
|
1541
1541
|
* @public
|
|
1542
1542
|
*/
|
|
1543
|
-
AppInstanceArn?: string;
|
|
1543
|
+
AppInstanceArn?: string | undefined;
|
|
1544
1544
|
}
|
|
1545
1545
|
/**
|
|
1546
1546
|
* @public
|
|
@@ -1565,7 +1565,7 @@ export interface UpdateAppInstanceBotRequest {
|
|
|
1565
1565
|
* <p>The configuration for the bot update.</p>
|
|
1566
1566
|
* @public
|
|
1567
1567
|
*/
|
|
1568
|
-
Configuration?: Configuration;
|
|
1568
|
+
Configuration?: Configuration | undefined;
|
|
1569
1569
|
}
|
|
1570
1570
|
/**
|
|
1571
1571
|
* @public
|
|
@@ -1575,7 +1575,7 @@ export interface UpdateAppInstanceBotResponse {
|
|
|
1575
1575
|
* <p>The ARN of the <code>AppInstanceBot</code>.</p>
|
|
1576
1576
|
* @public
|
|
1577
1577
|
*/
|
|
1578
|
-
AppInstanceBotArn?: string;
|
|
1578
|
+
AppInstanceBotArn?: string | undefined;
|
|
1579
1579
|
}
|
|
1580
1580
|
/**
|
|
1581
1581
|
* @public
|
|
@@ -1605,7 +1605,7 @@ export interface UpdateAppInstanceUserResponse {
|
|
|
1605
1605
|
* <p>The ARN of the <code>AppInstanceUser</code>.</p>
|
|
1606
1606
|
* @public
|
|
1607
1607
|
*/
|
|
1608
|
-
AppInstanceUserArn?: string;
|
|
1608
|
+
AppInstanceUserArn?: string | undefined;
|
|
1609
1609
|
}
|
|
1610
1610
|
/**
|
|
1611
1611
|
* @public
|
|
@@ -1625,13 +1625,13 @@ export interface UpdateAppInstanceUserEndpointRequest {
|
|
|
1625
1625
|
* <p>The name of the <code>AppInstanceUserEndpoint</code>.</p>
|
|
1626
1626
|
* @public
|
|
1627
1627
|
*/
|
|
1628
|
-
Name?: string;
|
|
1628
|
+
Name?: string | undefined;
|
|
1629
1629
|
/**
|
|
1630
1630
|
* <p>Boolean that controls whether the <code>AppInstanceUserEndpoint</code> is opted in to receive messages. <code>ALL</code> indicates the endpoint will receive all messages.
|
|
1631
1631
|
* <code>NONE</code> indicates the endpoint will receive no messages.</p>
|
|
1632
1632
|
* @public
|
|
1633
1633
|
*/
|
|
1634
|
-
AllowMessages?: AllowMessages;
|
|
1634
|
+
AllowMessages?: AllowMessages | undefined;
|
|
1635
1635
|
}
|
|
1636
1636
|
/**
|
|
1637
1637
|
* @public
|
|
@@ -1641,12 +1641,12 @@ export interface UpdateAppInstanceUserEndpointResponse {
|
|
|
1641
1641
|
* <p>The ARN of the <code>AppInstanceUser</code>.</p>
|
|
1642
1642
|
* @public
|
|
1643
1643
|
*/
|
|
1644
|
-
AppInstanceUserArn?: string;
|
|
1644
|
+
AppInstanceUserArn?: string | undefined;
|
|
1645
1645
|
/**
|
|
1646
1646
|
* <p>The unique identifier of the <code>AppInstanceUserEndpoint</code>.</p>
|
|
1647
1647
|
* @public
|
|
1648
1648
|
*/
|
|
1649
|
-
EndpointId?: string;
|
|
1649
|
+
EndpointId?: string | undefined;
|
|
1650
1650
|
}
|
|
1651
1651
|
/**
|
|
1652
1652
|
* @internal
|