aws-sdk-connectcases 1.19.0 → 1.20.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connectcases/client.rb +1 -1
- data/lib/aws-sdk-connectcases/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-connectcases.rb +1 -1
- data/sig/client.rbs +715 -0
- data/sig/errors.rbs +40 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +823 -0
- data/sig/waiters.rbs +13 -0
- metadata +9 -4
data/sig/types.rbs
ADDED
@@ -0,0 +1,823 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::ConnectCases
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AuditEvent
|
17
|
+
attr_accessor event_id: ::String
|
18
|
+
attr_accessor fields: ::Array[Types::AuditEventField]
|
19
|
+
attr_accessor performed_by: Types::AuditEventPerformedBy
|
20
|
+
attr_accessor performed_time: ::Time
|
21
|
+
attr_accessor related_item_type: ("Contact" | "Comment")
|
22
|
+
attr_accessor type: ("Case.Created" | "Case.Updated" | "RelatedItem.Created")
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class AuditEventField
|
27
|
+
attr_accessor event_field_id: ::String
|
28
|
+
attr_accessor new_value: Types::AuditEventFieldValueUnion
|
29
|
+
attr_accessor old_value: Types::AuditEventFieldValueUnion
|
30
|
+
SENSITIVE: []
|
31
|
+
end
|
32
|
+
|
33
|
+
class AuditEventFieldValueUnion
|
34
|
+
attr_accessor boolean_value: bool
|
35
|
+
attr_accessor double_value: ::Float
|
36
|
+
attr_accessor empty_value: Types::EmptyFieldValue
|
37
|
+
attr_accessor string_value: ::String
|
38
|
+
attr_accessor user_arn_value: ::String
|
39
|
+
attr_accessor unknown: untyped
|
40
|
+
SENSITIVE: []
|
41
|
+
|
42
|
+
class BooleanValue < AuditEventFieldValueUnion
|
43
|
+
end
|
44
|
+
class DoubleValue < AuditEventFieldValueUnion
|
45
|
+
end
|
46
|
+
class EmptyValue < AuditEventFieldValueUnion
|
47
|
+
end
|
48
|
+
class StringValue < AuditEventFieldValueUnion
|
49
|
+
end
|
50
|
+
class UserArnValue < AuditEventFieldValueUnion
|
51
|
+
end
|
52
|
+
class Unknown < AuditEventFieldValueUnion
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
class AuditEventPerformedBy
|
57
|
+
attr_accessor iam_principal_arn: ::String
|
58
|
+
attr_accessor user: Types::UserUnion
|
59
|
+
SENSITIVE: []
|
60
|
+
end
|
61
|
+
|
62
|
+
class BasicLayout
|
63
|
+
attr_accessor more_info: Types::LayoutSections
|
64
|
+
attr_accessor top_panel: Types::LayoutSections
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class BatchGetFieldRequest
|
69
|
+
attr_accessor domain_id: ::String
|
70
|
+
attr_accessor fields: ::Array[Types::FieldIdentifier]
|
71
|
+
SENSITIVE: []
|
72
|
+
end
|
73
|
+
|
74
|
+
class BatchGetFieldResponse
|
75
|
+
attr_accessor errors: ::Array[Types::FieldError]
|
76
|
+
attr_accessor fields: ::Array[Types::GetFieldResponse]
|
77
|
+
SENSITIVE: []
|
78
|
+
end
|
79
|
+
|
80
|
+
class BatchPutFieldOptionsRequest
|
81
|
+
attr_accessor domain_id: ::String
|
82
|
+
attr_accessor field_id: ::String
|
83
|
+
attr_accessor options: ::Array[Types::FieldOption]
|
84
|
+
SENSITIVE: []
|
85
|
+
end
|
86
|
+
|
87
|
+
class BatchPutFieldOptionsResponse
|
88
|
+
attr_accessor errors: ::Array[Types::FieldOptionError]
|
89
|
+
SENSITIVE: []
|
90
|
+
end
|
91
|
+
|
92
|
+
class CaseEventIncludedData
|
93
|
+
attr_accessor fields: ::Array[Types::FieldIdentifier]
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class CaseFilter
|
98
|
+
attr_accessor and_all: ::Array[Types::CaseFilter]
|
99
|
+
attr_accessor field: Types::FieldFilter
|
100
|
+
attr_accessor not: Types::CaseFilter
|
101
|
+
attr_accessor or_all: ::Array[Types::CaseFilter]
|
102
|
+
attr_accessor unknown: untyped
|
103
|
+
SENSITIVE: []
|
104
|
+
|
105
|
+
class AndAll < CaseFilter
|
106
|
+
end
|
107
|
+
class Field < CaseFilter
|
108
|
+
end
|
109
|
+
class Not < CaseFilter
|
110
|
+
end
|
111
|
+
class OrAll < CaseFilter
|
112
|
+
end
|
113
|
+
class Unknown < CaseFilter
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
class CaseSummary
|
118
|
+
attr_accessor case_id: ::String
|
119
|
+
attr_accessor template_id: ::String
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class CommentContent
|
124
|
+
attr_accessor body: ::String
|
125
|
+
attr_accessor content_type: ("Text/Plain")
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class CommentFilter < Aws::EmptyStructure
|
130
|
+
end
|
131
|
+
|
132
|
+
class ConflictException
|
133
|
+
attr_accessor message: ::String
|
134
|
+
SENSITIVE: []
|
135
|
+
end
|
136
|
+
|
137
|
+
class Contact
|
138
|
+
attr_accessor contact_arn: ::String
|
139
|
+
SENSITIVE: []
|
140
|
+
end
|
141
|
+
|
142
|
+
class ContactContent
|
143
|
+
attr_accessor channel: ::String
|
144
|
+
attr_accessor connected_to_system_time: ::Time
|
145
|
+
attr_accessor contact_arn: ::String
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class ContactFilter
|
150
|
+
attr_accessor channel: ::Array[::String]
|
151
|
+
attr_accessor contact_arn: ::String
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class CreateCaseRequest
|
156
|
+
attr_accessor client_token: ::String
|
157
|
+
attr_accessor domain_id: ::String
|
158
|
+
attr_accessor fields: ::Array[Types::FieldValue]
|
159
|
+
attr_accessor performed_by: Types::UserUnion
|
160
|
+
attr_accessor template_id: ::String
|
161
|
+
SENSITIVE: []
|
162
|
+
end
|
163
|
+
|
164
|
+
class CreateCaseResponse
|
165
|
+
attr_accessor case_arn: ::String
|
166
|
+
attr_accessor case_id: ::String
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class CreateDomainRequest
|
171
|
+
attr_accessor name: ::String
|
172
|
+
SENSITIVE: []
|
173
|
+
end
|
174
|
+
|
175
|
+
class CreateDomainResponse
|
176
|
+
attr_accessor domain_arn: ::String
|
177
|
+
attr_accessor domain_id: ::String
|
178
|
+
attr_accessor domain_status: ("Active" | "CreationInProgress" | "CreationFailed")
|
179
|
+
SENSITIVE: []
|
180
|
+
end
|
181
|
+
|
182
|
+
class CreateFieldRequest
|
183
|
+
attr_accessor description: ::String
|
184
|
+
attr_accessor domain_id: ::String
|
185
|
+
attr_accessor name: ::String
|
186
|
+
attr_accessor type: ("Text" | "Number" | "Boolean" | "DateTime" | "SingleSelect" | "Url" | "User")
|
187
|
+
SENSITIVE: []
|
188
|
+
end
|
189
|
+
|
190
|
+
class CreateFieldResponse
|
191
|
+
attr_accessor field_arn: ::String
|
192
|
+
attr_accessor field_id: ::String
|
193
|
+
SENSITIVE: []
|
194
|
+
end
|
195
|
+
|
196
|
+
class CreateLayoutRequest
|
197
|
+
attr_accessor content: Types::LayoutContent
|
198
|
+
attr_accessor domain_id: ::String
|
199
|
+
attr_accessor name: ::String
|
200
|
+
SENSITIVE: []
|
201
|
+
end
|
202
|
+
|
203
|
+
class CreateLayoutResponse
|
204
|
+
attr_accessor layout_arn: ::String
|
205
|
+
attr_accessor layout_id: ::String
|
206
|
+
SENSITIVE: []
|
207
|
+
end
|
208
|
+
|
209
|
+
class CreateRelatedItemRequest
|
210
|
+
attr_accessor case_id: ::String
|
211
|
+
attr_accessor content: Types::RelatedItemInputContent
|
212
|
+
attr_accessor domain_id: ::String
|
213
|
+
attr_accessor performed_by: Types::UserUnion
|
214
|
+
attr_accessor type: ("Contact" | "Comment")
|
215
|
+
SENSITIVE: []
|
216
|
+
end
|
217
|
+
|
218
|
+
class CreateRelatedItemResponse
|
219
|
+
attr_accessor related_item_arn: ::String
|
220
|
+
attr_accessor related_item_id: ::String
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class CreateTemplateRequest
|
225
|
+
attr_accessor description: ::String
|
226
|
+
attr_accessor domain_id: ::String
|
227
|
+
attr_accessor layout_configuration: Types::LayoutConfiguration
|
228
|
+
attr_accessor name: ::String
|
229
|
+
attr_accessor required_fields: ::Array[Types::RequiredField]
|
230
|
+
attr_accessor status: ("Active" | "Inactive")
|
231
|
+
SENSITIVE: []
|
232
|
+
end
|
233
|
+
|
234
|
+
class CreateTemplateResponse
|
235
|
+
attr_accessor template_arn: ::String
|
236
|
+
attr_accessor template_id: ::String
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class DeleteDomainRequest
|
241
|
+
attr_accessor domain_id: ::String
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class DeleteDomainResponse < Aws::EmptyStructure
|
246
|
+
end
|
247
|
+
|
248
|
+
class DomainSummary
|
249
|
+
attr_accessor domain_arn: ::String
|
250
|
+
attr_accessor domain_id: ::String
|
251
|
+
attr_accessor name: ::String
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class EmptyFieldValue < Aws::EmptyStructure
|
256
|
+
end
|
257
|
+
|
258
|
+
class EventBridgeConfiguration
|
259
|
+
attr_accessor enabled: bool
|
260
|
+
attr_accessor included_data: Types::EventIncludedData
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class EventIncludedData
|
265
|
+
attr_accessor case_data: Types::CaseEventIncludedData
|
266
|
+
attr_accessor related_item_data: Types::RelatedItemEventIncludedData
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class FieldError
|
271
|
+
attr_accessor error_code: ::String
|
272
|
+
attr_accessor id: ::String
|
273
|
+
attr_accessor message: ::String
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
277
|
+
class FieldFilter
|
278
|
+
attr_accessor contains: Types::FieldValue
|
279
|
+
attr_accessor equal_to: Types::FieldValue
|
280
|
+
attr_accessor greater_than: Types::FieldValue
|
281
|
+
attr_accessor greater_than_or_equal_to: Types::FieldValue
|
282
|
+
attr_accessor less_than: Types::FieldValue
|
283
|
+
attr_accessor less_than_or_equal_to: Types::FieldValue
|
284
|
+
attr_accessor unknown: untyped
|
285
|
+
SENSITIVE: []
|
286
|
+
|
287
|
+
class Contains < FieldFilter
|
288
|
+
end
|
289
|
+
class EqualTo < FieldFilter
|
290
|
+
end
|
291
|
+
class GreaterThan < FieldFilter
|
292
|
+
end
|
293
|
+
class GreaterThanOrEqualTo < FieldFilter
|
294
|
+
end
|
295
|
+
class LessThan < FieldFilter
|
296
|
+
end
|
297
|
+
class LessThanOrEqualTo < FieldFilter
|
298
|
+
end
|
299
|
+
class Unknown < FieldFilter
|
300
|
+
end
|
301
|
+
end
|
302
|
+
|
303
|
+
class FieldGroup
|
304
|
+
attr_accessor fields: ::Array[Types::FieldItem]
|
305
|
+
attr_accessor name: ::String
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class FieldIdentifier
|
310
|
+
attr_accessor id: ::String
|
311
|
+
SENSITIVE: []
|
312
|
+
end
|
313
|
+
|
314
|
+
class FieldItem
|
315
|
+
attr_accessor id: ::String
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class FieldOption
|
320
|
+
attr_accessor active: bool
|
321
|
+
attr_accessor name: ::String
|
322
|
+
attr_accessor value: ::String
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class FieldOptionError
|
327
|
+
attr_accessor error_code: ::String
|
328
|
+
attr_accessor message: ::String
|
329
|
+
attr_accessor value: ::String
|
330
|
+
SENSITIVE: []
|
331
|
+
end
|
332
|
+
|
333
|
+
class FieldSummary
|
334
|
+
attr_accessor field_arn: ::String
|
335
|
+
attr_accessor field_id: ::String
|
336
|
+
attr_accessor name: ::String
|
337
|
+
attr_accessor namespace: ("System" | "Custom")
|
338
|
+
attr_accessor type: ("Text" | "Number" | "Boolean" | "DateTime" | "SingleSelect" | "Url" | "User")
|
339
|
+
SENSITIVE: []
|
340
|
+
end
|
341
|
+
|
342
|
+
class FieldValue
|
343
|
+
attr_accessor id: ::String
|
344
|
+
attr_accessor value: Types::FieldValueUnion
|
345
|
+
SENSITIVE: []
|
346
|
+
end
|
347
|
+
|
348
|
+
class FieldValueUnion
|
349
|
+
attr_accessor boolean_value: bool
|
350
|
+
attr_accessor double_value: ::Float
|
351
|
+
attr_accessor empty_value: Types::EmptyFieldValue
|
352
|
+
attr_accessor string_value: ::String
|
353
|
+
attr_accessor user_arn_value: ::String
|
354
|
+
attr_accessor unknown: untyped
|
355
|
+
SENSITIVE: []
|
356
|
+
|
357
|
+
class BooleanValue < FieldValueUnion
|
358
|
+
end
|
359
|
+
class DoubleValue < FieldValueUnion
|
360
|
+
end
|
361
|
+
class EmptyValue < FieldValueUnion
|
362
|
+
end
|
363
|
+
class StringValue < FieldValueUnion
|
364
|
+
end
|
365
|
+
class UserArnValue < FieldValueUnion
|
366
|
+
end
|
367
|
+
class Unknown < FieldValueUnion
|
368
|
+
end
|
369
|
+
end
|
370
|
+
|
371
|
+
class GetCaseAuditEventsRequest
|
372
|
+
attr_accessor case_id: ::String
|
373
|
+
attr_accessor domain_id: ::String
|
374
|
+
attr_accessor max_results: ::Integer
|
375
|
+
attr_accessor next_token: ::String
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class GetCaseAuditEventsResponse
|
380
|
+
attr_accessor audit_events: ::Array[Types::AuditEvent]
|
381
|
+
attr_accessor next_token: ::String
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class GetCaseEventConfigurationRequest
|
386
|
+
attr_accessor domain_id: ::String
|
387
|
+
SENSITIVE: []
|
388
|
+
end
|
389
|
+
|
390
|
+
class GetCaseEventConfigurationResponse
|
391
|
+
attr_accessor event_bridge: Types::EventBridgeConfiguration
|
392
|
+
SENSITIVE: []
|
393
|
+
end
|
394
|
+
|
395
|
+
class GetCaseRequest
|
396
|
+
attr_accessor case_id: ::String
|
397
|
+
attr_accessor domain_id: ::String
|
398
|
+
attr_accessor fields: ::Array[Types::FieldIdentifier]
|
399
|
+
attr_accessor next_token: ::String
|
400
|
+
SENSITIVE: []
|
401
|
+
end
|
402
|
+
|
403
|
+
class GetCaseResponse
|
404
|
+
attr_accessor fields: ::Array[Types::FieldValue]
|
405
|
+
attr_accessor next_token: ::String
|
406
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
407
|
+
attr_accessor template_id: ::String
|
408
|
+
SENSITIVE: []
|
409
|
+
end
|
410
|
+
|
411
|
+
class GetDomainRequest
|
412
|
+
attr_accessor domain_id: ::String
|
413
|
+
SENSITIVE: []
|
414
|
+
end
|
415
|
+
|
416
|
+
class GetDomainResponse
|
417
|
+
attr_accessor created_time: ::Time
|
418
|
+
attr_accessor domain_arn: ::String
|
419
|
+
attr_accessor domain_id: ::String
|
420
|
+
attr_accessor domain_status: ("Active" | "CreationInProgress" | "CreationFailed")
|
421
|
+
attr_accessor name: ::String
|
422
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
423
|
+
SENSITIVE: []
|
424
|
+
end
|
425
|
+
|
426
|
+
class GetFieldResponse
|
427
|
+
attr_accessor description: ::String
|
428
|
+
attr_accessor field_arn: ::String
|
429
|
+
attr_accessor field_id: ::String
|
430
|
+
attr_accessor name: ::String
|
431
|
+
attr_accessor namespace: ("System" | "Custom")
|
432
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
433
|
+
attr_accessor type: ("Text" | "Number" | "Boolean" | "DateTime" | "SingleSelect" | "Url" | "User")
|
434
|
+
SENSITIVE: []
|
435
|
+
end
|
436
|
+
|
437
|
+
class GetLayoutRequest
|
438
|
+
attr_accessor domain_id: ::String
|
439
|
+
attr_accessor layout_id: ::String
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class GetLayoutResponse
|
444
|
+
attr_accessor content: Types::LayoutContent
|
445
|
+
attr_accessor layout_arn: ::String
|
446
|
+
attr_accessor layout_id: ::String
|
447
|
+
attr_accessor name: ::String
|
448
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
449
|
+
SENSITIVE: []
|
450
|
+
end
|
451
|
+
|
452
|
+
class GetTemplateRequest
|
453
|
+
attr_accessor domain_id: ::String
|
454
|
+
attr_accessor template_id: ::String
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
458
|
+
class GetTemplateResponse
|
459
|
+
attr_accessor description: ::String
|
460
|
+
attr_accessor layout_configuration: Types::LayoutConfiguration
|
461
|
+
attr_accessor name: ::String
|
462
|
+
attr_accessor required_fields: ::Array[Types::RequiredField]
|
463
|
+
attr_accessor status: ("Active" | "Inactive")
|
464
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
465
|
+
attr_accessor template_arn: ::String
|
466
|
+
attr_accessor template_id: ::String
|
467
|
+
SENSITIVE: []
|
468
|
+
end
|
469
|
+
|
470
|
+
class InternalServerException
|
471
|
+
attr_accessor message: ::String
|
472
|
+
attr_accessor retry_after_seconds: ::Integer
|
473
|
+
SENSITIVE: []
|
474
|
+
end
|
475
|
+
|
476
|
+
class LayoutConfiguration
|
477
|
+
attr_accessor default_layout: ::String
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
481
|
+
class LayoutContent
|
482
|
+
attr_accessor basic: Types::BasicLayout
|
483
|
+
attr_accessor unknown: untyped
|
484
|
+
SENSITIVE: []
|
485
|
+
|
486
|
+
class Basic < LayoutContent
|
487
|
+
end
|
488
|
+
class Unknown < LayoutContent
|
489
|
+
end
|
490
|
+
end
|
491
|
+
|
492
|
+
class LayoutSections
|
493
|
+
attr_accessor sections: ::Array[Types::Section]
|
494
|
+
SENSITIVE: []
|
495
|
+
end
|
496
|
+
|
497
|
+
class LayoutSummary
|
498
|
+
attr_accessor layout_arn: ::String
|
499
|
+
attr_accessor layout_id: ::String
|
500
|
+
attr_accessor name: ::String
|
501
|
+
SENSITIVE: []
|
502
|
+
end
|
503
|
+
|
504
|
+
class ListCasesForContactRequest
|
505
|
+
attr_accessor contact_arn: ::String
|
506
|
+
attr_accessor domain_id: ::String
|
507
|
+
attr_accessor max_results: ::Integer
|
508
|
+
attr_accessor next_token: ::String
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
512
|
+
class ListCasesForContactResponse
|
513
|
+
attr_accessor cases: ::Array[Types::CaseSummary]
|
514
|
+
attr_accessor next_token: ::String
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class ListDomainsRequest
|
519
|
+
attr_accessor max_results: ::Integer
|
520
|
+
attr_accessor next_token: ::String
|
521
|
+
SENSITIVE: []
|
522
|
+
end
|
523
|
+
|
524
|
+
class ListDomainsResponse
|
525
|
+
attr_accessor domains: ::Array[Types::DomainSummary]
|
526
|
+
attr_accessor next_token: ::String
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
530
|
+
class ListFieldOptionsRequest
|
531
|
+
attr_accessor domain_id: ::String
|
532
|
+
attr_accessor field_id: ::String
|
533
|
+
attr_accessor max_results: ::Integer
|
534
|
+
attr_accessor next_token: ::String
|
535
|
+
attr_accessor values: ::Array[::String]
|
536
|
+
SENSITIVE: []
|
537
|
+
end
|
538
|
+
|
539
|
+
class ListFieldOptionsResponse
|
540
|
+
attr_accessor next_token: ::String
|
541
|
+
attr_accessor options: ::Array[Types::FieldOption]
|
542
|
+
SENSITIVE: []
|
543
|
+
end
|
544
|
+
|
545
|
+
class ListFieldsRequest
|
546
|
+
attr_accessor domain_id: ::String
|
547
|
+
attr_accessor max_results: ::Integer
|
548
|
+
attr_accessor next_token: ::String
|
549
|
+
SENSITIVE: []
|
550
|
+
end
|
551
|
+
|
552
|
+
class ListFieldsResponse
|
553
|
+
attr_accessor fields: ::Array[Types::FieldSummary]
|
554
|
+
attr_accessor next_token: ::String
|
555
|
+
SENSITIVE: []
|
556
|
+
end
|
557
|
+
|
558
|
+
class ListLayoutsRequest
|
559
|
+
attr_accessor domain_id: ::String
|
560
|
+
attr_accessor max_results: ::Integer
|
561
|
+
attr_accessor next_token: ::String
|
562
|
+
SENSITIVE: []
|
563
|
+
end
|
564
|
+
|
565
|
+
class ListLayoutsResponse
|
566
|
+
attr_accessor layouts: ::Array[Types::LayoutSummary]
|
567
|
+
attr_accessor next_token: ::String
|
568
|
+
SENSITIVE: []
|
569
|
+
end
|
570
|
+
|
571
|
+
class ListTagsForResourceRequest
|
572
|
+
attr_accessor arn: ::String
|
573
|
+
SENSITIVE: []
|
574
|
+
end
|
575
|
+
|
576
|
+
class ListTagsForResourceResponse
|
577
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
578
|
+
SENSITIVE: []
|
579
|
+
end
|
580
|
+
|
581
|
+
class ListTemplatesRequest
|
582
|
+
attr_accessor domain_id: ::String
|
583
|
+
attr_accessor max_results: ::Integer
|
584
|
+
attr_accessor next_token: ::String
|
585
|
+
attr_accessor status: ::Array[("Active" | "Inactive")]
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class ListTemplatesResponse
|
590
|
+
attr_accessor next_token: ::String
|
591
|
+
attr_accessor templates: ::Array[Types::TemplateSummary]
|
592
|
+
SENSITIVE: []
|
593
|
+
end
|
594
|
+
|
595
|
+
class PutCaseEventConfigurationRequest
|
596
|
+
attr_accessor domain_id: ::String
|
597
|
+
attr_accessor event_bridge: Types::EventBridgeConfiguration
|
598
|
+
SENSITIVE: []
|
599
|
+
end
|
600
|
+
|
601
|
+
class PutCaseEventConfigurationResponse < Aws::EmptyStructure
|
602
|
+
end
|
603
|
+
|
604
|
+
class RelatedItemContent
|
605
|
+
attr_accessor comment: Types::CommentContent
|
606
|
+
attr_accessor contact: Types::ContactContent
|
607
|
+
attr_accessor unknown: untyped
|
608
|
+
SENSITIVE: []
|
609
|
+
|
610
|
+
class Comment < RelatedItemContent
|
611
|
+
end
|
612
|
+
class Contact < RelatedItemContent
|
613
|
+
end
|
614
|
+
class Unknown < RelatedItemContent
|
615
|
+
end
|
616
|
+
end
|
617
|
+
|
618
|
+
class RelatedItemEventIncludedData
|
619
|
+
attr_accessor include_content: bool
|
620
|
+
SENSITIVE: []
|
621
|
+
end
|
622
|
+
|
623
|
+
class RelatedItemInputContent
|
624
|
+
attr_accessor comment: Types::CommentContent
|
625
|
+
attr_accessor contact: Types::Contact
|
626
|
+
attr_accessor unknown: untyped
|
627
|
+
SENSITIVE: []
|
628
|
+
|
629
|
+
class Comment < RelatedItemInputContent
|
630
|
+
end
|
631
|
+
class Contact < RelatedItemInputContent
|
632
|
+
end
|
633
|
+
class Unknown < RelatedItemInputContent
|
634
|
+
end
|
635
|
+
end
|
636
|
+
|
637
|
+
class RelatedItemTypeFilter
|
638
|
+
attr_accessor comment: Types::CommentFilter
|
639
|
+
attr_accessor contact: Types::ContactFilter
|
640
|
+
attr_accessor unknown: untyped
|
641
|
+
SENSITIVE: []
|
642
|
+
|
643
|
+
class Comment < RelatedItemTypeFilter
|
644
|
+
end
|
645
|
+
class Contact < RelatedItemTypeFilter
|
646
|
+
end
|
647
|
+
class Unknown < RelatedItemTypeFilter
|
648
|
+
end
|
649
|
+
end
|
650
|
+
|
651
|
+
class RequiredField
|
652
|
+
attr_accessor field_id: ::String
|
653
|
+
SENSITIVE: []
|
654
|
+
end
|
655
|
+
|
656
|
+
class ResourceNotFoundException
|
657
|
+
attr_accessor message: ::String
|
658
|
+
attr_accessor resource_id: ::String
|
659
|
+
attr_accessor resource_type: ::String
|
660
|
+
SENSITIVE: []
|
661
|
+
end
|
662
|
+
|
663
|
+
class SearchCasesRequest
|
664
|
+
attr_accessor domain_id: ::String
|
665
|
+
attr_accessor fields: ::Array[Types::FieldIdentifier]
|
666
|
+
attr_accessor filter: Types::CaseFilter
|
667
|
+
attr_accessor max_results: ::Integer
|
668
|
+
attr_accessor next_token: ::String
|
669
|
+
attr_accessor search_term: ::String
|
670
|
+
attr_accessor sorts: ::Array[Types::Sort]
|
671
|
+
SENSITIVE: []
|
672
|
+
end
|
673
|
+
|
674
|
+
class SearchCasesResponse
|
675
|
+
attr_accessor cases: ::Array[Types::SearchCasesResponseItem]
|
676
|
+
attr_accessor next_token: ::String
|
677
|
+
SENSITIVE: []
|
678
|
+
end
|
679
|
+
|
680
|
+
class SearchCasesResponseItem
|
681
|
+
attr_accessor case_id: ::String
|
682
|
+
attr_accessor fields: ::Array[Types::FieldValue]
|
683
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
684
|
+
attr_accessor template_id: ::String
|
685
|
+
SENSITIVE: []
|
686
|
+
end
|
687
|
+
|
688
|
+
class SearchRelatedItemsRequest
|
689
|
+
attr_accessor case_id: ::String
|
690
|
+
attr_accessor domain_id: ::String
|
691
|
+
attr_accessor filters: ::Array[Types::RelatedItemTypeFilter]
|
692
|
+
attr_accessor max_results: ::Integer
|
693
|
+
attr_accessor next_token: ::String
|
694
|
+
SENSITIVE: []
|
695
|
+
end
|
696
|
+
|
697
|
+
class SearchRelatedItemsResponse
|
698
|
+
attr_accessor next_token: ::String
|
699
|
+
attr_accessor related_items: ::Array[Types::SearchRelatedItemsResponseItem]
|
700
|
+
SENSITIVE: []
|
701
|
+
end
|
702
|
+
|
703
|
+
class SearchRelatedItemsResponseItem
|
704
|
+
attr_accessor association_time: ::Time
|
705
|
+
attr_accessor content: Types::RelatedItemContent
|
706
|
+
attr_accessor performed_by: Types::UserUnion
|
707
|
+
attr_accessor related_item_id: ::String
|
708
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
709
|
+
attr_accessor type: ("Contact" | "Comment")
|
710
|
+
SENSITIVE: []
|
711
|
+
end
|
712
|
+
|
713
|
+
class Section
|
714
|
+
attr_accessor field_group: Types::FieldGroup
|
715
|
+
attr_accessor unknown: untyped
|
716
|
+
SENSITIVE: []
|
717
|
+
|
718
|
+
class FieldGroup < Section
|
719
|
+
end
|
720
|
+
class Unknown < Section
|
721
|
+
end
|
722
|
+
end
|
723
|
+
|
724
|
+
class ServiceQuotaExceededException
|
725
|
+
attr_accessor message: ::String
|
726
|
+
SENSITIVE: []
|
727
|
+
end
|
728
|
+
|
729
|
+
class Sort
|
730
|
+
attr_accessor field_id: ::String
|
731
|
+
attr_accessor sort_order: ("Asc" | "Desc")
|
732
|
+
SENSITIVE: []
|
733
|
+
end
|
734
|
+
|
735
|
+
class TagResourceRequest
|
736
|
+
attr_accessor arn: ::String
|
737
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
741
|
+
class TemplateSummary
|
742
|
+
attr_accessor name: ::String
|
743
|
+
attr_accessor status: ("Active" | "Inactive")
|
744
|
+
attr_accessor template_arn: ::String
|
745
|
+
attr_accessor template_id: ::String
|
746
|
+
SENSITIVE: []
|
747
|
+
end
|
748
|
+
|
749
|
+
class ThrottlingException
|
750
|
+
attr_accessor message: ::String
|
751
|
+
SENSITIVE: []
|
752
|
+
end
|
753
|
+
|
754
|
+
class UntagResourceRequest
|
755
|
+
attr_accessor arn: ::String
|
756
|
+
attr_accessor tag_keys: ::Array[::String]
|
757
|
+
SENSITIVE: []
|
758
|
+
end
|
759
|
+
|
760
|
+
class UpdateCaseRequest
|
761
|
+
attr_accessor case_id: ::String
|
762
|
+
attr_accessor domain_id: ::String
|
763
|
+
attr_accessor fields: ::Array[Types::FieldValue]
|
764
|
+
attr_accessor performed_by: Types::UserUnion
|
765
|
+
SENSITIVE: []
|
766
|
+
end
|
767
|
+
|
768
|
+
class UpdateCaseResponse < Aws::EmptyStructure
|
769
|
+
end
|
770
|
+
|
771
|
+
class UpdateFieldRequest
|
772
|
+
attr_accessor description: ::String
|
773
|
+
attr_accessor domain_id: ::String
|
774
|
+
attr_accessor field_id: ::String
|
775
|
+
attr_accessor name: ::String
|
776
|
+
SENSITIVE: []
|
777
|
+
end
|
778
|
+
|
779
|
+
class UpdateFieldResponse < Aws::EmptyStructure
|
780
|
+
end
|
781
|
+
|
782
|
+
class UpdateLayoutRequest
|
783
|
+
attr_accessor content: Types::LayoutContent
|
784
|
+
attr_accessor domain_id: ::String
|
785
|
+
attr_accessor layout_id: ::String
|
786
|
+
attr_accessor name: ::String
|
787
|
+
SENSITIVE: []
|
788
|
+
end
|
789
|
+
|
790
|
+
class UpdateLayoutResponse < Aws::EmptyStructure
|
791
|
+
end
|
792
|
+
|
793
|
+
class UpdateTemplateRequest
|
794
|
+
attr_accessor description: ::String
|
795
|
+
attr_accessor domain_id: ::String
|
796
|
+
attr_accessor layout_configuration: Types::LayoutConfiguration
|
797
|
+
attr_accessor name: ::String
|
798
|
+
attr_accessor required_fields: ::Array[Types::RequiredField]
|
799
|
+
attr_accessor status: ("Active" | "Inactive")
|
800
|
+
attr_accessor template_id: ::String
|
801
|
+
SENSITIVE: []
|
802
|
+
end
|
803
|
+
|
804
|
+
class UpdateTemplateResponse < Aws::EmptyStructure
|
805
|
+
end
|
806
|
+
|
807
|
+
class UserUnion
|
808
|
+
attr_accessor user_arn: ::String
|
809
|
+
attr_accessor unknown: untyped
|
810
|
+
SENSITIVE: []
|
811
|
+
|
812
|
+
class UserArn < UserUnion
|
813
|
+
end
|
814
|
+
class Unknown < UserUnion
|
815
|
+
end
|
816
|
+
end
|
817
|
+
|
818
|
+
class ValidationException
|
819
|
+
attr_accessor message: ::String
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
end
|
823
|
+
end
|