aws-sdk-connectcases 1.49.0 → 1.51.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connectcases/client.rb +417 -306
- data/lib/aws-sdk-connectcases/client_api.rb +181 -121
- data/lib/aws-sdk-connectcases/types.rb +751 -594
- data/lib/aws-sdk-connectcases/waiters.rb +15 -0
- data/lib/aws-sdk-connectcases.rb +2 -1
- data/sig/client.rbs +242 -142
- data/sig/types.rbs +197 -129
- metadata +4 -3
data/sig/types.rbs
CHANGED
@@ -15,37 +15,37 @@ module Aws::ConnectCases
|
|
15
15
|
|
16
16
|
class AuditEvent
|
17
17
|
attr_accessor event_id: ::String
|
18
|
+
attr_accessor type: ("Case.Created" | "Case.Updated" | "RelatedItem.Created")
|
19
|
+
attr_accessor related_item_type: ("Contact" | "Comment" | "File" | "Sla" | "ConnectCase" | "Custom")
|
20
|
+
attr_accessor performed_time: ::Time
|
18
21
|
attr_accessor fields: ::Array[Types::AuditEventField]
|
19
22
|
attr_accessor performed_by: Types::AuditEventPerformedBy
|
20
|
-
attr_accessor performed_time: ::Time
|
21
|
-
attr_accessor related_item_type: ("Contact" | "Comment" | "File" | "Sla")
|
22
|
-
attr_accessor type: ("Case.Created" | "Case.Updated" | "RelatedItem.Created")
|
23
23
|
SENSITIVE: []
|
24
24
|
end
|
25
25
|
|
26
26
|
class AuditEventField
|
27
27
|
attr_accessor event_field_id: ::String
|
28
|
-
attr_accessor new_value: Types::AuditEventFieldValueUnion
|
29
28
|
attr_accessor old_value: Types::AuditEventFieldValueUnion
|
29
|
+
attr_accessor new_value: Types::AuditEventFieldValueUnion
|
30
30
|
SENSITIVE: []
|
31
31
|
end
|
32
32
|
|
33
33
|
class AuditEventFieldValueUnion
|
34
|
-
attr_accessor
|
34
|
+
attr_accessor string_value: ::String
|
35
35
|
attr_accessor double_value: ::Float
|
36
|
+
attr_accessor boolean_value: bool
|
36
37
|
attr_accessor empty_value: Types::EmptyFieldValue
|
37
|
-
attr_accessor string_value: ::String
|
38
38
|
attr_accessor user_arn_value: ::String
|
39
39
|
attr_accessor unknown: untyped
|
40
40
|
SENSITIVE: []
|
41
41
|
|
42
|
-
class
|
42
|
+
class StringValue < AuditEventFieldValueUnion
|
43
43
|
end
|
44
44
|
class DoubleValue < AuditEventFieldValueUnion
|
45
45
|
end
|
46
|
-
class
|
46
|
+
class BooleanValue < AuditEventFieldValueUnion
|
47
47
|
end
|
48
|
-
class
|
48
|
+
class EmptyValue < AuditEventFieldValueUnion
|
49
49
|
end
|
50
50
|
class UserArnValue < AuditEventFieldValueUnion
|
51
51
|
end
|
@@ -54,20 +54,20 @@ module Aws::ConnectCases
|
|
54
54
|
end
|
55
55
|
|
56
56
|
class AuditEventPerformedBy
|
57
|
-
attr_accessor iam_principal_arn: ::String
|
58
57
|
attr_accessor user: Types::UserUnion
|
58
|
+
attr_accessor iam_principal_arn: ::String
|
59
59
|
SENSITIVE: []
|
60
60
|
end
|
61
61
|
|
62
62
|
class BasicLayout
|
63
|
-
attr_accessor more_info: Types::LayoutSections
|
64
63
|
attr_accessor top_panel: Types::LayoutSections
|
64
|
+
attr_accessor more_info: Types::LayoutSections
|
65
65
|
SENSITIVE: []
|
66
66
|
end
|
67
67
|
|
68
68
|
class BatchGetCaseRuleRequest
|
69
|
-
attr_accessor case_rules: ::Array[Types::CaseRuleIdentifier]
|
70
69
|
attr_accessor domain_id: ::String
|
70
|
+
attr_accessor case_rules: ::Array[Types::CaseRuleIdentifier]
|
71
71
|
SENSITIVE: []
|
72
72
|
end
|
73
73
|
|
@@ -84,8 +84,8 @@ module Aws::ConnectCases
|
|
84
84
|
end
|
85
85
|
|
86
86
|
class BatchGetFieldResponse
|
87
|
-
attr_accessor errors: ::Array[Types::FieldError]
|
88
87
|
attr_accessor fields: ::Array[Types::GetFieldResponse]
|
88
|
+
attr_accessor errors: ::Array[Types::FieldError]
|
89
89
|
SENSITIVE: []
|
90
90
|
end
|
91
91
|
|
@@ -128,19 +128,19 @@ module Aws::ConnectCases
|
|
128
128
|
end
|
129
129
|
|
130
130
|
class CaseFilter
|
131
|
-
attr_accessor and_all: ::Array[Types::CaseFilter]
|
132
131
|
attr_accessor field: Types::FieldFilter
|
133
132
|
attr_accessor not: Types::CaseFilter
|
133
|
+
attr_accessor and_all: ::Array[Types::CaseFilter]
|
134
134
|
attr_accessor or_all: ::Array[Types::CaseFilter]
|
135
135
|
attr_accessor unknown: untyped
|
136
136
|
SENSITIVE: []
|
137
137
|
|
138
|
-
class AndAll < CaseFilter
|
139
|
-
end
|
140
138
|
class Field < CaseFilter
|
141
139
|
end
|
142
140
|
class Not < CaseFilter
|
143
141
|
end
|
142
|
+
class AndAll < CaseFilter
|
143
|
+
end
|
144
144
|
class OrAll < CaseFilter
|
145
145
|
end
|
146
146
|
class Unknown < CaseFilter
|
@@ -159,8 +159,8 @@ module Aws::ConnectCases
|
|
159
159
|
end
|
160
160
|
|
161
161
|
class CaseRuleError
|
162
|
-
attr_accessor error_code: ::String
|
163
162
|
attr_accessor id: ::String
|
163
|
+
attr_accessor error_code: ::String
|
164
164
|
attr_accessor message: ::String
|
165
165
|
SENSITIVE: []
|
166
166
|
end
|
@@ -171,11 +171,11 @@ module Aws::ConnectCases
|
|
171
171
|
end
|
172
172
|
|
173
173
|
class CaseRuleSummary
|
174
|
-
attr_accessor case_rule_arn: ::String
|
175
174
|
attr_accessor case_rule_id: ::String
|
176
|
-
attr_accessor description: ::String
|
177
175
|
attr_accessor name: ::String
|
176
|
+
attr_accessor case_rule_arn: ::String
|
178
177
|
attr_accessor rule_type: ("Required")
|
178
|
+
attr_accessor description: ::String
|
179
179
|
SENSITIVE: []
|
180
180
|
end
|
181
181
|
|
@@ -199,15 +199,30 @@ module Aws::ConnectCases
|
|
199
199
|
SENSITIVE: []
|
200
200
|
end
|
201
201
|
|
202
|
+
class ConnectCaseContent
|
203
|
+
attr_accessor case_id: ::String
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class ConnectCaseFilter
|
208
|
+
attr_accessor case_id: ::String
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class ConnectCaseInputContent
|
213
|
+
attr_accessor case_id: ::String
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
202
217
|
class Contact
|
203
218
|
attr_accessor contact_arn: ::String
|
204
219
|
SENSITIVE: []
|
205
220
|
end
|
206
221
|
|
207
222
|
class ContactContent
|
223
|
+
attr_accessor contact_arn: ::String
|
208
224
|
attr_accessor channel: ::String
|
209
225
|
attr_accessor connected_to_system_time: ::Time
|
210
|
-
attr_accessor contact_arn: ::String
|
211
226
|
SENSITIVE: []
|
212
227
|
end
|
213
228
|
|
@@ -218,31 +233,31 @@ module Aws::ConnectCases
|
|
218
233
|
end
|
219
234
|
|
220
235
|
class CreateCaseRequest
|
221
|
-
attr_accessor client_token: ::String
|
222
236
|
attr_accessor domain_id: ::String
|
237
|
+
attr_accessor template_id: ::String
|
223
238
|
attr_accessor fields: ::Array[Types::FieldValue]
|
239
|
+
attr_accessor client_token: ::String
|
224
240
|
attr_accessor performed_by: Types::UserUnion
|
225
|
-
attr_accessor template_id: ::String
|
226
241
|
SENSITIVE: []
|
227
242
|
end
|
228
243
|
|
229
244
|
class CreateCaseResponse
|
230
|
-
attr_accessor case_arn: ::String
|
231
245
|
attr_accessor case_id: ::String
|
246
|
+
attr_accessor case_arn: ::String
|
232
247
|
SENSITIVE: []
|
233
248
|
end
|
234
249
|
|
235
250
|
class CreateCaseRuleRequest
|
236
|
-
attr_accessor description: ::String
|
237
251
|
attr_accessor domain_id: ::String
|
238
252
|
attr_accessor name: ::String
|
253
|
+
attr_accessor description: ::String
|
239
254
|
attr_accessor rule: Types::CaseRuleDetails
|
240
255
|
SENSITIVE: []
|
241
256
|
end
|
242
257
|
|
243
258
|
class CreateCaseRuleResponse
|
244
|
-
attr_accessor case_rule_arn: ::String
|
245
259
|
attr_accessor case_rule_id: ::String
|
260
|
+
attr_accessor case_rule_arn: ::String
|
246
261
|
SENSITIVE: []
|
247
262
|
end
|
248
263
|
|
@@ -252,74 +267,109 @@ module Aws::ConnectCases
|
|
252
267
|
end
|
253
268
|
|
254
269
|
class CreateDomainResponse
|
255
|
-
attr_accessor domain_arn: ::String
|
256
270
|
attr_accessor domain_id: ::String
|
271
|
+
attr_accessor domain_arn: ::String
|
257
272
|
attr_accessor domain_status: ("Active" | "CreationInProgress" | "CreationFailed")
|
258
273
|
SENSITIVE: []
|
259
274
|
end
|
260
275
|
|
261
276
|
class CreateFieldRequest
|
262
|
-
attr_accessor description: ::String
|
263
277
|
attr_accessor domain_id: ::String
|
264
278
|
attr_accessor name: ::String
|
265
279
|
attr_accessor type: ("Text" | "Number" | "Boolean" | "DateTime" | "SingleSelect" | "Url" | "User")
|
280
|
+
attr_accessor description: ::String
|
266
281
|
SENSITIVE: []
|
267
282
|
end
|
268
283
|
|
269
284
|
class CreateFieldResponse
|
270
|
-
attr_accessor field_arn: ::String
|
271
285
|
attr_accessor field_id: ::String
|
286
|
+
attr_accessor field_arn: ::String
|
272
287
|
SENSITIVE: []
|
273
288
|
end
|
274
289
|
|
275
290
|
class CreateLayoutRequest
|
276
|
-
attr_accessor content: Types::LayoutContent
|
277
291
|
attr_accessor domain_id: ::String
|
278
292
|
attr_accessor name: ::String
|
293
|
+
attr_accessor content: Types::LayoutContent
|
279
294
|
SENSITIVE: []
|
280
295
|
end
|
281
296
|
|
282
297
|
class CreateLayoutResponse
|
283
|
-
attr_accessor layout_arn: ::String
|
284
298
|
attr_accessor layout_id: ::String
|
299
|
+
attr_accessor layout_arn: ::String
|
285
300
|
SENSITIVE: []
|
286
301
|
end
|
287
302
|
|
288
303
|
class CreateRelatedItemRequest
|
304
|
+
attr_accessor domain_id: ::String
|
289
305
|
attr_accessor case_id: ::String
|
306
|
+
attr_accessor type: ("Contact" | "Comment" | "File" | "Sla" | "ConnectCase" | "Custom")
|
290
307
|
attr_accessor content: Types::RelatedItemInputContent
|
291
|
-
attr_accessor domain_id: ::String
|
292
308
|
attr_accessor performed_by: Types::UserUnion
|
293
|
-
attr_accessor type: ("Contact" | "Comment" | "File" | "Sla")
|
294
309
|
SENSITIVE: []
|
295
310
|
end
|
296
311
|
|
297
312
|
class CreateRelatedItemResponse
|
298
|
-
attr_accessor related_item_arn: ::String
|
299
313
|
attr_accessor related_item_id: ::String
|
314
|
+
attr_accessor related_item_arn: ::String
|
300
315
|
SENSITIVE: []
|
301
316
|
end
|
302
317
|
|
303
318
|
class CreateTemplateRequest
|
304
|
-
attr_accessor description: ::String
|
305
319
|
attr_accessor domain_id: ::String
|
306
|
-
attr_accessor layout_configuration: Types::LayoutConfiguration
|
307
320
|
attr_accessor name: ::String
|
321
|
+
attr_accessor description: ::String
|
322
|
+
attr_accessor layout_configuration: Types::LayoutConfiguration
|
308
323
|
attr_accessor required_fields: ::Array[Types::RequiredField]
|
309
|
-
attr_accessor rules: ::Array[Types::TemplateRule]
|
310
324
|
attr_accessor status: ("Active" | "Inactive")
|
325
|
+
attr_accessor rules: ::Array[Types::TemplateRule]
|
311
326
|
SENSITIVE: []
|
312
327
|
end
|
313
328
|
|
314
329
|
class CreateTemplateResponse
|
315
|
-
attr_accessor template_arn: ::String
|
316
330
|
attr_accessor template_id: ::String
|
331
|
+
attr_accessor template_arn: ::String
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class CustomContent
|
336
|
+
attr_accessor fields: ::Array[Types::FieldValue]
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class CustomFieldsFilter
|
341
|
+
attr_accessor field: Types::FieldFilter
|
342
|
+
attr_accessor not: Types::CustomFieldsFilter
|
343
|
+
attr_accessor and_all: ::Array[Types::CustomFieldsFilter]
|
344
|
+
attr_accessor or_all: ::Array[Types::CustomFieldsFilter]
|
345
|
+
attr_accessor unknown: untyped
|
346
|
+
SENSITIVE: []
|
347
|
+
|
348
|
+
class Field < CustomFieldsFilter
|
349
|
+
end
|
350
|
+
class Not < CustomFieldsFilter
|
351
|
+
end
|
352
|
+
class AndAll < CustomFieldsFilter
|
353
|
+
end
|
354
|
+
class OrAll < CustomFieldsFilter
|
355
|
+
end
|
356
|
+
class Unknown < CustomFieldsFilter
|
357
|
+
end
|
358
|
+
end
|
359
|
+
|
360
|
+
class CustomFilter
|
361
|
+
attr_accessor fields: Types::CustomFieldsFilter
|
362
|
+
SENSITIVE: []
|
363
|
+
end
|
364
|
+
|
365
|
+
class CustomInputContent
|
366
|
+
attr_accessor fields: ::Array[Types::FieldValue]
|
317
367
|
SENSITIVE: []
|
318
368
|
end
|
319
369
|
|
320
370
|
class DeleteCaseRequest
|
321
|
-
attr_accessor case_id: ::String
|
322
371
|
attr_accessor domain_id: ::String
|
372
|
+
attr_accessor case_id: ::String
|
323
373
|
SENSITIVE: []
|
324
374
|
end
|
325
375
|
|
@@ -327,8 +377,8 @@ module Aws::ConnectCases
|
|
327
377
|
end
|
328
378
|
|
329
379
|
class DeleteCaseRuleRequest
|
330
|
-
attr_accessor case_rule_id: ::String
|
331
380
|
attr_accessor domain_id: ::String
|
381
|
+
attr_accessor case_rule_id: ::String
|
332
382
|
SENSITIVE: []
|
333
383
|
end
|
334
384
|
|
@@ -362,8 +412,8 @@ module Aws::ConnectCases
|
|
362
412
|
end
|
363
413
|
|
364
414
|
class DeleteRelatedItemRequest
|
365
|
-
attr_accessor case_id: ::String
|
366
415
|
attr_accessor domain_id: ::String
|
416
|
+
attr_accessor case_id: ::String
|
367
417
|
attr_accessor related_item_id: ::String
|
368
418
|
SENSITIVE: []
|
369
419
|
end
|
@@ -381,8 +431,8 @@ module Aws::ConnectCases
|
|
381
431
|
end
|
382
432
|
|
383
433
|
class DomainSummary
|
384
|
-
attr_accessor domain_arn: ::String
|
385
434
|
attr_accessor domain_id: ::String
|
435
|
+
attr_accessor domain_arn: ::String
|
386
436
|
attr_accessor name: ::String
|
387
437
|
SENSITIVE: []
|
388
438
|
end
|
@@ -406,15 +456,15 @@ module Aws::ConnectCases
|
|
406
456
|
end
|
407
457
|
|
408
458
|
class FieldError
|
409
|
-
attr_accessor error_code: ::String
|
410
459
|
attr_accessor id: ::String
|
460
|
+
attr_accessor error_code: ::String
|
411
461
|
attr_accessor message: ::String
|
412
462
|
SENSITIVE: []
|
413
463
|
end
|
414
464
|
|
415
465
|
class FieldFilter
|
416
|
-
attr_accessor contains: Types::FieldValue
|
417
466
|
attr_accessor equal_to: Types::FieldValue
|
467
|
+
attr_accessor contains: Types::FieldValue
|
418
468
|
attr_accessor greater_than: Types::FieldValue
|
419
469
|
attr_accessor greater_than_or_equal_to: Types::FieldValue
|
420
470
|
attr_accessor less_than: Types::FieldValue
|
@@ -422,10 +472,10 @@ module Aws::ConnectCases
|
|
422
472
|
attr_accessor unknown: untyped
|
423
473
|
SENSITIVE: []
|
424
474
|
|
425
|
-
class Contains < FieldFilter
|
426
|
-
end
|
427
475
|
class EqualTo < FieldFilter
|
428
476
|
end
|
477
|
+
class Contains < FieldFilter
|
478
|
+
end
|
429
479
|
class GreaterThan < FieldFilter
|
430
480
|
end
|
431
481
|
class GreaterThanOrEqualTo < FieldFilter
|
@@ -439,8 +489,8 @@ module Aws::ConnectCases
|
|
439
489
|
end
|
440
490
|
|
441
491
|
class FieldGroup
|
442
|
-
attr_accessor fields: ::Array[Types::FieldItem]
|
443
492
|
attr_accessor name: ::String
|
493
|
+
attr_accessor fields: ::Array[Types::FieldItem]
|
444
494
|
SENSITIVE: []
|
445
495
|
end
|
446
496
|
|
@@ -455,25 +505,25 @@ module Aws::ConnectCases
|
|
455
505
|
end
|
456
506
|
|
457
507
|
class FieldOption
|
458
|
-
attr_accessor active: bool
|
459
508
|
attr_accessor name: ::String
|
460
509
|
attr_accessor value: ::String
|
510
|
+
attr_accessor active: bool
|
461
511
|
SENSITIVE: []
|
462
512
|
end
|
463
513
|
|
464
514
|
class FieldOptionError
|
465
|
-
attr_accessor error_code: ::String
|
466
515
|
attr_accessor message: ::String
|
516
|
+
attr_accessor error_code: ::String
|
467
517
|
attr_accessor value: ::String
|
468
518
|
SENSITIVE: []
|
469
519
|
end
|
470
520
|
|
471
521
|
class FieldSummary
|
472
|
-
attr_accessor field_arn: ::String
|
473
522
|
attr_accessor field_id: ::String
|
523
|
+
attr_accessor field_arn: ::String
|
474
524
|
attr_accessor name: ::String
|
475
|
-
attr_accessor namespace: ("System" | "Custom")
|
476
525
|
attr_accessor type: ("Text" | "Number" | "Boolean" | "DateTime" | "SingleSelect" | "Url" | "User")
|
526
|
+
attr_accessor namespace: ("System" | "Custom")
|
477
527
|
SENSITIVE: []
|
478
528
|
end
|
479
529
|
|
@@ -484,21 +534,21 @@ module Aws::ConnectCases
|
|
484
534
|
end
|
485
535
|
|
486
536
|
class FieldValueUnion
|
487
|
-
attr_accessor
|
537
|
+
attr_accessor string_value: ::String
|
488
538
|
attr_accessor double_value: ::Float
|
539
|
+
attr_accessor boolean_value: bool
|
489
540
|
attr_accessor empty_value: Types::EmptyFieldValue
|
490
|
-
attr_accessor string_value: ::String
|
491
541
|
attr_accessor user_arn_value: ::String
|
492
542
|
attr_accessor unknown: untyped
|
493
543
|
SENSITIVE: []
|
494
544
|
|
495
|
-
class
|
545
|
+
class StringValue < FieldValueUnion
|
496
546
|
end
|
497
547
|
class DoubleValue < FieldValueUnion
|
498
548
|
end
|
499
|
-
class
|
549
|
+
class BooleanValue < FieldValueUnion
|
500
550
|
end
|
501
|
-
class
|
551
|
+
class EmptyValue < FieldValueUnion
|
502
552
|
end
|
503
553
|
class UserArnValue < FieldValueUnion
|
504
554
|
end
|
@@ -525,8 +575,8 @@ module Aws::ConnectCases
|
|
525
575
|
end
|
526
576
|
|
527
577
|
class GetCaseAuditEventsResponse
|
528
|
-
attr_accessor audit_events: ::Array[Types::AuditEvent]
|
529
578
|
attr_accessor next_token: ::String
|
579
|
+
attr_accessor audit_events: ::Array[Types::AuditEvent]
|
530
580
|
SENSITIVE: []
|
531
581
|
end
|
532
582
|
|
@@ -550,21 +600,21 @@ module Aws::ConnectCases
|
|
550
600
|
|
551
601
|
class GetCaseResponse
|
552
602
|
attr_accessor fields: ::Array[Types::FieldValue]
|
603
|
+
attr_accessor template_id: ::String
|
553
604
|
attr_accessor next_token: ::String
|
554
605
|
attr_accessor tags: ::Hash[::String, ::String]
|
555
|
-
attr_accessor template_id: ::String
|
556
606
|
SENSITIVE: []
|
557
607
|
end
|
558
608
|
|
559
609
|
class GetCaseRuleResponse
|
560
|
-
attr_accessor case_rule_arn: ::String
|
561
610
|
attr_accessor case_rule_id: ::String
|
562
|
-
attr_accessor created_time: ::Time
|
563
|
-
attr_accessor deleted: bool
|
564
|
-
attr_accessor description: ::String
|
565
|
-
attr_accessor last_modified_time: ::Time
|
566
611
|
attr_accessor name: ::String
|
612
|
+
attr_accessor case_rule_arn: ::String
|
567
613
|
attr_accessor rule: Types::CaseRuleDetails
|
614
|
+
attr_accessor description: ::String
|
615
|
+
attr_accessor deleted: bool
|
616
|
+
attr_accessor created_time: ::Time
|
617
|
+
attr_accessor last_modified_time: ::Time
|
568
618
|
attr_accessor tags: ::Hash[::String, ::String]
|
569
619
|
SENSITIVE: []
|
570
620
|
end
|
@@ -575,26 +625,26 @@ module Aws::ConnectCases
|
|
575
625
|
end
|
576
626
|
|
577
627
|
class GetDomainResponse
|
578
|
-
attr_accessor created_time: ::Time
|
579
|
-
attr_accessor domain_arn: ::String
|
580
628
|
attr_accessor domain_id: ::String
|
581
|
-
attr_accessor
|
629
|
+
attr_accessor domain_arn: ::String
|
582
630
|
attr_accessor name: ::String
|
631
|
+
attr_accessor created_time: ::Time
|
632
|
+
attr_accessor domain_status: ("Active" | "CreationInProgress" | "CreationFailed")
|
583
633
|
attr_accessor tags: ::Hash[::String, ::String]
|
584
634
|
SENSITIVE: []
|
585
635
|
end
|
586
636
|
|
587
637
|
class GetFieldResponse
|
588
|
-
attr_accessor created_time: ::Time
|
589
|
-
attr_accessor deleted: bool
|
590
|
-
attr_accessor description: ::String
|
591
|
-
attr_accessor field_arn: ::String
|
592
638
|
attr_accessor field_id: ::String
|
593
|
-
attr_accessor last_modified_time: ::Time
|
594
639
|
attr_accessor name: ::String
|
640
|
+
attr_accessor field_arn: ::String
|
641
|
+
attr_accessor description: ::String
|
642
|
+
attr_accessor type: ("Text" | "Number" | "Boolean" | "DateTime" | "SingleSelect" | "Url" | "User")
|
595
643
|
attr_accessor namespace: ("System" | "Custom")
|
596
644
|
attr_accessor tags: ::Hash[::String, ::String]
|
597
|
-
attr_accessor
|
645
|
+
attr_accessor deleted: bool
|
646
|
+
attr_accessor created_time: ::Time
|
647
|
+
attr_accessor last_modified_time: ::Time
|
598
648
|
SENSITIVE: []
|
599
649
|
end
|
600
650
|
|
@@ -605,14 +655,14 @@ module Aws::ConnectCases
|
|
605
655
|
end
|
606
656
|
|
607
657
|
class GetLayoutResponse
|
608
|
-
attr_accessor content: Types::LayoutContent
|
609
|
-
attr_accessor created_time: ::Time
|
610
|
-
attr_accessor deleted: bool
|
611
|
-
attr_accessor last_modified_time: ::Time
|
612
|
-
attr_accessor layout_arn: ::String
|
613
658
|
attr_accessor layout_id: ::String
|
659
|
+
attr_accessor layout_arn: ::String
|
614
660
|
attr_accessor name: ::String
|
661
|
+
attr_accessor content: Types::LayoutContent
|
615
662
|
attr_accessor tags: ::Hash[::String, ::String]
|
663
|
+
attr_accessor deleted: bool
|
664
|
+
attr_accessor created_time: ::Time
|
665
|
+
attr_accessor last_modified_time: ::Time
|
616
666
|
SENSITIVE: []
|
617
667
|
end
|
618
668
|
|
@@ -623,18 +673,18 @@ module Aws::ConnectCases
|
|
623
673
|
end
|
624
674
|
|
625
675
|
class GetTemplateResponse
|
626
|
-
attr_accessor
|
627
|
-
attr_accessor
|
676
|
+
attr_accessor template_id: ::String
|
677
|
+
attr_accessor template_arn: ::String
|
678
|
+
attr_accessor name: ::String
|
628
679
|
attr_accessor description: ::String
|
629
|
-
attr_accessor last_modified_time: ::Time
|
630
680
|
attr_accessor layout_configuration: Types::LayoutConfiguration
|
631
|
-
attr_accessor name: ::String
|
632
681
|
attr_accessor required_fields: ::Array[Types::RequiredField]
|
633
|
-
attr_accessor rules: ::Array[Types::TemplateRule]
|
634
|
-
attr_accessor status: ("Active" | "Inactive")
|
635
682
|
attr_accessor tags: ::Hash[::String, ::String]
|
636
|
-
attr_accessor
|
637
|
-
attr_accessor
|
683
|
+
attr_accessor status: ("Active" | "Inactive")
|
684
|
+
attr_accessor deleted: bool
|
685
|
+
attr_accessor created_time: ::Time
|
686
|
+
attr_accessor last_modified_time: ::Time
|
687
|
+
attr_accessor rules: ::Array[Types::TemplateRule]
|
638
688
|
SENSITIVE: []
|
639
689
|
end
|
640
690
|
|
@@ -666,8 +716,8 @@ module Aws::ConnectCases
|
|
666
716
|
end
|
667
717
|
|
668
718
|
class LayoutSummary
|
669
|
-
attr_accessor layout_arn: ::String
|
670
719
|
attr_accessor layout_id: ::String
|
720
|
+
attr_accessor layout_arn: ::String
|
671
721
|
attr_accessor name: ::String
|
672
722
|
SENSITIVE: []
|
673
723
|
end
|
@@ -686,8 +736,8 @@ module Aws::ConnectCases
|
|
686
736
|
end
|
687
737
|
|
688
738
|
class ListCasesForContactRequest
|
689
|
-
attr_accessor contact_arn: ::String
|
690
739
|
attr_accessor domain_id: ::String
|
740
|
+
attr_accessor contact_arn: ::String
|
691
741
|
attr_accessor max_results: ::Integer
|
692
742
|
attr_accessor next_token: ::String
|
693
743
|
SENSITIVE: []
|
@@ -721,8 +771,8 @@ module Aws::ConnectCases
|
|
721
771
|
end
|
722
772
|
|
723
773
|
class ListFieldOptionsResponse
|
724
|
-
attr_accessor next_token: ::String
|
725
774
|
attr_accessor options: ::Array[Types::FieldOption]
|
775
|
+
attr_accessor next_token: ::String
|
726
776
|
SENSITIVE: []
|
727
777
|
end
|
728
778
|
|
@@ -771,8 +821,8 @@ module Aws::ConnectCases
|
|
771
821
|
end
|
772
822
|
|
773
823
|
class ListTemplatesResponse
|
774
|
-
attr_accessor next_token: ::String
|
775
824
|
attr_accessor templates: ::Array[Types::TemplateSummary]
|
825
|
+
attr_accessor next_token: ::String
|
776
826
|
SENSITIVE: []
|
777
827
|
end
|
778
828
|
|
@@ -788,21 +838,21 @@ module Aws::ConnectCases
|
|
788
838
|
end
|
789
839
|
|
790
840
|
class OperandTwo
|
841
|
+
attr_accessor string_value: ::String
|
791
842
|
attr_accessor boolean_value: bool
|
792
843
|
attr_accessor double_value: ::Float
|
793
844
|
attr_accessor empty_value: Types::EmptyOperandValue
|
794
|
-
attr_accessor string_value: ::String
|
795
845
|
attr_accessor unknown: untyped
|
796
846
|
SENSITIVE: []
|
797
847
|
|
848
|
+
class StringValue < OperandTwo
|
849
|
+
end
|
798
850
|
class BooleanValue < OperandTwo
|
799
851
|
end
|
800
852
|
class DoubleValue < OperandTwo
|
801
853
|
end
|
802
854
|
class EmptyValue < OperandTwo
|
803
855
|
end
|
804
|
-
class StringValue < OperandTwo
|
805
|
-
end
|
806
856
|
class Unknown < OperandTwo
|
807
857
|
end
|
808
858
|
end
|
@@ -817,21 +867,27 @@ module Aws::ConnectCases
|
|
817
867
|
end
|
818
868
|
|
819
869
|
class RelatedItemContent
|
820
|
-
attr_accessor comment: Types::CommentContent
|
821
870
|
attr_accessor contact: Types::ContactContent
|
871
|
+
attr_accessor comment: Types::CommentContent
|
822
872
|
attr_accessor file: Types::FileContent
|
823
873
|
attr_accessor sla: Types::SlaContent
|
874
|
+
attr_accessor connect_case: Types::ConnectCaseContent
|
875
|
+
attr_accessor custom: Types::CustomContent
|
824
876
|
attr_accessor unknown: untyped
|
825
877
|
SENSITIVE: []
|
826
878
|
|
827
|
-
class Comment < RelatedItemContent
|
828
|
-
end
|
829
879
|
class Contact < RelatedItemContent
|
830
880
|
end
|
881
|
+
class Comment < RelatedItemContent
|
882
|
+
end
|
831
883
|
class File < RelatedItemContent
|
832
884
|
end
|
833
885
|
class Sla < RelatedItemContent
|
834
886
|
end
|
887
|
+
class ConnectCase < RelatedItemContent
|
888
|
+
end
|
889
|
+
class Custom < RelatedItemContent
|
890
|
+
end
|
835
891
|
class Unknown < RelatedItemContent
|
836
892
|
end
|
837
893
|
end
|
@@ -842,48 +898,60 @@ module Aws::ConnectCases
|
|
842
898
|
end
|
843
899
|
|
844
900
|
class RelatedItemInputContent
|
845
|
-
attr_accessor comment: Types::CommentContent
|
846
901
|
attr_accessor contact: Types::Contact
|
902
|
+
attr_accessor comment: Types::CommentContent
|
847
903
|
attr_accessor file: Types::FileContent
|
848
904
|
attr_accessor sla: Types::SlaInputContent
|
905
|
+
attr_accessor connect_case: Types::ConnectCaseInputContent
|
906
|
+
attr_accessor custom: Types::CustomInputContent
|
849
907
|
attr_accessor unknown: untyped
|
850
908
|
SENSITIVE: []
|
851
909
|
|
852
|
-
class Comment < RelatedItemInputContent
|
853
|
-
end
|
854
910
|
class Contact < RelatedItemInputContent
|
855
911
|
end
|
912
|
+
class Comment < RelatedItemInputContent
|
913
|
+
end
|
856
914
|
class File < RelatedItemInputContent
|
857
915
|
end
|
858
916
|
class Sla < RelatedItemInputContent
|
859
917
|
end
|
918
|
+
class ConnectCase < RelatedItemInputContent
|
919
|
+
end
|
920
|
+
class Custom < RelatedItemInputContent
|
921
|
+
end
|
860
922
|
class Unknown < RelatedItemInputContent
|
861
923
|
end
|
862
924
|
end
|
863
925
|
|
864
926
|
class RelatedItemTypeFilter
|
865
|
-
attr_accessor comment: Types::CommentFilter
|
866
927
|
attr_accessor contact: Types::ContactFilter
|
928
|
+
attr_accessor comment: Types::CommentFilter
|
867
929
|
attr_accessor file: Types::FileFilter
|
868
930
|
attr_accessor sla: Types::SlaFilter
|
931
|
+
attr_accessor connect_case: Types::ConnectCaseFilter
|
932
|
+
attr_accessor custom: Types::CustomFilter
|
869
933
|
attr_accessor unknown: untyped
|
870
934
|
SENSITIVE: []
|
871
935
|
|
872
|
-
class Comment < RelatedItemTypeFilter
|
873
|
-
end
|
874
936
|
class Contact < RelatedItemTypeFilter
|
875
937
|
end
|
938
|
+
class Comment < RelatedItemTypeFilter
|
939
|
+
end
|
876
940
|
class File < RelatedItemTypeFilter
|
877
941
|
end
|
878
942
|
class Sla < RelatedItemTypeFilter
|
879
943
|
end
|
944
|
+
class ConnectCase < RelatedItemTypeFilter
|
945
|
+
end
|
946
|
+
class Custom < RelatedItemTypeFilter
|
947
|
+
end
|
880
948
|
class Unknown < RelatedItemTypeFilter
|
881
949
|
end
|
882
950
|
end
|
883
951
|
|
884
952
|
class RequiredCaseRule
|
885
|
-
attr_accessor conditions: ::Array[Types::BooleanCondition]
|
886
953
|
attr_accessor default_value: bool
|
954
|
+
attr_accessor conditions: ::Array[Types::BooleanCondition]
|
887
955
|
SENSITIVE: []
|
888
956
|
end
|
889
957
|
|
@@ -901,35 +969,35 @@ module Aws::ConnectCases
|
|
901
969
|
|
902
970
|
class SearchCasesRequest
|
903
971
|
attr_accessor domain_id: ::String
|
904
|
-
attr_accessor fields: ::Array[Types::FieldIdentifier]
|
905
|
-
attr_accessor filter: Types::CaseFilter
|
906
972
|
attr_accessor max_results: ::Integer
|
907
973
|
attr_accessor next_token: ::String
|
908
974
|
attr_accessor search_term: ::String
|
975
|
+
attr_accessor filter: Types::CaseFilter
|
909
976
|
attr_accessor sorts: ::Array[Types::Sort]
|
977
|
+
attr_accessor fields: ::Array[Types::FieldIdentifier]
|
910
978
|
SENSITIVE: []
|
911
979
|
end
|
912
980
|
|
913
981
|
class SearchCasesResponse
|
914
|
-
attr_accessor cases: ::Array[Types::SearchCasesResponseItem]
|
915
982
|
attr_accessor next_token: ::String
|
983
|
+
attr_accessor cases: ::Array[Types::SearchCasesResponseItem]
|
916
984
|
SENSITIVE: []
|
917
985
|
end
|
918
986
|
|
919
987
|
class SearchCasesResponseItem
|
920
988
|
attr_accessor case_id: ::String
|
989
|
+
attr_accessor template_id: ::String
|
921
990
|
attr_accessor fields: ::Array[Types::FieldValue]
|
922
991
|
attr_accessor tags: ::Hash[::String, ::String]
|
923
|
-
attr_accessor template_id: ::String
|
924
992
|
SENSITIVE: []
|
925
993
|
end
|
926
994
|
|
927
995
|
class SearchRelatedItemsRequest
|
928
|
-
attr_accessor case_id: ::String
|
929
996
|
attr_accessor domain_id: ::String
|
930
|
-
attr_accessor
|
997
|
+
attr_accessor case_id: ::String
|
931
998
|
attr_accessor max_results: ::Integer
|
932
999
|
attr_accessor next_token: ::String
|
1000
|
+
attr_accessor filters: ::Array[Types::RelatedItemTypeFilter]
|
933
1001
|
SENSITIVE: []
|
934
1002
|
end
|
935
1003
|
|
@@ -940,12 +1008,12 @@ module Aws::ConnectCases
|
|
940
1008
|
end
|
941
1009
|
|
942
1010
|
class SearchRelatedItemsResponseItem
|
1011
|
+
attr_accessor related_item_id: ::String
|
1012
|
+
attr_accessor type: ("Contact" | "Comment" | "File" | "Sla" | "ConnectCase" | "Custom")
|
943
1013
|
attr_accessor association_time: ::Time
|
944
1014
|
attr_accessor content: Types::RelatedItemContent
|
945
|
-
attr_accessor performed_by: Types::UserUnion
|
946
|
-
attr_accessor related_item_id: ::String
|
947
1015
|
attr_accessor tags: ::Hash[::String, ::String]
|
948
|
-
attr_accessor
|
1016
|
+
attr_accessor performed_by: Types::UserUnion
|
949
1017
|
SENSITIVE: []
|
950
1018
|
end
|
951
1019
|
|
@@ -966,13 +1034,13 @@ module Aws::ConnectCases
|
|
966
1034
|
end
|
967
1035
|
|
968
1036
|
class SlaConfiguration
|
969
|
-
attr_accessor completion_time: ::Time
|
970
|
-
attr_accessor field_id: ::String
|
971
1037
|
attr_accessor name: ::String
|
1038
|
+
attr_accessor type: ("CaseField")
|
972
1039
|
attr_accessor status: ("Active" | "Overdue" | "Met" | "NotMet")
|
1040
|
+
attr_accessor field_id: ::String
|
973
1041
|
attr_accessor target_field_values: ::Array[Types::FieldValueUnion]
|
974
1042
|
attr_accessor target_time: ::Time
|
975
|
-
attr_accessor
|
1043
|
+
attr_accessor completion_time: ::Time
|
976
1044
|
SENSITIVE: [:name]
|
977
1045
|
end
|
978
1046
|
|
@@ -988,11 +1056,11 @@ module Aws::ConnectCases
|
|
988
1056
|
end
|
989
1057
|
|
990
1058
|
class SlaInputConfiguration
|
991
|
-
attr_accessor field_id: ::String
|
992
1059
|
attr_accessor name: ::String
|
1060
|
+
attr_accessor type: ("CaseField")
|
1061
|
+
attr_accessor field_id: ::String
|
993
1062
|
attr_accessor target_field_values: ::Array[Types::FieldValueUnion]
|
994
1063
|
attr_accessor target_sla_minutes: ::Integer
|
995
|
-
attr_accessor type: ("CaseField")
|
996
1064
|
SENSITIVE: [:name]
|
997
1065
|
end
|
998
1066
|
|
@@ -1026,10 +1094,10 @@ module Aws::ConnectCases
|
|
1026
1094
|
end
|
1027
1095
|
|
1028
1096
|
class TemplateSummary
|
1097
|
+
attr_accessor template_id: ::String
|
1098
|
+
attr_accessor template_arn: ::String
|
1029
1099
|
attr_accessor name: ::String
|
1030
1100
|
attr_accessor status: ("Active" | "Inactive")
|
1031
|
-
attr_accessor template_arn: ::String
|
1032
|
-
attr_accessor template_id: ::String
|
1033
1101
|
SENSITIVE: []
|
1034
1102
|
end
|
1035
1103
|
|
@@ -1045,8 +1113,8 @@ module Aws::ConnectCases
|
|
1045
1113
|
end
|
1046
1114
|
|
1047
1115
|
class UpdateCaseRequest
|
1048
|
-
attr_accessor case_id: ::String
|
1049
1116
|
attr_accessor domain_id: ::String
|
1117
|
+
attr_accessor case_id: ::String
|
1050
1118
|
attr_accessor fields: ::Array[Types::FieldValue]
|
1051
1119
|
attr_accessor performed_by: Types::UserUnion
|
1052
1120
|
SENSITIVE: []
|
@@ -1056,10 +1124,10 @@ module Aws::ConnectCases
|
|
1056
1124
|
end
|
1057
1125
|
|
1058
1126
|
class UpdateCaseRuleRequest
|
1059
|
-
attr_accessor case_rule_id: ::String
|
1060
|
-
attr_accessor description: ::String
|
1061
1127
|
attr_accessor domain_id: ::String
|
1128
|
+
attr_accessor case_rule_id: ::String
|
1062
1129
|
attr_accessor name: ::String
|
1130
|
+
attr_accessor description: ::String
|
1063
1131
|
attr_accessor rule: Types::CaseRuleDetails
|
1064
1132
|
SENSITIVE: []
|
1065
1133
|
end
|
@@ -1068,10 +1136,10 @@ module Aws::ConnectCases
|
|
1068
1136
|
end
|
1069
1137
|
|
1070
1138
|
class UpdateFieldRequest
|
1071
|
-
attr_accessor description: ::String
|
1072
1139
|
attr_accessor domain_id: ::String
|
1073
1140
|
attr_accessor field_id: ::String
|
1074
1141
|
attr_accessor name: ::String
|
1142
|
+
attr_accessor description: ::String
|
1075
1143
|
SENSITIVE: []
|
1076
1144
|
end
|
1077
1145
|
|
@@ -1079,10 +1147,10 @@ module Aws::ConnectCases
|
|
1079
1147
|
end
|
1080
1148
|
|
1081
1149
|
class UpdateLayoutRequest
|
1082
|
-
attr_accessor content: Types::LayoutContent
|
1083
1150
|
attr_accessor domain_id: ::String
|
1084
1151
|
attr_accessor layout_id: ::String
|
1085
1152
|
attr_accessor name: ::String
|
1153
|
+
attr_accessor content: Types::LayoutContent
|
1086
1154
|
SENSITIVE: []
|
1087
1155
|
end
|
1088
1156
|
|
@@ -1090,14 +1158,14 @@ module Aws::ConnectCases
|
|
1090
1158
|
end
|
1091
1159
|
|
1092
1160
|
class UpdateTemplateRequest
|
1093
|
-
attr_accessor description: ::String
|
1094
1161
|
attr_accessor domain_id: ::String
|
1095
|
-
attr_accessor
|
1162
|
+
attr_accessor template_id: ::String
|
1096
1163
|
attr_accessor name: ::String
|
1164
|
+
attr_accessor description: ::String
|
1165
|
+
attr_accessor layout_configuration: Types::LayoutConfiguration
|
1097
1166
|
attr_accessor required_fields: ::Array[Types::RequiredField]
|
1098
|
-
attr_accessor rules: ::Array[Types::TemplateRule]
|
1099
1167
|
attr_accessor status: ("Active" | "Inactive")
|
1100
|
-
attr_accessor
|
1168
|
+
attr_accessor rules: ::Array[Types::TemplateRule]
|
1101
1169
|
SENSITIVE: []
|
1102
1170
|
end
|
1103
1171
|
|
@@ -1105,15 +1173,15 @@ module Aws::ConnectCases
|
|
1105
1173
|
end
|
1106
1174
|
|
1107
1175
|
class UserUnion
|
1108
|
-
attr_accessor custom_entity: ::String
|
1109
1176
|
attr_accessor user_arn: ::String
|
1177
|
+
attr_accessor custom_entity: ::String
|
1110
1178
|
attr_accessor unknown: untyped
|
1111
1179
|
SENSITIVE: [:custom_entity]
|
1112
1180
|
|
1113
|
-
class CustomEntity < UserUnion
|
1114
|
-
end
|
1115
1181
|
class UserArn < UserUnion
|
1116
1182
|
end
|
1183
|
+
class CustomEntity < UserUnion
|
1184
|
+
end
|
1117
1185
|
class Unknown < UserUnion
|
1118
1186
|
end
|
1119
1187
|
end
|