aws-sdk-voiceid 1.21.0 → 1.23.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.
data/sig/types.rbs ADDED
@@ -0,0 +1,640 @@
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::VoiceID
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class AssociateFraudsterRequest
17
+ attr_accessor domain_id: ::String
18
+ attr_accessor fraudster_id: ::String
19
+ attr_accessor watchlist_id: ::String
20
+ SENSITIVE: [:fraudster_id]
21
+ end
22
+
23
+ class AssociateFraudsterResponse
24
+ attr_accessor fraudster: Types::Fraudster
25
+ SENSITIVE: []
26
+ end
27
+
28
+ class AuthenticationConfiguration
29
+ attr_accessor acceptance_threshold: ::Integer
30
+ SENSITIVE: []
31
+ end
32
+
33
+ class AuthenticationResult
34
+ attr_accessor audio_aggregation_ended_at: ::Time
35
+ attr_accessor audio_aggregation_started_at: ::Time
36
+ attr_accessor authentication_result_id: ::String
37
+ attr_accessor configuration: Types::AuthenticationConfiguration
38
+ attr_accessor customer_speaker_id: ::String
39
+ attr_accessor decision: ("ACCEPT" | "REJECT" | "NOT_ENOUGH_SPEECH" | "SPEAKER_NOT_ENROLLED" | "SPEAKER_OPTED_OUT" | "SPEAKER_ID_NOT_PROVIDED" | "SPEAKER_EXPIRED")
40
+ attr_accessor generated_speaker_id: ::String
41
+ attr_accessor score: ::Integer
42
+ SENSITIVE: [:customer_speaker_id]
43
+ end
44
+
45
+ class ConflictException
46
+ attr_accessor conflict_type: ("ANOTHER_ACTIVE_STREAM" | "DOMAIN_NOT_ACTIVE" | "CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT" | "ENROLLMENT_ALREADY_EXISTS" | "SPEAKER_NOT_SET" | "SPEAKER_OPTED_OUT" | "CONCURRENT_CHANGES" | "DOMAIN_LOCKED_FROM_ENCRYPTION_UPDATES" | "CANNOT_DELETE_NON_EMPTY_WATCHLIST" | "FRAUDSTER_MUST_BELONG_TO_AT_LEAST_ONE_WATCHLIST")
47
+ attr_accessor message: ::String
48
+ SENSITIVE: []
49
+ end
50
+
51
+ class CreateDomainRequest
52
+ attr_accessor client_token: ::String
53
+ attr_accessor description: ::String
54
+ attr_accessor name: ::String
55
+ attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
56
+ attr_accessor tags: ::Array[Types::Tag]
57
+ SENSITIVE: [:description, :name]
58
+ end
59
+
60
+ class CreateDomainResponse
61
+ attr_accessor domain: Types::Domain
62
+ SENSITIVE: []
63
+ end
64
+
65
+ class CreateWatchlistRequest
66
+ attr_accessor client_token: ::String
67
+ attr_accessor description: ::String
68
+ attr_accessor domain_id: ::String
69
+ attr_accessor name: ::String
70
+ SENSITIVE: [:description, :name]
71
+ end
72
+
73
+ class CreateWatchlistResponse
74
+ attr_accessor watchlist: Types::Watchlist
75
+ SENSITIVE: []
76
+ end
77
+
78
+ class DeleteDomainRequest
79
+ attr_accessor domain_id: ::String
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class DeleteFraudsterRequest
84
+ attr_accessor domain_id: ::String
85
+ attr_accessor fraudster_id: ::String
86
+ SENSITIVE: [:fraudster_id]
87
+ end
88
+
89
+ class DeleteSpeakerRequest
90
+ attr_accessor domain_id: ::String
91
+ attr_accessor speaker_id: ::String
92
+ SENSITIVE: [:speaker_id]
93
+ end
94
+
95
+ class DeleteWatchlistRequest
96
+ attr_accessor domain_id: ::String
97
+ attr_accessor watchlist_id: ::String
98
+ SENSITIVE: []
99
+ end
100
+
101
+ class DescribeDomainRequest
102
+ attr_accessor domain_id: ::String
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class DescribeDomainResponse
107
+ attr_accessor domain: Types::Domain
108
+ SENSITIVE: []
109
+ end
110
+
111
+ class DescribeFraudsterRegistrationJobRequest
112
+ attr_accessor domain_id: ::String
113
+ attr_accessor job_id: ::String
114
+ SENSITIVE: []
115
+ end
116
+
117
+ class DescribeFraudsterRegistrationJobResponse
118
+ attr_accessor job: Types::FraudsterRegistrationJob
119
+ SENSITIVE: []
120
+ end
121
+
122
+ class DescribeFraudsterRequest
123
+ attr_accessor domain_id: ::String
124
+ attr_accessor fraudster_id: ::String
125
+ SENSITIVE: [:fraudster_id]
126
+ end
127
+
128
+ class DescribeFraudsterResponse
129
+ attr_accessor fraudster: Types::Fraudster
130
+ SENSITIVE: []
131
+ end
132
+
133
+ class DescribeSpeakerEnrollmentJobRequest
134
+ attr_accessor domain_id: ::String
135
+ attr_accessor job_id: ::String
136
+ SENSITIVE: []
137
+ end
138
+
139
+ class DescribeSpeakerEnrollmentJobResponse
140
+ attr_accessor job: Types::SpeakerEnrollmentJob
141
+ SENSITIVE: []
142
+ end
143
+
144
+ class DescribeSpeakerRequest
145
+ attr_accessor domain_id: ::String
146
+ attr_accessor speaker_id: ::String
147
+ SENSITIVE: [:speaker_id]
148
+ end
149
+
150
+ class DescribeSpeakerResponse
151
+ attr_accessor speaker: Types::Speaker
152
+ SENSITIVE: []
153
+ end
154
+
155
+ class DescribeWatchlistRequest
156
+ attr_accessor domain_id: ::String
157
+ attr_accessor watchlist_id: ::String
158
+ SENSITIVE: []
159
+ end
160
+
161
+ class DescribeWatchlistResponse
162
+ attr_accessor watchlist: Types::Watchlist
163
+ SENSITIVE: []
164
+ end
165
+
166
+ class DisassociateFraudsterRequest
167
+ attr_accessor domain_id: ::String
168
+ attr_accessor fraudster_id: ::String
169
+ attr_accessor watchlist_id: ::String
170
+ SENSITIVE: [:fraudster_id]
171
+ end
172
+
173
+ class DisassociateFraudsterResponse
174
+ attr_accessor fraudster: Types::Fraudster
175
+ SENSITIVE: []
176
+ end
177
+
178
+ class Domain
179
+ attr_accessor arn: ::String
180
+ attr_accessor created_at: ::Time
181
+ attr_accessor description: ::String
182
+ attr_accessor domain_id: ::String
183
+ attr_accessor domain_status: ("ACTIVE" | "PENDING" | "SUSPENDED")
184
+ attr_accessor name: ::String
185
+ attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
186
+ attr_accessor server_side_encryption_update_details: Types::ServerSideEncryptionUpdateDetails
187
+ attr_accessor updated_at: ::Time
188
+ attr_accessor watchlist_details: Types::WatchlistDetails
189
+ SENSITIVE: [:description, :name]
190
+ end
191
+
192
+ class DomainSummary
193
+ attr_accessor arn: ::String
194
+ attr_accessor created_at: ::Time
195
+ attr_accessor description: ::String
196
+ attr_accessor domain_id: ::String
197
+ attr_accessor domain_status: ("ACTIVE" | "PENDING" | "SUSPENDED")
198
+ attr_accessor name: ::String
199
+ attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
200
+ attr_accessor server_side_encryption_update_details: Types::ServerSideEncryptionUpdateDetails
201
+ attr_accessor updated_at: ::Time
202
+ attr_accessor watchlist_details: Types::WatchlistDetails
203
+ SENSITIVE: [:description, :name]
204
+ end
205
+
206
+ class EnrollmentConfig
207
+ attr_accessor existing_enrollment_action: ("SKIP" | "OVERWRITE")
208
+ attr_accessor fraud_detection_config: Types::EnrollmentJobFraudDetectionConfig
209
+ SENSITIVE: []
210
+ end
211
+
212
+ class EnrollmentJobFraudDetectionConfig
213
+ attr_accessor fraud_detection_action: ("IGNORE" | "FAIL")
214
+ attr_accessor risk_threshold: ::Integer
215
+ attr_accessor watchlist_ids: ::Array[::String]
216
+ SENSITIVE: []
217
+ end
218
+
219
+ class EvaluateSessionRequest
220
+ attr_accessor domain_id: ::String
221
+ attr_accessor session_name_or_id: ::String
222
+ SENSITIVE: []
223
+ end
224
+
225
+ class EvaluateSessionResponse
226
+ attr_accessor authentication_result: Types::AuthenticationResult
227
+ attr_accessor domain_id: ::String
228
+ attr_accessor fraud_detection_result: Types::FraudDetectionResult
229
+ attr_accessor session_id: ::String
230
+ attr_accessor session_name: ::String
231
+ attr_accessor streaming_status: ("PENDING_CONFIGURATION" | "ONGOING" | "ENDED")
232
+ SENSITIVE: []
233
+ end
234
+
235
+ class FailureDetails
236
+ attr_accessor message: ::String
237
+ attr_accessor status_code: ::Integer
238
+ SENSITIVE: []
239
+ end
240
+
241
+ class FraudDetectionConfiguration
242
+ attr_accessor risk_threshold: ::Integer
243
+ attr_accessor watchlist_id: ::String
244
+ SENSITIVE: []
245
+ end
246
+
247
+ class FraudDetectionResult
248
+ attr_accessor audio_aggregation_ended_at: ::Time
249
+ attr_accessor audio_aggregation_started_at: ::Time
250
+ attr_accessor configuration: Types::FraudDetectionConfiguration
251
+ attr_accessor decision: ("HIGH_RISK" | "LOW_RISK" | "NOT_ENOUGH_SPEECH")
252
+ attr_accessor fraud_detection_result_id: ::String
253
+ attr_accessor reasons: ::Array[("KNOWN_FRAUDSTER" | "VOICE_SPOOFING")]
254
+ attr_accessor risk_details: Types::FraudRiskDetails
255
+ SENSITIVE: []
256
+ end
257
+
258
+ class FraudRiskDetails
259
+ attr_accessor known_fraudster_risk: Types::KnownFraudsterRisk
260
+ attr_accessor voice_spoofing_risk: Types::VoiceSpoofingRisk
261
+ SENSITIVE: []
262
+ end
263
+
264
+ class Fraudster
265
+ attr_accessor created_at: ::Time
266
+ attr_accessor domain_id: ::String
267
+ attr_accessor generated_fraudster_id: ::String
268
+ attr_accessor watchlist_ids: ::Array[::String]
269
+ SENSITIVE: []
270
+ end
271
+
272
+ class FraudsterRegistrationJob
273
+ attr_accessor created_at: ::Time
274
+ attr_accessor data_access_role_arn: ::String
275
+ attr_accessor domain_id: ::String
276
+ attr_accessor ended_at: ::Time
277
+ attr_accessor failure_details: Types::FailureDetails
278
+ attr_accessor input_data_config: Types::InputDataConfig
279
+ attr_accessor job_id: ::String
280
+ attr_accessor job_name: ::String
281
+ attr_accessor job_progress: Types::JobProgress
282
+ attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED")
283
+ attr_accessor output_data_config: Types::OutputDataConfig
284
+ attr_accessor registration_config: Types::RegistrationConfig
285
+ SENSITIVE: [:job_name]
286
+ end
287
+
288
+ class FraudsterRegistrationJobSummary
289
+ attr_accessor created_at: ::Time
290
+ attr_accessor domain_id: ::String
291
+ attr_accessor ended_at: ::Time
292
+ attr_accessor failure_details: Types::FailureDetails
293
+ attr_accessor job_id: ::String
294
+ attr_accessor job_name: ::String
295
+ attr_accessor job_progress: Types::JobProgress
296
+ attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED")
297
+ SENSITIVE: [:job_name]
298
+ end
299
+
300
+ class FraudsterSummary
301
+ attr_accessor created_at: ::Time
302
+ attr_accessor domain_id: ::String
303
+ attr_accessor generated_fraudster_id: ::String
304
+ attr_accessor watchlist_ids: ::Array[::String]
305
+ SENSITIVE: []
306
+ end
307
+
308
+ class InputDataConfig
309
+ attr_accessor s3_uri: ::String
310
+ SENSITIVE: []
311
+ end
312
+
313
+ class InternalServerException
314
+ attr_accessor message: ::String
315
+ SENSITIVE: []
316
+ end
317
+
318
+ class JobProgress
319
+ attr_accessor percent_complete: ::Integer
320
+ SENSITIVE: []
321
+ end
322
+
323
+ class KnownFraudsterRisk
324
+ attr_accessor generated_fraudster_id: ::String
325
+ attr_accessor risk_score: ::Integer
326
+ SENSITIVE: []
327
+ end
328
+
329
+ class ListDomainsRequest
330
+ attr_accessor max_results: ::Integer
331
+ attr_accessor next_token: ::String
332
+ SENSITIVE: []
333
+ end
334
+
335
+ class ListDomainsResponse
336
+ attr_accessor domain_summaries: ::Array[Types::DomainSummary]
337
+ attr_accessor next_token: ::String
338
+ SENSITIVE: []
339
+ end
340
+
341
+ class ListFraudsterRegistrationJobsRequest
342
+ attr_accessor domain_id: ::String
343
+ attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED")
344
+ attr_accessor max_results: ::Integer
345
+ attr_accessor next_token: ::String
346
+ SENSITIVE: []
347
+ end
348
+
349
+ class ListFraudsterRegistrationJobsResponse
350
+ attr_accessor job_summaries: ::Array[Types::FraudsterRegistrationJobSummary]
351
+ attr_accessor next_token: ::String
352
+ SENSITIVE: []
353
+ end
354
+
355
+ class ListFraudstersRequest
356
+ attr_accessor domain_id: ::String
357
+ attr_accessor max_results: ::Integer
358
+ attr_accessor next_token: ::String
359
+ attr_accessor watchlist_id: ::String
360
+ SENSITIVE: []
361
+ end
362
+
363
+ class ListFraudstersResponse
364
+ attr_accessor fraudster_summaries: ::Array[Types::FraudsterSummary]
365
+ attr_accessor next_token: ::String
366
+ SENSITIVE: []
367
+ end
368
+
369
+ class ListSpeakerEnrollmentJobsRequest
370
+ attr_accessor domain_id: ::String
371
+ attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED")
372
+ attr_accessor max_results: ::Integer
373
+ attr_accessor next_token: ::String
374
+ SENSITIVE: []
375
+ end
376
+
377
+ class ListSpeakerEnrollmentJobsResponse
378
+ attr_accessor job_summaries: ::Array[Types::SpeakerEnrollmentJobSummary]
379
+ attr_accessor next_token: ::String
380
+ SENSITIVE: []
381
+ end
382
+
383
+ class ListSpeakersRequest
384
+ attr_accessor domain_id: ::String
385
+ attr_accessor max_results: ::Integer
386
+ attr_accessor next_token: ::String
387
+ SENSITIVE: []
388
+ end
389
+
390
+ class ListSpeakersResponse
391
+ attr_accessor next_token: ::String
392
+ attr_accessor speaker_summaries: ::Array[Types::SpeakerSummary]
393
+ SENSITIVE: []
394
+ end
395
+
396
+ class ListTagsForResourceRequest
397
+ attr_accessor resource_arn: ::String
398
+ SENSITIVE: []
399
+ end
400
+
401
+ class ListTagsForResourceResponse
402
+ attr_accessor tags: ::Array[Types::Tag]
403
+ SENSITIVE: []
404
+ end
405
+
406
+ class ListWatchlistsRequest
407
+ attr_accessor domain_id: ::String
408
+ attr_accessor max_results: ::Integer
409
+ attr_accessor next_token: ::String
410
+ SENSITIVE: []
411
+ end
412
+
413
+ class ListWatchlistsResponse
414
+ attr_accessor next_token: ::String
415
+ attr_accessor watchlist_summaries: ::Array[Types::WatchlistSummary]
416
+ SENSITIVE: []
417
+ end
418
+
419
+ class OptOutSpeakerRequest
420
+ attr_accessor domain_id: ::String
421
+ attr_accessor speaker_id: ::String
422
+ SENSITIVE: [:speaker_id]
423
+ end
424
+
425
+ class OptOutSpeakerResponse
426
+ attr_accessor speaker: Types::Speaker
427
+ SENSITIVE: []
428
+ end
429
+
430
+ class OutputDataConfig
431
+ attr_accessor kms_key_id: ::String
432
+ attr_accessor s3_uri: ::String
433
+ SENSITIVE: []
434
+ end
435
+
436
+ class RegistrationConfig
437
+ attr_accessor duplicate_registration_action: ("SKIP" | "REGISTER_AS_NEW")
438
+ attr_accessor fraudster_similarity_threshold: ::Integer
439
+ attr_accessor watchlist_ids: ::Array[::String]
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class ResourceNotFoundException
444
+ attr_accessor message: ::String
445
+ attr_accessor resource_type: ("BATCH_JOB" | "COMPLIANCE_CONSENT" | "DOMAIN" | "FRAUDSTER" | "SESSION" | "SPEAKER" | "WATCHLIST")
446
+ SENSITIVE: []
447
+ end
448
+
449
+ class ServerSideEncryptionConfiguration
450
+ attr_accessor kms_key_id: ::String
451
+ SENSITIVE: []
452
+ end
453
+
454
+ class ServerSideEncryptionUpdateDetails
455
+ attr_accessor message: ::String
456
+ attr_accessor old_kms_key_id: ::String
457
+ attr_accessor update_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
458
+ SENSITIVE: []
459
+ end
460
+
461
+ class ServiceQuotaExceededException
462
+ attr_accessor message: ::String
463
+ SENSITIVE: []
464
+ end
465
+
466
+ class Speaker
467
+ attr_accessor created_at: ::Time
468
+ attr_accessor customer_speaker_id: ::String
469
+ attr_accessor domain_id: ::String
470
+ attr_accessor generated_speaker_id: ::String
471
+ attr_accessor last_accessed_at: ::Time
472
+ attr_accessor status: ("ENROLLED" | "EXPIRED" | "OPTED_OUT" | "PENDING")
473
+ attr_accessor updated_at: ::Time
474
+ SENSITIVE: [:customer_speaker_id]
475
+ end
476
+
477
+ class SpeakerEnrollmentJob
478
+ attr_accessor created_at: ::Time
479
+ attr_accessor data_access_role_arn: ::String
480
+ attr_accessor domain_id: ::String
481
+ attr_accessor ended_at: ::Time
482
+ attr_accessor enrollment_config: Types::EnrollmentConfig
483
+ attr_accessor failure_details: Types::FailureDetails
484
+ attr_accessor input_data_config: Types::InputDataConfig
485
+ attr_accessor job_id: ::String
486
+ attr_accessor job_name: ::String
487
+ attr_accessor job_progress: Types::JobProgress
488
+ attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED")
489
+ attr_accessor output_data_config: Types::OutputDataConfig
490
+ SENSITIVE: [:job_name]
491
+ end
492
+
493
+ class SpeakerEnrollmentJobSummary
494
+ attr_accessor created_at: ::Time
495
+ attr_accessor domain_id: ::String
496
+ attr_accessor ended_at: ::Time
497
+ attr_accessor failure_details: Types::FailureDetails
498
+ attr_accessor job_id: ::String
499
+ attr_accessor job_name: ::String
500
+ attr_accessor job_progress: Types::JobProgress
501
+ attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED")
502
+ SENSITIVE: [:job_name]
503
+ end
504
+
505
+ class SpeakerSummary
506
+ attr_accessor created_at: ::Time
507
+ attr_accessor customer_speaker_id: ::String
508
+ attr_accessor domain_id: ::String
509
+ attr_accessor generated_speaker_id: ::String
510
+ attr_accessor last_accessed_at: ::Time
511
+ attr_accessor status: ("ENROLLED" | "EXPIRED" | "OPTED_OUT" | "PENDING")
512
+ attr_accessor updated_at: ::Time
513
+ SENSITIVE: [:customer_speaker_id]
514
+ end
515
+
516
+ class StartFraudsterRegistrationJobRequest
517
+ attr_accessor client_token: ::String
518
+ attr_accessor data_access_role_arn: ::String
519
+ attr_accessor domain_id: ::String
520
+ attr_accessor input_data_config: Types::InputDataConfig
521
+ attr_accessor job_name: ::String
522
+ attr_accessor output_data_config: Types::OutputDataConfig
523
+ attr_accessor registration_config: Types::RegistrationConfig
524
+ SENSITIVE: [:job_name]
525
+ end
526
+
527
+ class StartFraudsterRegistrationJobResponse
528
+ attr_accessor job: Types::FraudsterRegistrationJob
529
+ SENSITIVE: []
530
+ end
531
+
532
+ class StartSpeakerEnrollmentJobRequest
533
+ attr_accessor client_token: ::String
534
+ attr_accessor data_access_role_arn: ::String
535
+ attr_accessor domain_id: ::String
536
+ attr_accessor enrollment_config: Types::EnrollmentConfig
537
+ attr_accessor input_data_config: Types::InputDataConfig
538
+ attr_accessor job_name: ::String
539
+ attr_accessor output_data_config: Types::OutputDataConfig
540
+ SENSITIVE: [:job_name]
541
+ end
542
+
543
+ class StartSpeakerEnrollmentJobResponse
544
+ attr_accessor job: Types::SpeakerEnrollmentJob
545
+ SENSITIVE: []
546
+ end
547
+
548
+ class Tag
549
+ attr_accessor key: ::String
550
+ attr_accessor value: ::String
551
+ SENSITIVE: [:key, :value]
552
+ end
553
+
554
+ class TagResourceRequest
555
+ attr_accessor resource_arn: ::String
556
+ attr_accessor tags: ::Array[Types::Tag]
557
+ SENSITIVE: []
558
+ end
559
+
560
+ class TagResourceResponse < Aws::EmptyStructure
561
+ end
562
+
563
+ class ThrottlingException
564
+ attr_accessor message: ::String
565
+ SENSITIVE: []
566
+ end
567
+
568
+ class UntagResourceRequest
569
+ attr_accessor resource_arn: ::String
570
+ attr_accessor tag_keys: ::Array[::String]
571
+ SENSITIVE: []
572
+ end
573
+
574
+ class UntagResourceResponse < Aws::EmptyStructure
575
+ end
576
+
577
+ class UpdateDomainRequest
578
+ attr_accessor description: ::String
579
+ attr_accessor domain_id: ::String
580
+ attr_accessor name: ::String
581
+ attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
582
+ SENSITIVE: [:description, :name]
583
+ end
584
+
585
+ class UpdateDomainResponse
586
+ attr_accessor domain: Types::Domain
587
+ SENSITIVE: []
588
+ end
589
+
590
+ class UpdateWatchlistRequest
591
+ attr_accessor description: ::String
592
+ attr_accessor domain_id: ::String
593
+ attr_accessor name: ::String
594
+ attr_accessor watchlist_id: ::String
595
+ SENSITIVE: [:description, :name]
596
+ end
597
+
598
+ class UpdateWatchlistResponse
599
+ attr_accessor watchlist: Types::Watchlist
600
+ SENSITIVE: []
601
+ end
602
+
603
+ class ValidationException
604
+ attr_accessor message: ::String
605
+ SENSITIVE: []
606
+ end
607
+
608
+ class VoiceSpoofingRisk
609
+ attr_accessor risk_score: ::Integer
610
+ SENSITIVE: []
611
+ end
612
+
613
+ class Watchlist
614
+ attr_accessor created_at: ::Time
615
+ attr_accessor default_watchlist: bool
616
+ attr_accessor description: ::String
617
+ attr_accessor domain_id: ::String
618
+ attr_accessor name: ::String
619
+ attr_accessor updated_at: ::Time
620
+ attr_accessor watchlist_id: ::String
621
+ SENSITIVE: [:description, :name]
622
+ end
623
+
624
+ class WatchlistDetails
625
+ attr_accessor default_watchlist_id: ::String
626
+ SENSITIVE: []
627
+ end
628
+
629
+ class WatchlistSummary
630
+ attr_accessor created_at: ::Time
631
+ attr_accessor default_watchlist: bool
632
+ attr_accessor description: ::String
633
+ attr_accessor domain_id: ::String
634
+ attr_accessor name: ::String
635
+ attr_accessor updated_at: ::Time
636
+ attr_accessor watchlist_id: ::String
637
+ SENSITIVE: [:description, :name]
638
+ end
639
+ end
640
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
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
9
+ module VoiceID
10
+ module Waiters
11
+ end
12
+ end
13
+ end