@aws-sdk/client-connectcases 3.379.1 → 3.382.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.
@@ -43,6 +43,7 @@ export type FieldValueUnion = FieldValueUnion.BooleanValueMember | FieldValueUni
43
43
  */
44
44
  export declare namespace FieldValueUnion {
45
45
  /**
46
+ * @public
46
47
  * <p>String value type.</p>
47
48
  */
48
49
  interface StringValueMember {
@@ -53,6 +54,7 @@ export declare namespace FieldValueUnion {
53
54
  $unknown?: never;
54
55
  }
55
56
  /**
57
+ * @public
56
58
  * <p>Can be either null, or have a Double number value type. Only one value can be
57
59
  * provided.</p>
58
60
  */
@@ -64,6 +66,7 @@ export declare namespace FieldValueUnion {
64
66
  $unknown?: never;
65
67
  }
66
68
  /**
69
+ * @public
67
70
  * <p>Can be either null, or have a Boolean value type. Only one value can be provided.</p>
68
71
  */
69
72
  interface BooleanValueMember {
@@ -74,6 +77,7 @@ export declare namespace FieldValueUnion {
74
77
  $unknown?: never;
75
78
  }
76
79
  /**
80
+ * @public
77
81
  * <p>An empty value.</p>
78
82
  */
79
83
  interface EmptyValueMember {
@@ -83,6 +87,9 @@ export declare namespace FieldValueUnion {
83
87
  emptyValue: EmptyFieldValue;
84
88
  $unknown?: never;
85
89
  }
90
+ /**
91
+ * @public
92
+ */
86
93
  interface $UnknownMember {
87
94
  stringValue?: never;
88
95
  doubleValue?: never;
@@ -105,10 +112,12 @@ export declare namespace FieldValueUnion {
105
112
  */
106
113
  export interface FieldValue {
107
114
  /**
115
+ * @public
108
116
  * <p>Unique identifier of a field.</p>
109
117
  */
110
118
  id: string | undefined;
111
119
  /**
120
+ * @public
112
121
  * <p>Union of potential field value types.</p>
113
122
  */
114
123
  value: FieldValueUnion | undefined;
@@ -118,19 +127,23 @@ export interface FieldValue {
118
127
  */
119
128
  export interface CreateCaseRequest {
120
129
  /**
130
+ * @public
121
131
  * <p>The unique identifier of the Cases domain. </p>
122
132
  */
123
133
  domainId: string | undefined;
124
134
  /**
135
+ * @public
125
136
  * <p>A unique identifier of a template.</p>
126
137
  */
127
138
  templateId: string | undefined;
128
139
  /**
140
+ * @public
129
141
  * <p>An array of objects with field ID (matching ListFields/DescribeField) and value union
130
142
  * data.</p>
131
143
  */
132
144
  fields: FieldValue[] | undefined;
133
145
  /**
146
+ * @public
134
147
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
135
148
  * request. If not provided, the Amazon Web Services
136
149
  * SDK populates this field. For more information about idempotency, see
@@ -143,10 +156,12 @@ export interface CreateCaseRequest {
143
156
  */
144
157
  export interface CreateCaseResponse {
145
158
  /**
159
+ * @public
146
160
  * <p>A unique identifier of the case.</p>
147
161
  */
148
162
  caseId: string | undefined;
149
163
  /**
164
+ * @public
150
165
  * <p>The Amazon Resource Name (ARN) of the case.</p>
151
166
  */
152
167
  caseArn: string | undefined;
@@ -161,6 +176,7 @@ export declare class InternalServerException extends __BaseException {
161
176
  readonly $fault: "server";
162
177
  $retryable: {};
163
178
  /**
179
+ * @public
164
180
  * <p>Advice to clients on when the call can be safely retried.</p>
165
181
  */
166
182
  retryAfterSeconds?: number;
@@ -178,10 +194,12 @@ export declare class ResourceNotFoundException extends __BaseException {
178
194
  readonly name: "ResourceNotFoundException";
179
195
  readonly $fault: "client";
180
196
  /**
197
+ * @public
181
198
  * <p>Unique identifier of the resource affected.</p>
182
199
  */
183
200
  resourceId: string | undefined;
184
201
  /**
202
+ * @public
185
203
  * <p>Type of the resource affected.</p>
186
204
  */
187
205
  resourceType: string | undefined;
@@ -221,6 +239,7 @@ export declare class ValidationException extends __BaseException {
221
239
  */
222
240
  export interface FieldIdentifier {
223
241
  /**
242
+ * @public
224
243
  * <p>Unique identifier of a field.</p>
225
244
  */
226
245
  id: string | undefined;
@@ -230,18 +249,22 @@ export interface FieldIdentifier {
230
249
  */
231
250
  export interface GetCaseRequest {
232
251
  /**
252
+ * @public
233
253
  * <p>A unique identifier of the case.</p>
234
254
  */
235
255
  caseId: string | undefined;
236
256
  /**
257
+ * @public
237
258
  * <p>The unique identifier of the Cases domain. </p>
238
259
  */
239
260
  domainId: string | undefined;
240
261
  /**
262
+ * @public
241
263
  * <p>A list of unique field identifiers. </p>
242
264
  */
243
265
  fields: FieldIdentifier[] | undefined;
244
266
  /**
267
+ * @public
245
268
  * <p>The token for the next set of results. Use the value returned in the previous
246
269
  * response in the next request to retrieve the next set of results.</p>
247
270
  */
@@ -252,18 +275,22 @@ export interface GetCaseRequest {
252
275
  */
253
276
  export interface GetCaseResponse {
254
277
  /**
278
+ * @public
255
279
  * <p>A list of detailed field information. </p>
256
280
  */
257
281
  fields: FieldValue[] | undefined;
258
282
  /**
283
+ * @public
259
284
  * <p>A unique identifier of a template.</p>
260
285
  */
261
286
  templateId: string | undefined;
262
287
  /**
288
+ * @public
263
289
  * <p>The token for the next set of results. This is null if there are no more results to return.</p>
264
290
  */
265
291
  nextToken?: string;
266
292
  /**
293
+ * @public
267
294
  * <p>A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.</p>
268
295
  */
269
296
  tags?: Record<string, string>;
@@ -273,18 +300,22 @@ export interface GetCaseResponse {
273
300
  */
274
301
  export interface ListCasesForContactRequest {
275
302
  /**
303
+ * @public
276
304
  * <p>The unique identifier of the Cases domain. </p>
277
305
  */
278
306
  domainId: string | undefined;
279
307
  /**
308
+ * @public
280
309
  * <p>A unique identifier of a contact in Amazon Connect.</p>
281
310
  */
282
311
  contactArn: string | undefined;
283
312
  /**
313
+ * @public
284
314
  * <p>The maximum number of results to return per page.</p>
285
315
  */
286
316
  maxResults?: number;
287
317
  /**
318
+ * @public
288
319
  * <p>The token for the next set of results. Use the value returned in the previous
289
320
  * response in the next request to retrieve the next set of results.</p>
290
321
  */
@@ -296,10 +327,12 @@ export interface ListCasesForContactRequest {
296
327
  */
297
328
  export interface CaseSummary {
298
329
  /**
330
+ * @public
299
331
  * <p>A unique identifier of the case.</p>
300
332
  */
301
333
  caseId: string | undefined;
302
334
  /**
335
+ * @public
303
336
  * <p>A unique identifier of a template.</p>
304
337
  */
305
338
  templateId: string | undefined;
@@ -309,10 +342,12 @@ export interface CaseSummary {
309
342
  */
310
343
  export interface ListCasesForContactResponse {
311
344
  /**
345
+ * @public
312
346
  * <p>A list of Case summary information.</p>
313
347
  */
314
348
  cases: CaseSummary[] | undefined;
315
349
  /**
350
+ * @public
316
351
  * <p>The token for the next set of results. This is null if there are no more results to return.</p>
317
352
  */
318
353
  nextToken?: string;
@@ -334,10 +369,12 @@ export type CommentBodyTextType = (typeof CommentBodyTextType)[keyof typeof Comm
334
369
  */
335
370
  export interface CommentContent {
336
371
  /**
372
+ * @public
337
373
  * <p>Text in the body of a <code>Comment</code> on a case.</p>
338
374
  */
339
375
  body: string | undefined;
340
376
  /**
377
+ * @public
341
378
  * <p>Type of the text in the box of a <code>Comment</code> on a case.</p>
342
379
  */
343
380
  contentType: CommentBodyTextType | string | undefined;
@@ -348,6 +385,7 @@ export interface CommentContent {
348
385
  */
349
386
  export interface Contact {
350
387
  /**
388
+ * @public
351
389
  * <p>A unique identifier of a contact in Amazon Connect.</p>
352
390
  */
353
391
  contactArn: string | undefined;
@@ -362,6 +400,7 @@ export type RelatedItemInputContent = RelatedItemInputContent.CommentMember | Re
362
400
  */
363
401
  export declare namespace RelatedItemInputContent {
364
402
  /**
403
+ * @public
365
404
  * <p>Object representing a contact in Amazon Connect as an API request field.</p>
366
405
  */
367
406
  interface ContactMember {
@@ -370,6 +409,7 @@ export declare namespace RelatedItemInputContent {
370
409
  $unknown?: never;
371
410
  }
372
411
  /**
412
+ * @public
373
413
  * <p>Represents the content of a comment to be returned to agents.</p>
374
414
  */
375
415
  interface CommentMember {
@@ -377,6 +417,9 @@ export declare namespace RelatedItemInputContent {
377
417
  comment: CommentContent;
378
418
  $unknown?: never;
379
419
  }
420
+ /**
421
+ * @public
422
+ */
380
423
  interface $UnknownMember {
381
424
  contact?: never;
382
425
  comment?: never;
@@ -406,18 +449,22 @@ export type RelatedItemType = (typeof RelatedItemType)[keyof typeof RelatedItemT
406
449
  */
407
450
  export interface CreateRelatedItemRequest {
408
451
  /**
452
+ * @public
409
453
  * <p>The unique identifier of the Cases domain. </p>
410
454
  */
411
455
  domainId: string | undefined;
412
456
  /**
457
+ * @public
413
458
  * <p>A unique identifier of the case.</p>
414
459
  */
415
460
  caseId: string | undefined;
416
461
  /**
462
+ * @public
417
463
  * <p>The type of a related item.</p>
418
464
  */
419
465
  type: RelatedItemType | string | undefined;
420
466
  /**
467
+ * @public
421
468
  * <p>The content of a related item to be created.</p>
422
469
  */
423
470
  content: RelatedItemInputContent | undefined;
@@ -427,10 +474,12 @@ export interface CreateRelatedItemRequest {
427
474
  */
428
475
  export interface CreateRelatedItemResponse {
429
476
  /**
477
+ * @public
430
478
  * <p>The unique identifier of the related item.</p>
431
479
  */
432
480
  relatedItemId: string | undefined;
433
481
  /**
482
+ * @public
434
483
  * <p>The Amazon Resource Name (ARN) of the related item.</p>
435
484
  */
436
485
  relatedItemArn: string | undefined;
@@ -460,10 +509,12 @@ export interface CommentFilter {
460
509
  */
461
510
  export interface ContactFilter {
462
511
  /**
512
+ * @public
463
513
  * <p>A list of channels to filter on for related items of type <code>Contact</code>.</p>
464
514
  */
465
515
  channel?: string[];
466
516
  /**
517
+ * @public
467
518
  * <p>A unique identifier of a contact in Amazon Connect.</p>
468
519
  */
469
520
  contactArn?: string;
@@ -478,6 +529,7 @@ export type RelatedItemTypeFilter = RelatedItemTypeFilter.CommentMember | Relate
478
529
  */
479
530
  export declare namespace RelatedItemTypeFilter {
480
531
  /**
532
+ * @public
481
533
  * <p>A filter for related items of type <code>Contact</code>.</p>
482
534
  */
483
535
  interface ContactMember {
@@ -486,6 +538,7 @@ export declare namespace RelatedItemTypeFilter {
486
538
  $unknown?: never;
487
539
  }
488
540
  /**
541
+ * @public
489
542
  * <p>A filter for related items of type <code>Comment</code>.</p>
490
543
  */
491
544
  interface CommentMember {
@@ -493,6 +546,9 @@ export declare namespace RelatedItemTypeFilter {
493
546
  comment: CommentFilter;
494
547
  $unknown?: never;
495
548
  }
549
+ /**
550
+ * @public
551
+ */
496
552
  interface $UnknownMember {
497
553
  contact?: never;
498
554
  comment?: never;
@@ -510,23 +566,28 @@ export declare namespace RelatedItemTypeFilter {
510
566
  */
511
567
  export interface SearchRelatedItemsRequest {
512
568
  /**
569
+ * @public
513
570
  * <p>The unique identifier of the Cases domain. </p>
514
571
  */
515
572
  domainId: string | undefined;
516
573
  /**
574
+ * @public
517
575
  * <p>A unique identifier of the case.</p>
518
576
  */
519
577
  caseId: string | undefined;
520
578
  /**
579
+ * @public
521
580
  * <p>The maximum number of results to return per page.</p>
522
581
  */
523
582
  maxResults?: number;
524
583
  /**
584
+ * @public
525
585
  * <p>The token for the next set of results. Use the value returned in the previous
526
586
  * response in the next request to retrieve the next set of results.</p>
527
587
  */
528
588
  nextToken?: string;
529
589
  /**
590
+ * @public
530
591
  * <p>The list of types of related items and their parameters to use for filtering.</p>
531
592
  */
532
593
  filters?: RelatedItemTypeFilter[];
@@ -537,14 +598,17 @@ export interface SearchRelatedItemsRequest {
537
598
  */
538
599
  export interface ContactContent {
539
600
  /**
601
+ * @public
540
602
  * <p>A unique identifier of a contact in Amazon Connect.</p>
541
603
  */
542
604
  contactArn: string | undefined;
543
605
  /**
606
+ * @public
544
607
  * <p>A list of channels to filter on for related items of type <code>Contact</code>.</p>
545
608
  */
546
609
  channel: string | undefined;
547
610
  /**
611
+ * @public
548
612
  * <p>The difference between the <code>InitiationTimestamp</code> and the
549
613
  * <code>DisconnectTimestamp</code> of the contact.</p>
550
614
  */
@@ -560,6 +624,7 @@ export type RelatedItemContent = RelatedItemContent.CommentMember | RelatedItemC
560
624
  */
561
625
  export declare namespace RelatedItemContent {
562
626
  /**
627
+ * @public
563
628
  * <p>Represents the content of a contact to be returned to agents.</p>
564
629
  */
565
630
  interface ContactMember {
@@ -568,6 +633,7 @@ export declare namespace RelatedItemContent {
568
633
  $unknown?: never;
569
634
  }
570
635
  /**
636
+ * @public
571
637
  * <p>Represents the content of a comment to be returned to agents.</p>
572
638
  */
573
639
  interface CommentMember {
@@ -575,6 +641,9 @@ export declare namespace RelatedItemContent {
575
641
  comment: CommentContent;
576
642
  $unknown?: never;
577
643
  }
644
+ /**
645
+ * @public
646
+ */
578
647
  interface $UnknownMember {
579
648
  contact?: never;
580
649
  comment?: never;
@@ -593,22 +662,27 @@ export declare namespace RelatedItemContent {
593
662
  */
594
663
  export interface SearchRelatedItemsResponseItem {
595
664
  /**
665
+ * @public
596
666
  * <p>Unique identifier of a related item.</p>
597
667
  */
598
668
  relatedItemId: string | undefined;
599
669
  /**
670
+ * @public
600
671
  * <p>Type of a related item.</p>
601
672
  */
602
673
  type: RelatedItemType | string | undefined;
603
674
  /**
675
+ * @public
604
676
  * <p>Time at which a related item was associated with a case.</p>
605
677
  */
606
678
  associationTime: Date | undefined;
607
679
  /**
680
+ * @public
608
681
  * <p>Represents the content of a particular type of related item.</p>
609
682
  */
610
683
  content: RelatedItemContent | undefined;
611
684
  /**
685
+ * @public
612
686
  * <p>A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.</p>
613
687
  */
614
688
  tags?: Record<string, string>;
@@ -618,10 +692,12 @@ export interface SearchRelatedItemsResponseItem {
618
692
  */
619
693
  export interface SearchRelatedItemsResponse {
620
694
  /**
695
+ * @public
621
696
  * <p>The token for the next set of results. This is null if there are no more results to return.</p>
622
697
  */
623
698
  nextToken?: string;
624
699
  /**
700
+ * @public
625
701
  * <p>A list of items related to a case. </p>
626
702
  */
627
703
  relatedItems: SearchRelatedItemsResponseItem[] | undefined;
@@ -636,6 +712,7 @@ export type FieldFilter = FieldFilter.ContainsMember | FieldFilter.EqualToMember
636
712
  */
637
713
  export declare namespace FieldFilter {
638
714
  /**
715
+ * @public
639
716
  * <p>Object containing field identifier and value information.</p>
640
717
  */
641
718
  interface EqualToMember {
@@ -648,6 +725,7 @@ export declare namespace FieldFilter {
648
725
  $unknown?: never;
649
726
  }
650
727
  /**
728
+ * @public
651
729
  * <p>Object containing field identifier and value information.</p>
652
730
  */
653
731
  interface ContainsMember {
@@ -660,6 +738,7 @@ export declare namespace FieldFilter {
660
738
  $unknown?: never;
661
739
  }
662
740
  /**
741
+ * @public
663
742
  * <p>Object containing field identifier and value information.</p>
664
743
  */
665
744
  interface GreaterThanMember {
@@ -672,6 +751,7 @@ export declare namespace FieldFilter {
672
751
  $unknown?: never;
673
752
  }
674
753
  /**
754
+ * @public
675
755
  * <p>Object containing field identifier and value information.</p>
676
756
  */
677
757
  interface GreaterThanOrEqualToMember {
@@ -684,6 +764,7 @@ export declare namespace FieldFilter {
684
764
  $unknown?: never;
685
765
  }
686
766
  /**
767
+ * @public
687
768
  * <p>Object containing field identifier and value information.</p>
688
769
  */
689
770
  interface LessThanMember {
@@ -696,6 +777,7 @@ export declare namespace FieldFilter {
696
777
  $unknown?: never;
697
778
  }
698
779
  /**
780
+ * @public
699
781
  * <p>Object containing field identifier and value information. </p>
700
782
  */
701
783
  interface LessThanOrEqualToMember {
@@ -707,6 +789,9 @@ export declare namespace FieldFilter {
707
789
  lessThanOrEqualTo: FieldValue;
708
790
  $unknown?: never;
709
791
  }
792
+ /**
793
+ * @public
794
+ */
710
795
  interface $UnknownMember {
711
796
  equalTo?: never;
712
797
  contains?: never;
@@ -745,10 +830,12 @@ export type Order = (typeof Order)[keyof typeof Order];
745
830
  */
746
831
  export interface Sort {
747
832
  /**
833
+ * @public
748
834
  * <p>Unique identifier of a field.</p>
749
835
  */
750
836
  fieldId: string | undefined;
751
837
  /**
838
+ * @public
752
839
  * <p>A structured set of sort terms</p>
753
840
  */
754
841
  sortOrder: Order | string | undefined;
@@ -759,18 +846,22 @@ export interface Sort {
759
846
  */
760
847
  export interface SearchCasesResponseItem {
761
848
  /**
849
+ * @public
762
850
  * <p>A unique identifier of the case.</p>
763
851
  */
764
852
  caseId: string | undefined;
765
853
  /**
854
+ * @public
766
855
  * <p>A unique identifier of a template.</p>
767
856
  */
768
857
  templateId: string | undefined;
769
858
  /**
859
+ * @public
770
860
  * <p>List of case field values.</p>
771
861
  */
772
862
  fields: FieldValue[] | undefined;
773
863
  /**
864
+ * @public
774
865
  * <p>A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.</p>
775
866
  */
776
867
  tags?: Record<string, string>;
@@ -780,10 +871,12 @@ export interface SearchCasesResponseItem {
780
871
  */
781
872
  export interface SearchCasesResponse {
782
873
  /**
874
+ * @public
783
875
  * <p>The token for the next set of results. This is null if there are no more results to return.</p>
784
876
  */
785
877
  nextToken?: string;
786
878
  /**
879
+ * @public
787
880
  * <p>A list of case documents where each case contains the properties <code>CaseId</code> and
788
881
  * <code>Fields</code> where each field is a complex union structure. </p>
789
882
  */
@@ -794,14 +887,17 @@ export interface SearchCasesResponse {
794
887
  */
795
888
  export interface UpdateCaseRequest {
796
889
  /**
890
+ * @public
797
891
  * <p>The unique identifier of the Cases domain. </p>
798
892
  */
799
893
  domainId: string | undefined;
800
894
  /**
895
+ * @public
801
896
  * <p>A unique identifier of the case.</p>
802
897
  */
803
898
  caseId: string | undefined;
804
899
  /**
900
+ * @public
805
901
  * <p>An array of objects with <code>fieldId</code> (matching ListFields/DescribeField) and
806
902
  * value union data, structured identical to <code>CreateCase</code>.</p>
807
903
  */
@@ -817,6 +913,7 @@ export interface UpdateCaseResponse {
817
913
  */
818
914
  export interface CreateDomainRequest {
819
915
  /**
916
+ * @public
820
917
  * <p>The name for your Cases domain. It must be unique for your Amazon Web Services
821
918
  * account.</p>
822
919
  */
@@ -840,14 +937,17 @@ export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
840
937
  */
841
938
  export interface CreateDomainResponse {
842
939
  /**
940
+ * @public
843
941
  * <p>The unique identifier of the Cases domain. </p>
844
942
  */
845
943
  domainId: string | undefined;
846
944
  /**
945
+ * @public
847
946
  * <p>The Amazon Resource Name (ARN) for the Cases domain.</p>
848
947
  */
849
948
  domainArn: string | undefined;
850
949
  /**
950
+ * @public
851
951
  * <p>The status of the domain.</p>
852
952
  */
853
953
  domainStatus: DomainStatus | string | undefined;
@@ -857,6 +957,7 @@ export interface CreateDomainResponse {
857
957
  */
858
958
  export interface DeleteDomainRequest {
859
959
  /**
960
+ * @public
860
961
  * <p>The unique identifier of the Cases domain. </p>
861
962
  */
862
963
  domainId: string | undefined;
@@ -871,6 +972,7 @@ export interface DeleteDomainResponse {
871
972
  */
872
973
  export interface GetCaseEventConfigurationRequest {
873
974
  /**
975
+ * @public
874
976
  * <p>The unique identifier of the Cases domain. </p>
875
977
  */
876
978
  domainId: string | undefined;
@@ -881,6 +983,7 @@ export interface GetCaseEventConfigurationRequest {
881
983
  */
882
984
  export interface CaseEventIncludedData {
883
985
  /**
986
+ * @public
884
987
  * <p>List of field identifiers.</p>
885
988
  */
886
989
  fields: FieldIdentifier[] | undefined;
@@ -891,6 +994,7 @@ export interface CaseEventIncludedData {
891
994
  */
892
995
  export interface RelatedItemEventIncludedData {
893
996
  /**
997
+ * @public
894
998
  * <p>Details of what related item data is published through the case event stream.</p>
895
999
  */
896
1000
  includeContent: boolean | undefined;
@@ -902,10 +1006,12 @@ export interface RelatedItemEventIncludedData {
902
1006
  */
903
1007
  export interface EventIncludedData {
904
1008
  /**
1009
+ * @public
905
1010
  * <p>Details of what case data is published through the case event stream.</p>
906
1011
  */
907
1012
  caseData?: CaseEventIncludedData;
908
1013
  /**
1014
+ * @public
909
1015
  * <p>Details of what related item data is published through the case event stream.</p>
910
1016
  */
911
1017
  relatedItemData?: RelatedItemEventIncludedData;
@@ -917,10 +1023,12 @@ export interface EventIncludedData {
917
1023
  */
918
1024
  export interface EventBridgeConfiguration {
919
1025
  /**
1026
+ * @public
920
1027
  * <p>Indicates whether the to broadcast case event data to the customer.</p>
921
1028
  */
922
1029
  enabled: boolean | undefined;
923
1030
  /**
1031
+ * @public
924
1032
  * <p>Details of what case and related item data is published through the case event
925
1033
  * stream.</p>
926
1034
  */
@@ -931,6 +1039,7 @@ export interface EventBridgeConfiguration {
931
1039
  */
932
1040
  export interface GetCaseEventConfigurationResponse {
933
1041
  /**
1042
+ * @public
934
1043
  * <p>Configuration to enable EventBridge case event delivery and determine what data is
935
1044
  * delivered.</p>
936
1045
  */
@@ -941,6 +1050,7 @@ export interface GetCaseEventConfigurationResponse {
941
1050
  */
942
1051
  export interface GetDomainRequest {
943
1052
  /**
1053
+ * @public
944
1054
  * <p>The unique identifier of the Cases domain. </p>
945
1055
  */
946
1056
  domainId: string | undefined;
@@ -950,26 +1060,32 @@ export interface GetDomainRequest {
950
1060
  */
951
1061
  export interface GetDomainResponse {
952
1062
  /**
1063
+ * @public
953
1064
  * <p>The unique identifier of the Cases domain. </p>
954
1065
  */
955
1066
  domainId: string | undefined;
956
1067
  /**
1068
+ * @public
957
1069
  * <p>The Amazon Resource Name (ARN) for the Cases domain.</p>
958
1070
  */
959
1071
  domainArn: string | undefined;
960
1072
  /**
1073
+ * @public
961
1074
  * <p>The name of the Cases domain.</p>
962
1075
  */
963
1076
  name: string | undefined;
964
1077
  /**
1078
+ * @public
965
1079
  * <p>The timestamp when the Cases domain was created.</p>
966
1080
  */
967
1081
  createdTime: Date | undefined;
968
1082
  /**
1083
+ * @public
969
1084
  * <p>The status of the Cases domain.</p>
970
1085
  */
971
1086
  domainStatus: DomainStatus | string | undefined;
972
1087
  /**
1088
+ * @public
973
1089
  * <p>A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.</p>
974
1090
  */
975
1091
  tags?: Record<string, string>;
@@ -979,10 +1095,12 @@ export interface GetDomainResponse {
979
1095
  */
980
1096
  export interface ListDomainsRequest {
981
1097
  /**
1098
+ * @public
982
1099
  * <p>The maximum number of results to return per page.</p>
983
1100
  */
984
1101
  maxResults?: number;
985
1102
  /**
1103
+ * @public
986
1104
  * <p>The token for the next set of results. Use the value returned in the previous
987
1105
  * response in the next request to retrieve the next set of results.</p>
988
1106
  */
@@ -994,14 +1112,17 @@ export interface ListDomainsRequest {
994
1112
  */
995
1113
  export interface DomainSummary {
996
1114
  /**
1115
+ * @public
997
1116
  * <p>The unique identifier of the domain.</p>
998
1117
  */
999
1118
  domainId: string | undefined;
1000
1119
  /**
1120
+ * @public
1001
1121
  * <p>The Amazon Resource Name (ARN) of the domain.</p>
1002
1122
  */
1003
1123
  domainArn: string | undefined;
1004
1124
  /**
1125
+ * @public
1005
1126
  * <p>The name of the domain.</p>
1006
1127
  */
1007
1128
  name: string | undefined;
@@ -1011,10 +1132,12 @@ export interface DomainSummary {
1011
1132
  */
1012
1133
  export interface ListDomainsResponse {
1013
1134
  /**
1135
+ * @public
1014
1136
  * <p>The Cases domain.</p>
1015
1137
  */
1016
1138
  domains: DomainSummary[] | undefined;
1017
1139
  /**
1140
+ * @public
1018
1141
  * <p>The token for the next set of results. This is null if there are no more results to return.</p>
1019
1142
  */
1020
1143
  nextToken?: string;
@@ -1024,10 +1147,12 @@ export interface ListDomainsResponse {
1024
1147
  */
1025
1148
  export interface PutCaseEventConfigurationRequest {
1026
1149
  /**
1150
+ * @public
1027
1151
  * <p>The unique identifier of the Cases domain. </p>
1028
1152
  */
1029
1153
  domainId: string | undefined;
1030
1154
  /**
1155
+ * @public
1031
1156
  * <p>Configuration to enable EventBridge case event delivery and determine what data is
1032
1157
  * delivered.</p>
1033
1158
  */
@@ -1043,10 +1168,12 @@ export interface PutCaseEventConfigurationResponse {
1043
1168
  */
1044
1169
  export interface BatchGetFieldRequest {
1045
1170
  /**
1171
+ * @public
1046
1172
  * <p>The unique identifier of the Cases domain. </p>
1047
1173
  */
1048
1174
  domainId: string | undefined;
1049
1175
  /**
1176
+ * @public
1050
1177
  * <p>A list of unique field identifiers. </p>
1051
1178
  */
1052
1179
  fields: FieldIdentifier[] | undefined;
@@ -1057,14 +1184,17 @@ export interface BatchGetFieldRequest {
1057
1184
  */
1058
1185
  export interface FieldError {
1059
1186
  /**
1187
+ * @public
1060
1188
  * <p>The field identifier that caused the error.</p>
1061
1189
  */
1062
1190
  id: string | undefined;
1063
1191
  /**
1192
+ * @public
1064
1193
  * <p>The error code from getting a field.</p>
1065
1194
  */
1066
1195
  errorCode: string | undefined;
1067
1196
  /**
1197
+ * @public
1068
1198
  * <p>The error message from getting a field.</p>
1069
1199
  */
1070
1200
  message?: string;
@@ -1103,30 +1233,37 @@ export type FieldType = (typeof FieldType)[keyof typeof FieldType];
1103
1233
  */
1104
1234
  export interface GetFieldResponse {
1105
1235
  /**
1236
+ * @public
1106
1237
  * <p>Unique identifier of the field.</p>
1107
1238
  */
1108
1239
  fieldId: string | undefined;
1109
1240
  /**
1241
+ * @public
1110
1242
  * <p>Name of the field.</p>
1111
1243
  */
1112
1244
  name: string | undefined;
1113
1245
  /**
1246
+ * @public
1114
1247
  * <p>The Amazon Resource Name (ARN) of the field.</p>
1115
1248
  */
1116
1249
  fieldArn: string | undefined;
1117
1250
  /**
1251
+ * @public
1118
1252
  * <p>Description of the field.</p>
1119
1253
  */
1120
1254
  description?: string;
1121
1255
  /**
1256
+ * @public
1122
1257
  * <p>Type of the field.</p>
1123
1258
  */
1124
1259
  type: FieldType | string | undefined;
1125
1260
  /**
1261
+ * @public
1126
1262
  * <p>Namespace of the field.</p>
1127
1263
  */
1128
1264
  namespace: FieldNamespace | string | undefined;
1129
1265
  /**
1266
+ * @public
1130
1267
  * <p>A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.</p>
1131
1268
  */
1132
1269
  tags?: Record<string, string>;
@@ -1136,10 +1273,12 @@ export interface GetFieldResponse {
1136
1273
  */
1137
1274
  export interface BatchGetFieldResponse {
1138
1275
  /**
1276
+ * @public
1139
1277
  * <p>A list of detailed field information. </p>
1140
1278
  */
1141
1279
  fields: GetFieldResponse[] | undefined;
1142
1280
  /**
1281
+ * @public
1143
1282
  * <p>A list of field errors. </p>
1144
1283
  */
1145
1284
  errors: FieldError[] | undefined;
@@ -1150,17 +1289,20 @@ export interface BatchGetFieldResponse {
1150
1289
  */
1151
1290
  export interface FieldOption {
1152
1291
  /**
1292
+ * @public
1153
1293
  * <p>
1154
1294
  * <code>FieldOptionName</code> has max length 100 and disallows trailing spaces.</p>
1155
1295
  */
1156
1296
  name: string | undefined;
1157
1297
  /**
1298
+ * @public
1158
1299
  * <p>
1159
1300
  * <code>FieldOptionValue</code> has max length 100 and must be alphanumeric with hyphens and
1160
1301
  * underscores.</p>
1161
1302
  */
1162
1303
  value: string | undefined;
1163
1304
  /**
1305
+ * @public
1164
1306
  * <p>Describes whether the <code>FieldOption</code> is active (displayed) or inactive.</p>
1165
1307
  */
1166
1308
  active: boolean | undefined;
@@ -1170,14 +1312,17 @@ export interface FieldOption {
1170
1312
  */
1171
1313
  export interface BatchPutFieldOptionsRequest {
1172
1314
  /**
1315
+ * @public
1173
1316
  * <p>The unique identifier of the Cases domain. </p>
1174
1317
  */
1175
1318
  domainId: string | undefined;
1176
1319
  /**
1320
+ * @public
1177
1321
  * <p>The unique identifier of a field.</p>
1178
1322
  */
1179
1323
  fieldId: string | undefined;
1180
1324
  /**
1325
+ * @public
1181
1326
  * <p>A list of <code>FieldOption</code> objects.</p>
1182
1327
  */
1183
1328
  options: FieldOption[] | undefined;
@@ -1188,14 +1333,17 @@ export interface BatchPutFieldOptionsRequest {
1188
1333
  */
1189
1334
  export interface FieldOptionError {
1190
1335
  /**
1336
+ * @public
1191
1337
  * <p>Error message from creating or updating field option.</p>
1192
1338
  */
1193
1339
  message: string | undefined;
1194
1340
  /**
1341
+ * @public
1195
1342
  * <p>Error code from creating or updating field option.</p>
1196
1343
  */
1197
1344
  errorCode: string | undefined;
1198
1345
  /**
1346
+ * @public
1199
1347
  * <p>The field option value that caused the error.</p>
1200
1348
  */
1201
1349
  value: string | undefined;
@@ -1205,6 +1353,7 @@ export interface FieldOptionError {
1205
1353
  */
1206
1354
  export interface BatchPutFieldOptionsResponse {
1207
1355
  /**
1356
+ * @public
1208
1357
  * <p>A list of field errors. </p>
1209
1358
  */
1210
1359
  errors?: FieldOptionError[];
@@ -1214,18 +1363,22 @@ export interface BatchPutFieldOptionsResponse {
1214
1363
  */
1215
1364
  export interface CreateFieldRequest {
1216
1365
  /**
1366
+ * @public
1217
1367
  * <p>The unique identifier of the Cases domain. </p>
1218
1368
  */
1219
1369
  domainId: string | undefined;
1220
1370
  /**
1371
+ * @public
1221
1372
  * <p>The name of the field.</p>
1222
1373
  */
1223
1374
  name: string | undefined;
1224
1375
  /**
1376
+ * @public
1225
1377
  * <p>Defines the data type, some system constraints, and default display of the field.</p>
1226
1378
  */
1227
1379
  type: FieldType | string | undefined;
1228
1380
  /**
1381
+ * @public
1229
1382
  * <p>The description of the field.</p>
1230
1383
  */
1231
1384
  description?: string;
@@ -1235,10 +1388,12 @@ export interface CreateFieldRequest {
1235
1388
  */
1236
1389
  export interface CreateFieldResponse {
1237
1390
  /**
1391
+ * @public
1238
1392
  * <p>The unique identifier of a field.</p>
1239
1393
  */
1240
1394
  fieldId: string | undefined;
1241
1395
  /**
1396
+ * @public
1242
1397
  * <p>The Amazon Resource Name (ARN) of the field.</p>
1243
1398
  */
1244
1399
  fieldArn: string | undefined;
@@ -1248,23 +1403,28 @@ export interface CreateFieldResponse {
1248
1403
  */
1249
1404
  export interface ListFieldOptionsRequest {
1250
1405
  /**
1406
+ * @public
1251
1407
  * <p>The unique identifier of the Cases domain. </p>
1252
1408
  */
1253
1409
  domainId: string | undefined;
1254
1410
  /**
1411
+ * @public
1255
1412
  * <p>The unique identifier of a field.</p>
1256
1413
  */
1257
1414
  fieldId: string | undefined;
1258
1415
  /**
1416
+ * @public
1259
1417
  * <p>The maximum number of results to return per page.</p>
1260
1418
  */
1261
1419
  maxResults?: number;
1262
1420
  /**
1421
+ * @public
1263
1422
  * <p>The token for the next set of results. Use the value returned in the previous
1264
1423
  * response in the next request to retrieve the next set of results.</p>
1265
1424
  */
1266
1425
  nextToken?: string;
1267
1426
  /**
1427
+ * @public
1268
1428
  * <p>A list of <code>FieldOption</code> values to filter on for
1269
1429
  * <code>ListFieldOptions</code>.</p>
1270
1430
  */
@@ -1275,10 +1435,12 @@ export interface ListFieldOptionsRequest {
1275
1435
  */
1276
1436
  export interface ListFieldOptionsResponse {
1277
1437
  /**
1438
+ * @public
1278
1439
  * <p>A list of <code>FieldOption</code> objects.</p>
1279
1440
  */
1280
1441
  options: FieldOption[] | undefined;
1281
1442
  /**
1443
+ * @public
1282
1444
  * <p>The token for the next set of results. This is null if there are no more results to return.</p>
1283
1445
  */
1284
1446
  nextToken?: string;
@@ -1288,14 +1450,17 @@ export interface ListFieldOptionsResponse {
1288
1450
  */
1289
1451
  export interface ListFieldsRequest {
1290
1452
  /**
1453
+ * @public
1291
1454
  * <p>The unique identifier of the Cases domain. </p>
1292
1455
  */
1293
1456
  domainId: string | undefined;
1294
1457
  /**
1458
+ * @public
1295
1459
  * <p>The maximum number of results to return per page.</p>
1296
1460
  */
1297
1461
  maxResults?: number;
1298
1462
  /**
1463
+ * @public
1299
1464
  * <p>The token for the next set of results. Use the value returned in the previous
1300
1465
  * response in the next request to retrieve the next set of results.</p>
1301
1466
  */
@@ -1307,22 +1472,27 @@ export interface ListFieldsRequest {
1307
1472
  */
1308
1473
  export interface FieldSummary {
1309
1474
  /**
1475
+ * @public
1310
1476
  * <p>The unique identifier of a field.</p>
1311
1477
  */
1312
1478
  fieldId: string | undefined;
1313
1479
  /**
1480
+ * @public
1314
1481
  * <p>The Amazon Resource Name (ARN) of the field.</p>
1315
1482
  */
1316
1483
  fieldArn: string | undefined;
1317
1484
  /**
1485
+ * @public
1318
1486
  * <p>Name of the field.</p>
1319
1487
  */
1320
1488
  name: string | undefined;
1321
1489
  /**
1490
+ * @public
1322
1491
  * <p>The type of a field.</p>
1323
1492
  */
1324
1493
  type: FieldType | string | undefined;
1325
1494
  /**
1495
+ * @public
1326
1496
  * <p>The namespace of a field.</p>
1327
1497
  */
1328
1498
  namespace: FieldNamespace | string | undefined;
@@ -1332,10 +1502,12 @@ export interface FieldSummary {
1332
1502
  */
1333
1503
  export interface ListFieldsResponse {
1334
1504
  /**
1505
+ * @public
1335
1506
  * <p>List of detailed field information.</p>
1336
1507
  */
1337
1508
  fields: FieldSummary[] | undefined;
1338
1509
  /**
1510
+ * @public
1339
1511
  * <p>The token for the next set of results. This is null if there are no more results to return.</p>
1340
1512
  */
1341
1513
  nextToken?: string;
@@ -1345,18 +1517,22 @@ export interface ListFieldsResponse {
1345
1517
  */
1346
1518
  export interface UpdateFieldRequest {
1347
1519
  /**
1520
+ * @public
1348
1521
  * <p>The unique identifier of the Cases domain. </p>
1349
1522
  */
1350
1523
  domainId: string | undefined;
1351
1524
  /**
1525
+ * @public
1352
1526
  * <p>The unique identifier of a field.</p>
1353
1527
  */
1354
1528
  fieldId: string | undefined;
1355
1529
  /**
1530
+ * @public
1356
1531
  * <p>The name of the field.</p>
1357
1532
  */
1358
1533
  name?: string;
1359
1534
  /**
1535
+ * @public
1360
1536
  * <p>The description of a field.</p>
1361
1537
  */
1362
1538
  description?: string;
@@ -1372,6 +1548,7 @@ export interface UpdateFieldResponse {
1372
1548
  */
1373
1549
  export interface FieldItem {
1374
1550
  /**
1551
+ * @public
1375
1552
  * <p>Unique identifier of a field.</p>
1376
1553
  */
1377
1554
  id: string | undefined;
@@ -1382,10 +1559,12 @@ export interface FieldItem {
1382
1559
  */
1383
1560
  export interface FieldGroup {
1384
1561
  /**
1562
+ * @public
1385
1563
  * <p>Name of the field group.</p>
1386
1564
  */
1387
1565
  name?: string;
1388
1566
  /**
1567
+ * @public
1389
1568
  * <p>Represents an ordered list containing field related information.</p>
1390
1569
  */
1391
1570
  fields: FieldItem[] | undefined;
@@ -1400,12 +1579,16 @@ export type Section = Section.FieldGroupMember | Section.$UnknownMember;
1400
1579
  */
1401
1580
  export declare namespace Section {
1402
1581
  /**
1582
+ * @public
1403
1583
  * <p>Consists of a group of fields and associated properties.</p>
1404
1584
  */
1405
1585
  interface FieldGroupMember {
1406
1586
  fieldGroup: FieldGroup;
1407
1587
  $unknown?: never;
1408
1588
  }
1589
+ /**
1590
+ * @public
1591
+ */
1409
1592
  interface $UnknownMember {
1410
1593
  fieldGroup?: never;
1411
1594
  $unknown: [string, any];
@@ -1423,6 +1606,7 @@ export declare namespace Section {
1423
1606
  */
1424
1607
  export interface LayoutSections {
1425
1608
  /**
1609
+ * @public
1426
1610
  * <p>Ordered list containing different kinds of sections that can be added.</p>
1427
1611
  */
1428
1612
  sections?: Section[];
@@ -1434,10 +1618,12 @@ export interface LayoutSections {
1434
1618
  */
1435
1619
  export interface BasicLayout {
1436
1620
  /**
1621
+ * @public
1437
1622
  * <p>This represents sections in a panel of the page layout.</p>
1438
1623
  */
1439
1624
  topPanel?: LayoutSections;
1440
1625
  /**
1626
+ * @public
1441
1627
  * <p>This represents sections in a tab of the page layout.</p>
1442
1628
  */
1443
1629
  moreInfo?: LayoutSections;
@@ -1452,6 +1638,7 @@ export type LayoutContent = LayoutContent.BasicMember | LayoutContent.$UnknownMe
1452
1638
  */
1453
1639
  export declare namespace LayoutContent {
1454
1640
  /**
1641
+ * @public
1455
1642
  * <p>Content specific to <code>BasicLayout</code> type. It configures fields in the top panel
1456
1643
  * and More Info tab of Cases user interface.</p>
1457
1644
  */
@@ -1459,6 +1646,9 @@ export declare namespace LayoutContent {
1459
1646
  basic: BasicLayout;
1460
1647
  $unknown?: never;
1461
1648
  }
1649
+ /**
1650
+ * @public
1651
+ */
1462
1652
  interface $UnknownMember {
1463
1653
  basic?: never;
1464
1654
  $unknown: [string, any];
@@ -1474,14 +1664,17 @@ export declare namespace LayoutContent {
1474
1664
  */
1475
1665
  export interface CreateLayoutRequest {
1476
1666
  /**
1667
+ * @public
1477
1668
  * <p>The unique identifier of the Cases domain. </p>
1478
1669
  */
1479
1670
  domainId: string | undefined;
1480
1671
  /**
1672
+ * @public
1481
1673
  * <p>The name of the layout. It must be unique for the Cases domain.</p>
1482
1674
  */
1483
1675
  name: string | undefined;
1484
1676
  /**
1677
+ * @public
1485
1678
  * <p>Information about which fields will be present in the layout, and information about the
1486
1679
  * order of the fields.</p>
1487
1680
  */
@@ -1492,10 +1685,12 @@ export interface CreateLayoutRequest {
1492
1685
  */
1493
1686
  export interface CreateLayoutResponse {
1494
1687
  /**
1688
+ * @public
1495
1689
  * <p>The unique identifier of the layout.</p>
1496
1690
  */
1497
1691
  layoutId: string | undefined;
1498
1692
  /**
1693
+ * @public
1499
1694
  * <p>The Amazon Resource Name (ARN) of the newly created layout.</p>
1500
1695
  */
1501
1696
  layoutArn: string | undefined;
@@ -1505,10 +1700,12 @@ export interface CreateLayoutResponse {
1505
1700
  */
1506
1701
  export interface GetLayoutRequest {
1507
1702
  /**
1703
+ * @public
1508
1704
  * <p>The unique identifier of the Cases domain. </p>
1509
1705
  */
1510
1706
  domainId: string | undefined;
1511
1707
  /**
1708
+ * @public
1512
1709
  * <p>The unique identifier of the layout.</p>
1513
1710
  */
1514
1711
  layoutId: string | undefined;
@@ -1518,23 +1715,28 @@ export interface GetLayoutRequest {
1518
1715
  */
1519
1716
  export interface GetLayoutResponse {
1520
1717
  /**
1718
+ * @public
1521
1719
  * <p>The unique identifier of the layout.</p>
1522
1720
  */
1523
1721
  layoutId: string | undefined;
1524
1722
  /**
1723
+ * @public
1525
1724
  * <p>The Amazon Resource Name (ARN) of the newly created layout.</p>
1526
1725
  */
1527
1726
  layoutArn: string | undefined;
1528
1727
  /**
1728
+ * @public
1529
1729
  * <p>The name of the layout. It must be unique.</p>
1530
1730
  */
1531
1731
  name: string | undefined;
1532
1732
  /**
1733
+ * @public
1533
1734
  * <p>Information about which fields will be present in the layout, the order of the fields, and
1534
1735
  * read-only attribute of the field. </p>
1535
1736
  */
1536
1737
  content: LayoutContent | undefined;
1537
1738
  /**
1739
+ * @public
1538
1740
  * <p>A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.</p>
1539
1741
  */
1540
1742
  tags?: Record<string, string>;
@@ -1544,14 +1746,17 @@ export interface GetLayoutResponse {
1544
1746
  */
1545
1747
  export interface ListLayoutsRequest {
1546
1748
  /**
1749
+ * @public
1547
1750
  * <p>The unique identifier of the Cases domain. </p>
1548
1751
  */
1549
1752
  domainId: string | undefined;
1550
1753
  /**
1754
+ * @public
1551
1755
  * <p>The maximum number of results to return per page.</p>
1552
1756
  */
1553
1757
  maxResults?: number;
1554
1758
  /**
1759
+ * @public
1555
1760
  * <p>The token for the next set of results. Use the value returned in the previous
1556
1761
  * response in the next request to retrieve the next set of results.</p>
1557
1762
  */
@@ -1563,14 +1768,17 @@ export interface ListLayoutsRequest {
1563
1768
  */
1564
1769
  export interface LayoutSummary {
1565
1770
  /**
1771
+ * @public
1566
1772
  * <p>The unique identifier for of the layout.</p>
1567
1773
  */
1568
1774
  layoutId: string | undefined;
1569
1775
  /**
1776
+ * @public
1570
1777
  * <p>The Amazon Resource Name (ARN) of the layout.</p>
1571
1778
  */
1572
1779
  layoutArn: string | undefined;
1573
1780
  /**
1781
+ * @public
1574
1782
  * <p>The name of the layout.</p>
1575
1783
  */
1576
1784
  name: string | undefined;
@@ -1580,10 +1788,12 @@ export interface LayoutSummary {
1580
1788
  */
1581
1789
  export interface ListLayoutsResponse {
1582
1790
  /**
1791
+ * @public
1583
1792
  * <p>The layouts for the domain.</p>
1584
1793
  */
1585
1794
  layouts: LayoutSummary[] | undefined;
1586
1795
  /**
1796
+ * @public
1587
1797
  * <p>The token for the next set of results. This is null if there are no more results to return.</p>
1588
1798
  */
1589
1799
  nextToken?: string;
@@ -1593,18 +1803,22 @@ export interface ListLayoutsResponse {
1593
1803
  */
1594
1804
  export interface UpdateLayoutRequest {
1595
1805
  /**
1806
+ * @public
1596
1807
  * <p>The unique identifier of the Cases domain. </p>
1597
1808
  */
1598
1809
  domainId: string | undefined;
1599
1810
  /**
1811
+ * @public
1600
1812
  * <p>The unique identifier of the layout.</p>
1601
1813
  */
1602
1814
  layoutId: string | undefined;
1603
1815
  /**
1816
+ * @public
1604
1817
  * <p>The name of the layout. It must be unique per domain.</p>
1605
1818
  */
1606
1819
  name?: string;
1607
1820
  /**
1821
+ * @public
1608
1822
  * <p>Information about which fields will be present in the layout, the order of the fields, and
1609
1823
  * a read-only attribute of the field. </p>
1610
1824
  */
@@ -1620,6 +1834,7 @@ export interface UpdateLayoutResponse {
1620
1834
  */
1621
1835
  export interface ListTagsForResourceRequest {
1622
1836
  /**
1837
+ * @public
1623
1838
  * <p>The Amazon Resource Name (ARN)</p>
1624
1839
  */
1625
1840
  arn: string | undefined;
@@ -1629,6 +1844,7 @@ export interface ListTagsForResourceRequest {
1629
1844
  */
1630
1845
  export interface ListTagsForResourceResponse {
1631
1846
  /**
1847
+ * @public
1632
1848
  * <p>A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.</p>
1633
1849
  */
1634
1850
  tags?: Record<string, string>;
@@ -1638,10 +1854,12 @@ export interface ListTagsForResourceResponse {
1638
1854
  */
1639
1855
  export interface TagResourceRequest {
1640
1856
  /**
1857
+ * @public
1641
1858
  * <p>The Amazon Resource Name (ARN)</p>
1642
1859
  */
1643
1860
  arn: string | undefined;
1644
1861
  /**
1862
+ * @public
1645
1863
  * <p>A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.</p>
1646
1864
  */
1647
1865
  tags: Record<string, string> | undefined;
@@ -1652,6 +1870,7 @@ export interface TagResourceRequest {
1652
1870
  */
1653
1871
  export interface LayoutConfiguration {
1654
1872
  /**
1873
+ * @public
1655
1874
  * <p> Unique identifier of a layout. </p>
1656
1875
  */
1657
1876
  defaultLayout?: string;
@@ -1662,6 +1881,7 @@ export interface LayoutConfiguration {
1662
1881
  */
1663
1882
  export interface RequiredField {
1664
1883
  /**
1884
+ * @public
1665
1885
  * <p>Unique identifier of a field.</p>
1666
1886
  */
1667
1887
  fieldId: string | undefined;
@@ -1683,27 +1903,33 @@ export type TemplateStatus = (typeof TemplateStatus)[keyof typeof TemplateStatus
1683
1903
  */
1684
1904
  export interface CreateTemplateRequest {
1685
1905
  /**
1906
+ * @public
1686
1907
  * <p>The unique identifier of the Cases domain. </p>
1687
1908
  */
1688
1909
  domainId: string | undefined;
1689
1910
  /**
1911
+ * @public
1690
1912
  * <p>A name for the template. It must be unique per domain.</p>
1691
1913
  */
1692
1914
  name: string | undefined;
1693
1915
  /**
1916
+ * @public
1694
1917
  * <p>A brief description of the template.</p>
1695
1918
  */
1696
1919
  description?: string;
1697
1920
  /**
1921
+ * @public
1698
1922
  * <p>Configuration of layouts associated to the template.</p>
1699
1923
  */
1700
1924
  layoutConfiguration?: LayoutConfiguration;
1701
1925
  /**
1926
+ * @public
1702
1927
  * <p>A list of fields that must contain a value for a case to be successfully created with this
1703
1928
  * template.</p>
1704
1929
  */
1705
1930
  requiredFields?: RequiredField[];
1706
1931
  /**
1932
+ * @public
1707
1933
  * <p>The status of the template.</p>
1708
1934
  */
1709
1935
  status?: TemplateStatus | string;
@@ -1713,10 +1939,12 @@ export interface CreateTemplateRequest {
1713
1939
  */
1714
1940
  export interface CreateTemplateResponse {
1715
1941
  /**
1942
+ * @public
1716
1943
  * <p>A unique identifier of a template.</p>
1717
1944
  */
1718
1945
  templateId: string | undefined;
1719
1946
  /**
1947
+ * @public
1720
1948
  * <p>The Amazon Resource Name (ARN) of the newly created template.</p>
1721
1949
  */
1722
1950
  templateArn: string | undefined;
@@ -1726,10 +1954,12 @@ export interface CreateTemplateResponse {
1726
1954
  */
1727
1955
  export interface GetTemplateRequest {
1728
1956
  /**
1957
+ * @public
1729
1958
  * <p>The unique identifier of the Cases domain. </p>
1730
1959
  */
1731
1960
  domainId: string | undefined;
1732
1961
  /**
1962
+ * @public
1733
1963
  * <p>A unique identifier of a template.</p>
1734
1964
  */
1735
1965
  templateId: string | undefined;
@@ -1739,35 +1969,43 @@ export interface GetTemplateRequest {
1739
1969
  */
1740
1970
  export interface GetTemplateResponse {
1741
1971
  /**
1972
+ * @public
1742
1973
  * <p>A unique identifier of a template.</p>
1743
1974
  */
1744
1975
  templateId: string | undefined;
1745
1976
  /**
1977
+ * @public
1746
1978
  * <p>The Amazon Resource Name (ARN) of the template.</p>
1747
1979
  */
1748
1980
  templateArn: string | undefined;
1749
1981
  /**
1982
+ * @public
1750
1983
  * <p>The name of the template.</p>
1751
1984
  */
1752
1985
  name: string | undefined;
1753
1986
  /**
1987
+ * @public
1754
1988
  * <p>A brief description of the template.</p>
1755
1989
  */
1756
1990
  description?: string;
1757
1991
  /**
1992
+ * @public
1758
1993
  * <p>Configuration of layouts associated to the template.</p>
1759
1994
  */
1760
1995
  layoutConfiguration?: LayoutConfiguration;
1761
1996
  /**
1997
+ * @public
1762
1998
  * <p>A list of fields that must contain a value for a case to be successfully created with this
1763
1999
  * template.</p>
1764
2000
  */
1765
2001
  requiredFields?: RequiredField[];
1766
2002
  /**
2003
+ * @public
1767
2004
  * <p>A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.</p>
1768
2005
  */
1769
2006
  tags?: Record<string, string>;
1770
2007
  /**
2008
+ * @public
1771
2009
  * <p>The status of the template.</p>
1772
2010
  */
1773
2011
  status: TemplateStatus | string | undefined;
@@ -1777,19 +2015,23 @@ export interface GetTemplateResponse {
1777
2015
  */
1778
2016
  export interface ListTemplatesRequest {
1779
2017
  /**
2018
+ * @public
1780
2019
  * <p>The unique identifier of the Cases domain. </p>
1781
2020
  */
1782
2021
  domainId: string | undefined;
1783
2022
  /**
2023
+ * @public
1784
2024
  * <p>The maximum number of results to return per page.</p>
1785
2025
  */
1786
2026
  maxResults?: number;
1787
2027
  /**
2028
+ * @public
1788
2029
  * <p>The token for the next set of results. Use the value returned in the previous
1789
2030
  * response in the next request to retrieve the next set of results.</p>
1790
2031
  */
1791
2032
  nextToken?: string;
1792
2033
  /**
2034
+ * @public
1793
2035
  * <p>A list of status values to filter on.</p>
1794
2036
  */
1795
2037
  status?: (TemplateStatus | string)[];
@@ -1800,18 +2042,22 @@ export interface ListTemplatesRequest {
1800
2042
  */
1801
2043
  export interface TemplateSummary {
1802
2044
  /**
2045
+ * @public
1803
2046
  * <p>The unique identifier for the template.</p>
1804
2047
  */
1805
2048
  templateId: string | undefined;
1806
2049
  /**
2050
+ * @public
1807
2051
  * <p>The Amazon Resource Name (ARN) of the template.</p>
1808
2052
  */
1809
2053
  templateArn: string | undefined;
1810
2054
  /**
2055
+ * @public
1811
2056
  * <p>The template name.</p>
1812
2057
  */
1813
2058
  name: string | undefined;
1814
2059
  /**
2060
+ * @public
1815
2061
  * <p>The status of the template.</p>
1816
2062
  */
1817
2063
  status: TemplateStatus | string | undefined;
@@ -1821,10 +2067,12 @@ export interface TemplateSummary {
1821
2067
  */
1822
2068
  export interface ListTemplatesResponse {
1823
2069
  /**
2070
+ * @public
1824
2071
  * <p>List of template summary objects.</p>
1825
2072
  */
1826
2073
  templates: TemplateSummary[] | undefined;
1827
2074
  /**
2075
+ * @public
1828
2076
  * <p>The token for the next set of results. This is null if there are no more results to return.</p>
1829
2077
  */
1830
2078
  nextToken?: string;
@@ -1834,31 +2082,38 @@ export interface ListTemplatesResponse {
1834
2082
  */
1835
2083
  export interface UpdateTemplateRequest {
1836
2084
  /**
2085
+ * @public
1837
2086
  * <p>The unique identifier of the Cases domain. </p>
1838
2087
  */
1839
2088
  domainId: string | undefined;
1840
2089
  /**
2090
+ * @public
1841
2091
  * <p>A unique identifier for the template.</p>
1842
2092
  */
1843
2093
  templateId: string | undefined;
1844
2094
  /**
2095
+ * @public
1845
2096
  * <p>The name of the template. It must be unique per domain.</p>
1846
2097
  */
1847
2098
  name?: string;
1848
2099
  /**
2100
+ * @public
1849
2101
  * <p>A brief description of the template.</p>
1850
2102
  */
1851
2103
  description?: string;
1852
2104
  /**
2105
+ * @public
1853
2106
  * <p>Configuration of layouts associated to the template.</p>
1854
2107
  */
1855
2108
  layoutConfiguration?: LayoutConfiguration;
1856
2109
  /**
2110
+ * @public
1857
2111
  * <p>A list of fields that must contain a value for a case to be successfully created with this
1858
2112
  * template.</p>
1859
2113
  */
1860
2114
  requiredFields?: RequiredField[];
1861
2115
  /**
2116
+ * @public
1862
2117
  * <p>The status of the template.</p>
1863
2118
  */
1864
2119
  status?: TemplateStatus | string;
@@ -1873,10 +2128,12 @@ export interface UpdateTemplateResponse {
1873
2128
  */
1874
2129
  export interface UntagResourceRequest {
1875
2130
  /**
2131
+ * @public
1876
2132
  * <p>The Amazon Resource Name (ARN)</p>
1877
2133
  */
1878
2134
  arn: string | undefined;
1879
2135
  /**
2136
+ * @public
1880
2137
  * <p>List of tag keys.</p>
1881
2138
  */
1882
2139
  tagKeys: string[] | undefined;
@@ -1891,6 +2148,7 @@ export type CaseFilter = CaseFilter.AndAllMember | CaseFilter.FieldMember | Case
1891
2148
  */
1892
2149
  export declare namespace CaseFilter {
1893
2150
  /**
2151
+ * @public
1894
2152
  * <p>A list of fields to filter on.</p>
1895
2153
  */
1896
2154
  interface FieldMember {
@@ -1901,6 +2159,7 @@ export declare namespace CaseFilter {
1901
2159
  $unknown?: never;
1902
2160
  }
1903
2161
  /**
2162
+ * @public
1904
2163
  * <p>A filter for cases. Only one value can be provided.</p>
1905
2164
  */
1906
2165
  interface NotMember {
@@ -1911,6 +2170,7 @@ export declare namespace CaseFilter {
1911
2170
  $unknown?: never;
1912
2171
  }
1913
2172
  /**
2173
+ * @public
1914
2174
  * <p>Provides "and all" filtering.</p>
1915
2175
  */
1916
2176
  interface AndAllMember {
@@ -1921,6 +2181,7 @@ export declare namespace CaseFilter {
1921
2181
  $unknown?: never;
1922
2182
  }
1923
2183
  /**
2184
+ * @public
1924
2185
  * <p>Provides "or all" filtering.</p>
1925
2186
  */
1926
2187
  interface OrAllMember {
@@ -1930,6 +2191,9 @@ export declare namespace CaseFilter {
1930
2191
  orAll: CaseFilter[];
1931
2192
  $unknown?: never;
1932
2193
  }
2194
+ /**
2195
+ * @public
2196
+ */
1933
2197
  interface $UnknownMember {
1934
2198
  field?: never;
1935
2199
  not?: never;
@@ -1951,33 +2215,40 @@ export declare namespace CaseFilter {
1951
2215
  */
1952
2216
  export interface SearchCasesRequest {
1953
2217
  /**
2218
+ * @public
1954
2219
  * <p>The unique identifier of the Cases domain. </p>
1955
2220
  */
1956
2221
  domainId: string | undefined;
1957
2222
  /**
2223
+ * @public
1958
2224
  * <p>The maximum number of cases to return. The current maximum supported value is 25. This is
1959
2225
  * also the default value when no other value is provided.</p>
1960
2226
  */
1961
2227
  maxResults?: number;
1962
2228
  /**
2229
+ * @public
1963
2230
  * <p>The token for the next set of results. Use the value returned in the previous
1964
2231
  * response in the next request to retrieve the next set of results.</p>
1965
2232
  */
1966
2233
  nextToken?: string;
1967
2234
  /**
2235
+ * @public
1968
2236
  * <p>A word or phrase used to perform a quick search.</p>
1969
2237
  */
1970
2238
  searchTerm?: string;
1971
2239
  /**
2240
+ * @public
1972
2241
  * <p>A list of filter objects.</p>
1973
2242
  */
1974
2243
  filter?: CaseFilter;
1975
2244
  /**
2245
+ * @public
1976
2246
  * <p>A list of sorts where each sort specifies a field and their sort order to be applied to
1977
2247
  * the results. </p>
1978
2248
  */
1979
2249
  sorts?: Sort[];
1980
2250
  /**
2251
+ * @public
1981
2252
  * <p>The list of field identifiers to be returned as part of the response.</p>
1982
2253
  */
1983
2254
  fields?: FieldIdentifier[];