localstack-core 4.10.1.dev7__py3-none-any.whl → 4.10.1.dev42__py3-none-any.whl
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.
- localstack/aws/api/acm/__init__.py +122 -122
- localstack/aws/api/apigateway/__init__.py +560 -559
- localstack/aws/api/cloudcontrol/__init__.py +63 -63
- localstack/aws/api/cloudformation/__init__.py +1040 -969
- localstack/aws/api/cloudwatch/__init__.py +375 -375
- localstack/aws/api/config/__init__.py +784 -786
- localstack/aws/api/dynamodb/__init__.py +753 -759
- localstack/aws/api/dynamodbstreams/__init__.py +74 -74
- localstack/aws/api/ec2/__init__.py +8901 -8818
- localstack/aws/api/es/__init__.py +453 -453
- localstack/aws/api/events/__init__.py +552 -552
- localstack/aws/api/firehose/__init__.py +541 -543
- localstack/aws/api/iam/__init__.py +639 -572
- localstack/aws/api/kinesis/__init__.py +235 -147
- localstack/aws/api/kms/__init__.py +340 -336
- localstack/aws/api/lambda_/__init__.py +574 -573
- localstack/aws/api/logs/__init__.py +676 -675
- localstack/aws/api/opensearch/__init__.py +814 -785
- localstack/aws/api/pipes/__init__.py +336 -336
- localstack/aws/api/redshift/__init__.py +1188 -1166
- localstack/aws/api/resource_groups/__init__.py +175 -175
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +67 -67
- localstack/aws/api/route53/__init__.py +254 -254
- localstack/aws/api/route53resolver/__init__.py +396 -396
- localstack/aws/api/s3/__init__.py +1350 -1349
- localstack/aws/api/s3control/__init__.py +594 -594
- localstack/aws/api/scheduler/__init__.py +118 -118
- localstack/aws/api/secretsmanager/__init__.py +193 -193
- localstack/aws/api/ses/__init__.py +227 -227
- localstack/aws/api/sns/__init__.py +115 -115
- localstack/aws/api/sqs/__init__.py +100 -100
- localstack/aws/api/ssm/__init__.py +1977 -1971
- localstack/aws/api/stepfunctions/__init__.py +323 -323
- localstack/aws/api/sts/__init__.py +90 -66
- localstack/aws/api/support/__init__.py +112 -112
- localstack/aws/api/swf/__init__.py +378 -386
- localstack/aws/api/transcribe/__init__.py +425 -425
- localstack/aws/handlers/service.py +11 -1
- localstack/aws/protocol/parser.py +1 -1
- localstack/aws/scaffold.py +15 -17
- localstack/cli/localstack.py +6 -1
- localstack/dev/kubernetes/__main__.py +38 -3
- localstack/services/apigateway/helpers.py +5 -9
- localstack/services/apigateway/legacy/provider.py +32 -9
- localstack/services/apigateway/patches.py +0 -9
- localstack/services/cloudformation/provider.py +2 -2
- localstack/services/cloudformation/v2/provider.py +6 -6
- localstack/services/kinesis/packages.py +1 -1
- localstack/services/kms/models.py +34 -4
- localstack/services/kms/provider.py +93 -16
- localstack/services/lambda_/api_utils.py +3 -1
- localstack/services/lambda_/packages.py +1 -1
- localstack/services/lambda_/provider.py +1 -1
- localstack/services/lambda_/runtimes.py +8 -3
- localstack/services/logs/provider.py +36 -19
- localstack/services/s3/provider.py +1 -1
- localstack/services/sns/v2/models.py +24 -1
- localstack/services/sns/v2/provider.py +144 -12
- localstack/services/sns/v2/utils.py +8 -0
- localstack/services/sqs/models.py +37 -10
- localstack/testing/snapshots/transformer_utility.py +2 -0
- localstack/testing/testselection/matching.py +0 -1
- localstack/utils/aws/client_types.py +0 -8
- localstack/utils/catalog/catalog_loader.py +111 -3
- localstack/utils/crypto.py +109 -0
- localstack/version.py +2 -2
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/METADATA +6 -5
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/RECORD +76 -76
- localstack_core-4.10.1.dev42.dist-info/plux.json +1 -0
- localstack_core-4.10.1.dev7.dist-info/plux.json +0 -1
- {localstack_core-4.10.1.dev7.data → localstack_core-4.10.1.dev42.data}/scripts/localstack +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.10.1.dev42.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.10.1.dev42.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/WHEEL +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.10.1.dev42.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from datetime import datetime
|
|
2
2
|
from enum import StrEnum
|
|
3
|
-
from typing import
|
|
3
|
+
from typing import TypedDict
|
|
4
4
|
|
|
5
5
|
from localstack.aws.api import RequestContext, ServiceException, ServiceRequest, handler
|
|
6
6
|
|
|
@@ -351,10 +351,10 @@ TimestampMilliseconds = int
|
|
|
351
351
|
|
|
352
352
|
|
|
353
353
|
class AbsoluteTimeRange(TypedDict, total=False):
|
|
354
|
-
StartTime:
|
|
355
|
-
EndTime:
|
|
356
|
-
First:
|
|
357
|
-
Last:
|
|
354
|
+
StartTime: TimestampMilliseconds | None
|
|
355
|
+
EndTime: TimestampMilliseconds | None
|
|
356
|
+
First: TimestampMilliseconds | None
|
|
357
|
+
Last: TimestampMilliseconds | None
|
|
358
358
|
|
|
359
359
|
|
|
360
360
|
class Tag(TypedDict, total=False):
|
|
@@ -362,15 +362,15 @@ class Tag(TypedDict, total=False):
|
|
|
362
362
|
Value: TagValue
|
|
363
363
|
|
|
364
364
|
|
|
365
|
-
TagList =
|
|
365
|
+
TagList = list[Tag]
|
|
366
366
|
|
|
367
367
|
|
|
368
368
|
class ChannelDefinition(TypedDict, total=False):
|
|
369
|
-
ChannelId:
|
|
370
|
-
ParticipantRole:
|
|
369
|
+
ChannelId: ChannelId | None
|
|
370
|
+
ParticipantRole: ParticipantRole | None
|
|
371
371
|
|
|
372
372
|
|
|
373
|
-
ChannelDefinitions =
|
|
373
|
+
ChannelDefinitions = list[ChannelDefinition]
|
|
374
374
|
|
|
375
375
|
|
|
376
376
|
class Summarization(TypedDict, total=False):
|
|
@@ -378,178 +378,178 @@ class Summarization(TypedDict, total=False):
|
|
|
378
378
|
|
|
379
379
|
|
|
380
380
|
class LanguageIdSettings(TypedDict, total=False):
|
|
381
|
-
VocabularyName:
|
|
382
|
-
VocabularyFilterName:
|
|
383
|
-
LanguageModelName:
|
|
381
|
+
VocabularyName: VocabularyName | None
|
|
382
|
+
VocabularyFilterName: VocabularyFilterName | None
|
|
383
|
+
LanguageModelName: ModelName | None
|
|
384
384
|
|
|
385
385
|
|
|
386
|
-
LanguageIdSettingsMap =
|
|
387
|
-
LanguageOptions =
|
|
388
|
-
PiiEntityTypes =
|
|
386
|
+
LanguageIdSettingsMap = dict[LanguageCode, LanguageIdSettings]
|
|
387
|
+
LanguageOptions = list[LanguageCode]
|
|
388
|
+
PiiEntityTypes = list[PiiEntityType]
|
|
389
389
|
|
|
390
390
|
|
|
391
391
|
class ContentRedaction(TypedDict, total=False):
|
|
392
392
|
RedactionType: RedactionType
|
|
393
393
|
RedactionOutput: RedactionOutput
|
|
394
|
-
PiiEntityTypes:
|
|
394
|
+
PiiEntityTypes: PiiEntityTypes | None
|
|
395
395
|
|
|
396
396
|
|
|
397
397
|
class CallAnalyticsJobSettings(TypedDict, total=False):
|
|
398
|
-
VocabularyName:
|
|
399
|
-
VocabularyFilterName:
|
|
400
|
-
VocabularyFilterMethod:
|
|
401
|
-
LanguageModelName:
|
|
402
|
-
ContentRedaction:
|
|
403
|
-
LanguageOptions:
|
|
404
|
-
LanguageIdSettings:
|
|
405
|
-
Summarization:
|
|
398
|
+
VocabularyName: VocabularyName | None
|
|
399
|
+
VocabularyFilterName: VocabularyFilterName | None
|
|
400
|
+
VocabularyFilterMethod: VocabularyFilterMethod | None
|
|
401
|
+
LanguageModelName: ModelName | None
|
|
402
|
+
ContentRedaction: ContentRedaction | None
|
|
403
|
+
LanguageOptions: LanguageOptions | None
|
|
404
|
+
LanguageIdSettings: LanguageIdSettingsMap | None
|
|
405
|
+
Summarization: Summarization | None
|
|
406
406
|
|
|
407
407
|
|
|
408
408
|
DateTime = datetime
|
|
409
409
|
|
|
410
410
|
|
|
411
411
|
class Transcript(TypedDict, total=False):
|
|
412
|
-
TranscriptFileUri:
|
|
413
|
-
RedactedTranscriptFileUri:
|
|
412
|
+
TranscriptFileUri: Uri | None
|
|
413
|
+
RedactedTranscriptFileUri: Uri | None
|
|
414
414
|
|
|
415
415
|
|
|
416
416
|
class Media(TypedDict, total=False):
|
|
417
|
-
MediaFileUri:
|
|
418
|
-
RedactedMediaFileUri:
|
|
417
|
+
MediaFileUri: Uri | None
|
|
418
|
+
RedactedMediaFileUri: Uri | None
|
|
419
419
|
|
|
420
420
|
|
|
421
421
|
class CallAnalyticsSkippedFeature(TypedDict, total=False):
|
|
422
|
-
Feature:
|
|
423
|
-
ReasonCode:
|
|
424
|
-
Message:
|
|
422
|
+
Feature: CallAnalyticsFeature | None
|
|
423
|
+
ReasonCode: CallAnalyticsSkippedReasonCode | None
|
|
424
|
+
Message: String | None
|
|
425
425
|
|
|
426
426
|
|
|
427
|
-
CallAnalyticsSkippedFeatureList =
|
|
427
|
+
CallAnalyticsSkippedFeatureList = list[CallAnalyticsSkippedFeature]
|
|
428
428
|
|
|
429
429
|
|
|
430
430
|
class CallAnalyticsJobDetails(TypedDict, total=False):
|
|
431
|
-
Skipped:
|
|
431
|
+
Skipped: CallAnalyticsSkippedFeatureList | None
|
|
432
432
|
|
|
433
433
|
|
|
434
434
|
class CallAnalyticsJob(TypedDict, total=False):
|
|
435
|
-
CallAnalyticsJobName:
|
|
436
|
-
CallAnalyticsJobStatus:
|
|
437
|
-
CallAnalyticsJobDetails:
|
|
438
|
-
LanguageCode:
|
|
439
|
-
MediaSampleRateHertz:
|
|
440
|
-
MediaFormat:
|
|
441
|
-
Media:
|
|
442
|
-
Transcript:
|
|
443
|
-
StartTime:
|
|
444
|
-
CreationTime:
|
|
445
|
-
CompletionTime:
|
|
446
|
-
FailureReason:
|
|
447
|
-
DataAccessRoleArn:
|
|
448
|
-
IdentifiedLanguageScore:
|
|
449
|
-
Settings:
|
|
450
|
-
ChannelDefinitions:
|
|
451
|
-
Tags:
|
|
435
|
+
CallAnalyticsJobName: CallAnalyticsJobName | None
|
|
436
|
+
CallAnalyticsJobStatus: CallAnalyticsJobStatus | None
|
|
437
|
+
CallAnalyticsJobDetails: CallAnalyticsJobDetails | None
|
|
438
|
+
LanguageCode: LanguageCode | None
|
|
439
|
+
MediaSampleRateHertz: MediaSampleRateHertz | None
|
|
440
|
+
MediaFormat: MediaFormat | None
|
|
441
|
+
Media: Media | None
|
|
442
|
+
Transcript: Transcript | None
|
|
443
|
+
StartTime: DateTime | None
|
|
444
|
+
CreationTime: DateTime | None
|
|
445
|
+
CompletionTime: DateTime | None
|
|
446
|
+
FailureReason: FailureReason | None
|
|
447
|
+
DataAccessRoleArn: DataAccessRoleArn | None
|
|
448
|
+
IdentifiedLanguageScore: IdentifiedLanguageScore | None
|
|
449
|
+
Settings: CallAnalyticsJobSettings | None
|
|
450
|
+
ChannelDefinitions: ChannelDefinitions | None
|
|
451
|
+
Tags: TagList | None
|
|
452
452
|
|
|
453
453
|
|
|
454
454
|
class CallAnalyticsJobSummary(TypedDict, total=False):
|
|
455
|
-
CallAnalyticsJobName:
|
|
456
|
-
CreationTime:
|
|
457
|
-
StartTime:
|
|
458
|
-
CompletionTime:
|
|
459
|
-
LanguageCode:
|
|
460
|
-
CallAnalyticsJobStatus:
|
|
461
|
-
CallAnalyticsJobDetails:
|
|
462
|
-
FailureReason:
|
|
455
|
+
CallAnalyticsJobName: CallAnalyticsJobName | None
|
|
456
|
+
CreationTime: DateTime | None
|
|
457
|
+
StartTime: DateTime | None
|
|
458
|
+
CompletionTime: DateTime | None
|
|
459
|
+
LanguageCode: LanguageCode | None
|
|
460
|
+
CallAnalyticsJobStatus: CallAnalyticsJobStatus | None
|
|
461
|
+
CallAnalyticsJobDetails: CallAnalyticsJobDetails | None
|
|
462
|
+
FailureReason: FailureReason | None
|
|
463
463
|
|
|
464
464
|
|
|
465
|
-
CallAnalyticsJobSummaries =
|
|
465
|
+
CallAnalyticsJobSummaries = list[CallAnalyticsJobSummary]
|
|
466
466
|
|
|
467
467
|
|
|
468
468
|
class RelativeTimeRange(TypedDict, total=False):
|
|
469
|
-
StartPercentage:
|
|
470
|
-
EndPercentage:
|
|
471
|
-
First:
|
|
472
|
-
Last:
|
|
469
|
+
StartPercentage: Percentage | None
|
|
470
|
+
EndPercentage: Percentage | None
|
|
471
|
+
First: Percentage | None
|
|
472
|
+
Last: Percentage | None
|
|
473
473
|
|
|
474
474
|
|
|
475
|
-
SentimentValueList =
|
|
475
|
+
SentimentValueList = list[SentimentValue]
|
|
476
476
|
|
|
477
477
|
|
|
478
478
|
class SentimentFilter(TypedDict, total=False):
|
|
479
479
|
Sentiments: SentimentValueList
|
|
480
|
-
AbsoluteTimeRange:
|
|
481
|
-
RelativeTimeRange:
|
|
482
|
-
ParticipantRole:
|
|
483
|
-
Negate:
|
|
480
|
+
AbsoluteTimeRange: AbsoluteTimeRange | None
|
|
481
|
+
RelativeTimeRange: RelativeTimeRange | None
|
|
482
|
+
ParticipantRole: ParticipantRole | None
|
|
483
|
+
Negate: Boolean | None
|
|
484
484
|
|
|
485
485
|
|
|
486
|
-
StringTargetList =
|
|
486
|
+
StringTargetList = list[NonEmptyString]
|
|
487
487
|
|
|
488
488
|
|
|
489
489
|
class TranscriptFilter(TypedDict, total=False):
|
|
490
490
|
TranscriptFilterType: TranscriptFilterType
|
|
491
|
-
AbsoluteTimeRange:
|
|
492
|
-
RelativeTimeRange:
|
|
493
|
-
ParticipantRole:
|
|
494
|
-
Negate:
|
|
491
|
+
AbsoluteTimeRange: AbsoluteTimeRange | None
|
|
492
|
+
RelativeTimeRange: RelativeTimeRange | None
|
|
493
|
+
ParticipantRole: ParticipantRole | None
|
|
494
|
+
Negate: Boolean | None
|
|
495
495
|
Targets: StringTargetList
|
|
496
496
|
|
|
497
497
|
|
|
498
498
|
class InterruptionFilter(TypedDict, total=False):
|
|
499
|
-
Threshold:
|
|
500
|
-
ParticipantRole:
|
|
501
|
-
AbsoluteTimeRange:
|
|
502
|
-
RelativeTimeRange:
|
|
503
|
-
Negate:
|
|
499
|
+
Threshold: TimestampMilliseconds | None
|
|
500
|
+
ParticipantRole: ParticipantRole | None
|
|
501
|
+
AbsoluteTimeRange: AbsoluteTimeRange | None
|
|
502
|
+
RelativeTimeRange: RelativeTimeRange | None
|
|
503
|
+
Negate: Boolean | None
|
|
504
504
|
|
|
505
505
|
|
|
506
506
|
class NonTalkTimeFilter(TypedDict, total=False):
|
|
507
|
-
Threshold:
|
|
508
|
-
AbsoluteTimeRange:
|
|
509
|
-
RelativeTimeRange:
|
|
510
|
-
Negate:
|
|
507
|
+
Threshold: TimestampMilliseconds | None
|
|
508
|
+
AbsoluteTimeRange: AbsoluteTimeRange | None
|
|
509
|
+
RelativeTimeRange: RelativeTimeRange | None
|
|
510
|
+
Negate: Boolean | None
|
|
511
511
|
|
|
512
512
|
|
|
513
513
|
class Rule(TypedDict, total=False):
|
|
514
|
-
NonTalkTimeFilter:
|
|
515
|
-
InterruptionFilter:
|
|
516
|
-
TranscriptFilter:
|
|
517
|
-
SentimentFilter:
|
|
514
|
+
NonTalkTimeFilter: NonTalkTimeFilter | None
|
|
515
|
+
InterruptionFilter: InterruptionFilter | None
|
|
516
|
+
TranscriptFilter: TranscriptFilter | None
|
|
517
|
+
SentimentFilter: SentimentFilter | None
|
|
518
518
|
|
|
519
519
|
|
|
520
|
-
RuleList =
|
|
520
|
+
RuleList = list[Rule]
|
|
521
521
|
|
|
522
522
|
|
|
523
523
|
class CategoryProperties(TypedDict, total=False):
|
|
524
|
-
CategoryName:
|
|
525
|
-
Rules:
|
|
526
|
-
CreateTime:
|
|
527
|
-
LastUpdateTime:
|
|
528
|
-
Tags:
|
|
529
|
-
InputType:
|
|
524
|
+
CategoryName: CategoryName | None
|
|
525
|
+
Rules: RuleList | None
|
|
526
|
+
CreateTime: DateTime | None
|
|
527
|
+
LastUpdateTime: DateTime | None
|
|
528
|
+
Tags: TagList | None
|
|
529
|
+
InputType: InputType | None
|
|
530
530
|
|
|
531
531
|
|
|
532
|
-
CategoryPropertiesList =
|
|
532
|
+
CategoryPropertiesList = list[CategoryProperties]
|
|
533
533
|
|
|
534
534
|
|
|
535
535
|
class ClinicalNoteGenerationSettings(TypedDict, total=False):
|
|
536
|
-
NoteTemplate:
|
|
536
|
+
NoteTemplate: MedicalScribeNoteTemplate | None
|
|
537
537
|
|
|
538
538
|
|
|
539
539
|
class CreateCallAnalyticsCategoryRequest(ServiceRequest):
|
|
540
540
|
CategoryName: CategoryName
|
|
541
541
|
Rules: RuleList
|
|
542
|
-
Tags:
|
|
543
|
-
InputType:
|
|
542
|
+
Tags: TagList | None
|
|
543
|
+
InputType: InputType | None
|
|
544
544
|
|
|
545
545
|
|
|
546
546
|
class CreateCallAnalyticsCategoryResponse(TypedDict, total=False):
|
|
547
|
-
CategoryProperties:
|
|
547
|
+
CategoryProperties: CategoryProperties | None
|
|
548
548
|
|
|
549
549
|
|
|
550
550
|
class InputDataConfig(TypedDict, total=False):
|
|
551
551
|
S3Uri: Uri
|
|
552
|
-
TuningDataS3Uri:
|
|
552
|
+
TuningDataS3Uri: Uri | None
|
|
553
553
|
DataAccessRoleArn: DataAccessRoleArn
|
|
554
554
|
|
|
555
555
|
|
|
@@ -558,68 +558,68 @@ class CreateLanguageModelRequest(ServiceRequest):
|
|
|
558
558
|
BaseModelName: BaseModelName
|
|
559
559
|
ModelName: ModelName
|
|
560
560
|
InputDataConfig: InputDataConfig
|
|
561
|
-
Tags:
|
|
561
|
+
Tags: TagList | None
|
|
562
562
|
|
|
563
563
|
|
|
564
564
|
class CreateLanguageModelResponse(TypedDict, total=False):
|
|
565
|
-
LanguageCode:
|
|
566
|
-
BaseModelName:
|
|
567
|
-
ModelName:
|
|
568
|
-
InputDataConfig:
|
|
569
|
-
ModelStatus:
|
|
565
|
+
LanguageCode: CLMLanguageCode | None
|
|
566
|
+
BaseModelName: BaseModelName | None
|
|
567
|
+
ModelName: ModelName | None
|
|
568
|
+
InputDataConfig: InputDataConfig | None
|
|
569
|
+
ModelStatus: ModelStatus | None
|
|
570
570
|
|
|
571
571
|
|
|
572
572
|
class CreateMedicalVocabularyRequest(ServiceRequest):
|
|
573
573
|
VocabularyName: VocabularyName
|
|
574
574
|
LanguageCode: LanguageCode
|
|
575
575
|
VocabularyFileUri: Uri
|
|
576
|
-
Tags:
|
|
576
|
+
Tags: TagList | None
|
|
577
577
|
|
|
578
578
|
|
|
579
579
|
class CreateMedicalVocabularyResponse(TypedDict, total=False):
|
|
580
|
-
VocabularyName:
|
|
581
|
-
LanguageCode:
|
|
582
|
-
VocabularyState:
|
|
583
|
-
LastModifiedTime:
|
|
584
|
-
FailureReason:
|
|
580
|
+
VocabularyName: VocabularyName | None
|
|
581
|
+
LanguageCode: LanguageCode | None
|
|
582
|
+
VocabularyState: VocabularyState | None
|
|
583
|
+
LastModifiedTime: DateTime | None
|
|
584
|
+
FailureReason: FailureReason | None
|
|
585
585
|
|
|
586
586
|
|
|
587
|
-
Words =
|
|
587
|
+
Words = list[Word]
|
|
588
588
|
|
|
589
589
|
|
|
590
590
|
class CreateVocabularyFilterRequest(ServiceRequest):
|
|
591
591
|
VocabularyFilterName: VocabularyFilterName
|
|
592
592
|
LanguageCode: LanguageCode
|
|
593
|
-
Words:
|
|
594
|
-
VocabularyFilterFileUri:
|
|
595
|
-
Tags:
|
|
596
|
-
DataAccessRoleArn:
|
|
593
|
+
Words: Words | None
|
|
594
|
+
VocabularyFilterFileUri: Uri | None
|
|
595
|
+
Tags: TagList | None
|
|
596
|
+
DataAccessRoleArn: DataAccessRoleArn | None
|
|
597
597
|
|
|
598
598
|
|
|
599
599
|
class CreateVocabularyFilterResponse(TypedDict, total=False):
|
|
600
|
-
VocabularyFilterName:
|
|
601
|
-
LanguageCode:
|
|
602
|
-
LastModifiedTime:
|
|
600
|
+
VocabularyFilterName: VocabularyFilterName | None
|
|
601
|
+
LanguageCode: LanguageCode | None
|
|
602
|
+
LastModifiedTime: DateTime | None
|
|
603
603
|
|
|
604
604
|
|
|
605
|
-
Phrases =
|
|
605
|
+
Phrases = list[Phrase]
|
|
606
606
|
|
|
607
607
|
|
|
608
608
|
class CreateVocabularyRequest(ServiceRequest):
|
|
609
609
|
VocabularyName: VocabularyName
|
|
610
610
|
LanguageCode: LanguageCode
|
|
611
|
-
Phrases:
|
|
612
|
-
VocabularyFileUri:
|
|
613
|
-
Tags:
|
|
614
|
-
DataAccessRoleArn:
|
|
611
|
+
Phrases: Phrases | None
|
|
612
|
+
VocabularyFileUri: Uri | None
|
|
613
|
+
Tags: TagList | None
|
|
614
|
+
DataAccessRoleArn: DataAccessRoleArn | None
|
|
615
615
|
|
|
616
616
|
|
|
617
617
|
class CreateVocabularyResponse(TypedDict, total=False):
|
|
618
|
-
VocabularyName:
|
|
619
|
-
LanguageCode:
|
|
620
|
-
VocabularyState:
|
|
621
|
-
LastModifiedTime:
|
|
622
|
-
FailureReason:
|
|
618
|
+
VocabularyName: VocabularyName | None
|
|
619
|
+
LanguageCode: LanguageCode | None
|
|
620
|
+
VocabularyState: VocabularyState | None
|
|
621
|
+
LastModifiedTime: DateTime | None
|
|
622
|
+
FailureReason: FailureReason | None
|
|
623
623
|
|
|
624
624
|
|
|
625
625
|
class DeleteCallAnalyticsCategoryRequest(ServiceRequest):
|
|
@@ -671,19 +671,19 @@ class DescribeLanguageModelRequest(ServiceRequest):
|
|
|
671
671
|
|
|
672
672
|
|
|
673
673
|
class LanguageModel(TypedDict, total=False):
|
|
674
|
-
ModelName:
|
|
675
|
-
CreateTime:
|
|
676
|
-
LastModifiedTime:
|
|
677
|
-
LanguageCode:
|
|
678
|
-
BaseModelName:
|
|
679
|
-
ModelStatus:
|
|
680
|
-
UpgradeAvailability:
|
|
681
|
-
FailureReason:
|
|
682
|
-
InputDataConfig:
|
|
674
|
+
ModelName: ModelName | None
|
|
675
|
+
CreateTime: DateTime | None
|
|
676
|
+
LastModifiedTime: DateTime | None
|
|
677
|
+
LanguageCode: CLMLanguageCode | None
|
|
678
|
+
BaseModelName: BaseModelName | None
|
|
679
|
+
ModelStatus: ModelStatus | None
|
|
680
|
+
UpgradeAvailability: Boolean | None
|
|
681
|
+
FailureReason: FailureReason | None
|
|
682
|
+
InputDataConfig: InputDataConfig | None
|
|
683
683
|
|
|
684
684
|
|
|
685
685
|
class DescribeLanguageModelResponse(TypedDict, total=False):
|
|
686
|
-
LanguageModel:
|
|
686
|
+
LanguageModel: LanguageModel | None
|
|
687
687
|
|
|
688
688
|
|
|
689
689
|
class GetCallAnalyticsCategoryRequest(ServiceRequest):
|
|
@@ -691,7 +691,7 @@ class GetCallAnalyticsCategoryRequest(ServiceRequest):
|
|
|
691
691
|
|
|
692
692
|
|
|
693
693
|
class GetCallAnalyticsCategoryResponse(TypedDict, total=False):
|
|
694
|
-
CategoryProperties:
|
|
694
|
+
CategoryProperties: CategoryProperties | None
|
|
695
695
|
|
|
696
696
|
|
|
697
697
|
class GetCallAnalyticsJobRequest(ServiceRequest):
|
|
@@ -699,7 +699,7 @@ class GetCallAnalyticsJobRequest(ServiceRequest):
|
|
|
699
699
|
|
|
700
700
|
|
|
701
701
|
class GetCallAnalyticsJobResponse(TypedDict, total=False):
|
|
702
|
-
CallAnalyticsJob:
|
|
702
|
+
CallAnalyticsJob: CallAnalyticsJob | None
|
|
703
703
|
|
|
704
704
|
|
|
705
705
|
class GetMedicalScribeJobRequest(ServiceRequest):
|
|
@@ -711,17 +711,17 @@ class MedicalScribeChannelDefinition(TypedDict, total=False):
|
|
|
711
711
|
ParticipantRole: MedicalScribeParticipantRole
|
|
712
712
|
|
|
713
713
|
|
|
714
|
-
MedicalScribeChannelDefinitions =
|
|
714
|
+
MedicalScribeChannelDefinitions = list[MedicalScribeChannelDefinition]
|
|
715
715
|
|
|
716
716
|
|
|
717
717
|
class MedicalScribeSettings(TypedDict, total=False):
|
|
718
|
-
ShowSpeakerLabels:
|
|
719
|
-
MaxSpeakerLabels:
|
|
720
|
-
ChannelIdentification:
|
|
721
|
-
VocabularyName:
|
|
722
|
-
VocabularyFilterName:
|
|
723
|
-
VocabularyFilterMethod:
|
|
724
|
-
ClinicalNoteGenerationSettings:
|
|
718
|
+
ShowSpeakerLabels: Boolean | None
|
|
719
|
+
MaxSpeakerLabels: MaxSpeakers | None
|
|
720
|
+
ChannelIdentification: Boolean | None
|
|
721
|
+
VocabularyName: VocabularyName | None
|
|
722
|
+
VocabularyFilterName: VocabularyFilterName | None
|
|
723
|
+
VocabularyFilterMethod: VocabularyFilterMethod | None
|
|
724
|
+
ClinicalNoteGenerationSettings: ClinicalNoteGenerationSettings | None
|
|
725
725
|
|
|
726
726
|
|
|
727
727
|
class MedicalScribeOutput(TypedDict, total=False):
|
|
@@ -730,24 +730,24 @@ class MedicalScribeOutput(TypedDict, total=False):
|
|
|
730
730
|
|
|
731
731
|
|
|
732
732
|
class MedicalScribeJob(TypedDict, total=False):
|
|
733
|
-
MedicalScribeJobName:
|
|
734
|
-
MedicalScribeJobStatus:
|
|
735
|
-
LanguageCode:
|
|
736
|
-
Media:
|
|
737
|
-
MedicalScribeOutput:
|
|
738
|
-
StartTime:
|
|
739
|
-
CreationTime:
|
|
740
|
-
CompletionTime:
|
|
741
|
-
FailureReason:
|
|
742
|
-
Settings:
|
|
743
|
-
DataAccessRoleArn:
|
|
744
|
-
ChannelDefinitions:
|
|
745
|
-
MedicalScribeContextProvided:
|
|
746
|
-
Tags:
|
|
733
|
+
MedicalScribeJobName: TranscriptionJobName | None
|
|
734
|
+
MedicalScribeJobStatus: MedicalScribeJobStatus | None
|
|
735
|
+
LanguageCode: MedicalScribeLanguageCode | None
|
|
736
|
+
Media: Media | None
|
|
737
|
+
MedicalScribeOutput: MedicalScribeOutput | None
|
|
738
|
+
StartTime: DateTime | None
|
|
739
|
+
CreationTime: DateTime | None
|
|
740
|
+
CompletionTime: DateTime | None
|
|
741
|
+
FailureReason: FailureReason | None
|
|
742
|
+
Settings: MedicalScribeSettings | None
|
|
743
|
+
DataAccessRoleArn: DataAccessRoleArn | None
|
|
744
|
+
ChannelDefinitions: MedicalScribeChannelDefinitions | None
|
|
745
|
+
MedicalScribeContextProvided: Boolean | None
|
|
746
|
+
Tags: TagList | None
|
|
747
747
|
|
|
748
748
|
|
|
749
749
|
class GetMedicalScribeJobResponse(TypedDict, total=False):
|
|
750
|
-
MedicalScribeJob:
|
|
750
|
+
MedicalScribeJob: MedicalScribeJob | None
|
|
751
751
|
|
|
752
752
|
|
|
753
753
|
class GetMedicalTranscriptionJobRequest(ServiceRequest):
|
|
@@ -755,39 +755,39 @@ class GetMedicalTranscriptionJobRequest(ServiceRequest):
|
|
|
755
755
|
|
|
756
756
|
|
|
757
757
|
class MedicalTranscriptionSetting(TypedDict, total=False):
|
|
758
|
-
ShowSpeakerLabels:
|
|
759
|
-
MaxSpeakerLabels:
|
|
760
|
-
ChannelIdentification:
|
|
761
|
-
ShowAlternatives:
|
|
762
|
-
MaxAlternatives:
|
|
763
|
-
VocabularyName:
|
|
758
|
+
ShowSpeakerLabels: Boolean | None
|
|
759
|
+
MaxSpeakerLabels: MaxSpeakers | None
|
|
760
|
+
ChannelIdentification: Boolean | None
|
|
761
|
+
ShowAlternatives: Boolean | None
|
|
762
|
+
MaxAlternatives: MaxAlternatives | None
|
|
763
|
+
VocabularyName: VocabularyName | None
|
|
764
764
|
|
|
765
765
|
|
|
766
766
|
class MedicalTranscript(TypedDict, total=False):
|
|
767
|
-
TranscriptFileUri:
|
|
767
|
+
TranscriptFileUri: Uri | None
|
|
768
768
|
|
|
769
769
|
|
|
770
770
|
class MedicalTranscriptionJob(TypedDict, total=False):
|
|
771
|
-
MedicalTranscriptionJobName:
|
|
772
|
-
TranscriptionJobStatus:
|
|
773
|
-
LanguageCode:
|
|
774
|
-
MediaSampleRateHertz:
|
|
775
|
-
MediaFormat:
|
|
776
|
-
Media:
|
|
777
|
-
Transcript:
|
|
778
|
-
StartTime:
|
|
779
|
-
CreationTime:
|
|
780
|
-
CompletionTime:
|
|
781
|
-
FailureReason:
|
|
782
|
-
Settings:
|
|
783
|
-
ContentIdentificationType:
|
|
784
|
-
Specialty:
|
|
785
|
-
Type:
|
|
786
|
-
Tags:
|
|
771
|
+
MedicalTranscriptionJobName: TranscriptionJobName | None
|
|
772
|
+
TranscriptionJobStatus: TranscriptionJobStatus | None
|
|
773
|
+
LanguageCode: LanguageCode | None
|
|
774
|
+
MediaSampleRateHertz: MedicalMediaSampleRateHertz | None
|
|
775
|
+
MediaFormat: MediaFormat | None
|
|
776
|
+
Media: Media | None
|
|
777
|
+
Transcript: MedicalTranscript | None
|
|
778
|
+
StartTime: DateTime | None
|
|
779
|
+
CreationTime: DateTime | None
|
|
780
|
+
CompletionTime: DateTime | None
|
|
781
|
+
FailureReason: FailureReason | None
|
|
782
|
+
Settings: MedicalTranscriptionSetting | None
|
|
783
|
+
ContentIdentificationType: MedicalContentIdentificationType | None
|
|
784
|
+
Specialty: Specialty | None
|
|
785
|
+
Type: Type | None
|
|
786
|
+
Tags: TagList | None
|
|
787
787
|
|
|
788
788
|
|
|
789
789
|
class GetMedicalTranscriptionJobResponse(TypedDict, total=False):
|
|
790
|
-
MedicalTranscriptionJob:
|
|
790
|
+
MedicalTranscriptionJob: MedicalTranscriptionJob | None
|
|
791
791
|
|
|
792
792
|
|
|
793
793
|
class GetMedicalVocabularyRequest(ServiceRequest):
|
|
@@ -795,93 +795,93 @@ class GetMedicalVocabularyRequest(ServiceRequest):
|
|
|
795
795
|
|
|
796
796
|
|
|
797
797
|
class GetMedicalVocabularyResponse(TypedDict, total=False):
|
|
798
|
-
VocabularyName:
|
|
799
|
-
LanguageCode:
|
|
800
|
-
VocabularyState:
|
|
801
|
-
LastModifiedTime:
|
|
802
|
-
FailureReason:
|
|
803
|
-
DownloadUri:
|
|
798
|
+
VocabularyName: VocabularyName | None
|
|
799
|
+
LanguageCode: LanguageCode | None
|
|
800
|
+
VocabularyState: VocabularyState | None
|
|
801
|
+
LastModifiedTime: DateTime | None
|
|
802
|
+
FailureReason: FailureReason | None
|
|
803
|
+
DownloadUri: Uri | None
|
|
804
804
|
|
|
805
805
|
|
|
806
806
|
class GetTranscriptionJobRequest(ServiceRequest):
|
|
807
807
|
TranscriptionJobName: TranscriptionJobName
|
|
808
808
|
|
|
809
809
|
|
|
810
|
-
ToxicityCategories =
|
|
810
|
+
ToxicityCategories = list[ToxicityCategory]
|
|
811
811
|
|
|
812
812
|
|
|
813
813
|
class ToxicityDetectionSettings(TypedDict, total=False):
|
|
814
814
|
ToxicityCategories: ToxicityCategories
|
|
815
815
|
|
|
816
816
|
|
|
817
|
-
ToxicityDetection =
|
|
818
|
-
SubtitleFileUris =
|
|
819
|
-
SubtitleFormats =
|
|
817
|
+
ToxicityDetection = list[ToxicityDetectionSettings]
|
|
818
|
+
SubtitleFileUris = list[Uri]
|
|
819
|
+
SubtitleFormats = list[SubtitleFormat]
|
|
820
820
|
|
|
821
821
|
|
|
822
822
|
class SubtitlesOutput(TypedDict, total=False):
|
|
823
|
-
Formats:
|
|
824
|
-
SubtitleFileUris:
|
|
825
|
-
OutputStartIndex:
|
|
823
|
+
Formats: SubtitleFormats | None
|
|
824
|
+
SubtitleFileUris: SubtitleFileUris | None
|
|
825
|
+
OutputStartIndex: SubtitleOutputStartIndex | None
|
|
826
826
|
|
|
827
827
|
|
|
828
828
|
class LanguageCodeItem(TypedDict, total=False):
|
|
829
|
-
LanguageCode:
|
|
830
|
-
DurationInSeconds:
|
|
829
|
+
LanguageCode: LanguageCode | None
|
|
830
|
+
DurationInSeconds: DurationInSeconds | None
|
|
831
831
|
|
|
832
832
|
|
|
833
|
-
LanguageCodeList =
|
|
833
|
+
LanguageCodeList = list[LanguageCodeItem]
|
|
834
834
|
|
|
835
835
|
|
|
836
836
|
class JobExecutionSettings(TypedDict, total=False):
|
|
837
|
-
AllowDeferredExecution:
|
|
838
|
-
DataAccessRoleArn:
|
|
837
|
+
AllowDeferredExecution: Boolean | None
|
|
838
|
+
DataAccessRoleArn: DataAccessRoleArn | None
|
|
839
839
|
|
|
840
840
|
|
|
841
841
|
class ModelSettings(TypedDict, total=False):
|
|
842
|
-
LanguageModelName:
|
|
842
|
+
LanguageModelName: ModelName | None
|
|
843
843
|
|
|
844
844
|
|
|
845
845
|
class Settings(TypedDict, total=False):
|
|
846
|
-
VocabularyName:
|
|
847
|
-
ShowSpeakerLabels:
|
|
848
|
-
MaxSpeakerLabels:
|
|
849
|
-
ChannelIdentification:
|
|
850
|
-
ShowAlternatives:
|
|
851
|
-
MaxAlternatives:
|
|
852
|
-
VocabularyFilterName:
|
|
853
|
-
VocabularyFilterMethod:
|
|
846
|
+
VocabularyName: VocabularyName | None
|
|
847
|
+
ShowSpeakerLabels: Boolean | None
|
|
848
|
+
MaxSpeakerLabels: MaxSpeakers | None
|
|
849
|
+
ChannelIdentification: Boolean | None
|
|
850
|
+
ShowAlternatives: Boolean | None
|
|
851
|
+
MaxAlternatives: MaxAlternatives | None
|
|
852
|
+
VocabularyFilterName: VocabularyFilterName | None
|
|
853
|
+
VocabularyFilterMethod: VocabularyFilterMethod | None
|
|
854
854
|
|
|
855
855
|
|
|
856
856
|
class TranscriptionJob(TypedDict, total=False):
|
|
857
|
-
TranscriptionJobName:
|
|
858
|
-
TranscriptionJobStatus:
|
|
859
|
-
LanguageCode:
|
|
860
|
-
MediaSampleRateHertz:
|
|
861
|
-
MediaFormat:
|
|
862
|
-
Media:
|
|
863
|
-
Transcript:
|
|
864
|
-
StartTime:
|
|
865
|
-
CreationTime:
|
|
866
|
-
CompletionTime:
|
|
867
|
-
FailureReason:
|
|
868
|
-
Settings:
|
|
869
|
-
ModelSettings:
|
|
870
|
-
JobExecutionSettings:
|
|
871
|
-
ContentRedaction:
|
|
872
|
-
IdentifyLanguage:
|
|
873
|
-
IdentifyMultipleLanguages:
|
|
874
|
-
LanguageOptions:
|
|
875
|
-
IdentifiedLanguageScore:
|
|
876
|
-
LanguageCodes:
|
|
877
|
-
Tags:
|
|
878
|
-
Subtitles:
|
|
879
|
-
LanguageIdSettings:
|
|
880
|
-
ToxicityDetection:
|
|
857
|
+
TranscriptionJobName: TranscriptionJobName | None
|
|
858
|
+
TranscriptionJobStatus: TranscriptionJobStatus | None
|
|
859
|
+
LanguageCode: LanguageCode | None
|
|
860
|
+
MediaSampleRateHertz: MediaSampleRateHertz | None
|
|
861
|
+
MediaFormat: MediaFormat | None
|
|
862
|
+
Media: Media | None
|
|
863
|
+
Transcript: Transcript | None
|
|
864
|
+
StartTime: DateTime | None
|
|
865
|
+
CreationTime: DateTime | None
|
|
866
|
+
CompletionTime: DateTime | None
|
|
867
|
+
FailureReason: FailureReason | None
|
|
868
|
+
Settings: Settings | None
|
|
869
|
+
ModelSettings: ModelSettings | None
|
|
870
|
+
JobExecutionSettings: JobExecutionSettings | None
|
|
871
|
+
ContentRedaction: ContentRedaction | None
|
|
872
|
+
IdentifyLanguage: Boolean | None
|
|
873
|
+
IdentifyMultipleLanguages: Boolean | None
|
|
874
|
+
LanguageOptions: LanguageOptions | None
|
|
875
|
+
IdentifiedLanguageScore: IdentifiedLanguageScore | None
|
|
876
|
+
LanguageCodes: LanguageCodeList | None
|
|
877
|
+
Tags: TagList | None
|
|
878
|
+
Subtitles: SubtitlesOutput | None
|
|
879
|
+
LanguageIdSettings: LanguageIdSettingsMap | None
|
|
880
|
+
ToxicityDetection: ToxicityDetection | None
|
|
881
881
|
|
|
882
882
|
|
|
883
883
|
class GetTranscriptionJobResponse(TypedDict, total=False):
|
|
884
|
-
TranscriptionJob:
|
|
884
|
+
TranscriptionJob: TranscriptionJob | None
|
|
885
885
|
|
|
886
886
|
|
|
887
887
|
class GetVocabularyFilterRequest(ServiceRequest):
|
|
@@ -889,10 +889,10 @@ class GetVocabularyFilterRequest(ServiceRequest):
|
|
|
889
889
|
|
|
890
890
|
|
|
891
891
|
class GetVocabularyFilterResponse(TypedDict, total=False):
|
|
892
|
-
VocabularyFilterName:
|
|
893
|
-
LanguageCode:
|
|
894
|
-
LastModifiedTime:
|
|
895
|
-
DownloadUri:
|
|
892
|
+
VocabularyFilterName: VocabularyFilterName | None
|
|
893
|
+
LanguageCode: LanguageCode | None
|
|
894
|
+
LastModifiedTime: DateTime | None
|
|
895
|
+
DownloadUri: Uri | None
|
|
896
896
|
|
|
897
897
|
|
|
898
898
|
class GetVocabularyRequest(ServiceRequest):
|
|
@@ -900,132 +900,132 @@ class GetVocabularyRequest(ServiceRequest):
|
|
|
900
900
|
|
|
901
901
|
|
|
902
902
|
class GetVocabularyResponse(TypedDict, total=False):
|
|
903
|
-
VocabularyName:
|
|
904
|
-
LanguageCode:
|
|
905
|
-
VocabularyState:
|
|
906
|
-
LastModifiedTime:
|
|
907
|
-
FailureReason:
|
|
908
|
-
DownloadUri:
|
|
903
|
+
VocabularyName: VocabularyName | None
|
|
904
|
+
LanguageCode: LanguageCode | None
|
|
905
|
+
VocabularyState: VocabularyState | None
|
|
906
|
+
LastModifiedTime: DateTime | None
|
|
907
|
+
FailureReason: FailureReason | None
|
|
908
|
+
DownloadUri: Uri | None
|
|
909
909
|
|
|
910
910
|
|
|
911
|
-
KMSEncryptionContextMap =
|
|
911
|
+
KMSEncryptionContextMap = dict[NonEmptyString, NonEmptyString]
|
|
912
912
|
|
|
913
913
|
|
|
914
914
|
class ListCallAnalyticsCategoriesRequest(ServiceRequest):
|
|
915
|
-
NextToken:
|
|
916
|
-
MaxResults:
|
|
915
|
+
NextToken: NextToken | None
|
|
916
|
+
MaxResults: MaxResults | None
|
|
917
917
|
|
|
918
918
|
|
|
919
919
|
class ListCallAnalyticsCategoriesResponse(TypedDict, total=False):
|
|
920
|
-
NextToken:
|
|
921
|
-
Categories:
|
|
920
|
+
NextToken: NextToken | None
|
|
921
|
+
Categories: CategoryPropertiesList | None
|
|
922
922
|
|
|
923
923
|
|
|
924
924
|
class ListCallAnalyticsJobsRequest(ServiceRequest):
|
|
925
|
-
Status:
|
|
926
|
-
JobNameContains:
|
|
927
|
-
NextToken:
|
|
928
|
-
MaxResults:
|
|
925
|
+
Status: CallAnalyticsJobStatus | None
|
|
926
|
+
JobNameContains: CallAnalyticsJobName | None
|
|
927
|
+
NextToken: NextToken | None
|
|
928
|
+
MaxResults: MaxResults | None
|
|
929
929
|
|
|
930
930
|
|
|
931
931
|
class ListCallAnalyticsJobsResponse(TypedDict, total=False):
|
|
932
|
-
Status:
|
|
933
|
-
NextToken:
|
|
934
|
-
CallAnalyticsJobSummaries:
|
|
932
|
+
Status: CallAnalyticsJobStatus | None
|
|
933
|
+
NextToken: NextToken | None
|
|
934
|
+
CallAnalyticsJobSummaries: CallAnalyticsJobSummaries | None
|
|
935
935
|
|
|
936
936
|
|
|
937
937
|
class ListLanguageModelsRequest(ServiceRequest):
|
|
938
|
-
StatusEquals:
|
|
939
|
-
NameContains:
|
|
940
|
-
NextToken:
|
|
941
|
-
MaxResults:
|
|
938
|
+
StatusEquals: ModelStatus | None
|
|
939
|
+
NameContains: ModelName | None
|
|
940
|
+
NextToken: NextToken | None
|
|
941
|
+
MaxResults: MaxResults | None
|
|
942
942
|
|
|
943
943
|
|
|
944
|
-
Models =
|
|
944
|
+
Models = list[LanguageModel]
|
|
945
945
|
|
|
946
946
|
|
|
947
947
|
class ListLanguageModelsResponse(TypedDict, total=False):
|
|
948
|
-
NextToken:
|
|
949
|
-
Models:
|
|
948
|
+
NextToken: NextToken | None
|
|
949
|
+
Models: Models | None
|
|
950
950
|
|
|
951
951
|
|
|
952
952
|
class ListMedicalScribeJobsRequest(ServiceRequest):
|
|
953
|
-
Status:
|
|
954
|
-
JobNameContains:
|
|
955
|
-
NextToken:
|
|
956
|
-
MaxResults:
|
|
953
|
+
Status: MedicalScribeJobStatus | None
|
|
954
|
+
JobNameContains: TranscriptionJobName | None
|
|
955
|
+
NextToken: NextToken | None
|
|
956
|
+
MaxResults: MaxResults | None
|
|
957
957
|
|
|
958
958
|
|
|
959
959
|
class MedicalScribeJobSummary(TypedDict, total=False):
|
|
960
|
-
MedicalScribeJobName:
|
|
961
|
-
CreationTime:
|
|
962
|
-
StartTime:
|
|
963
|
-
CompletionTime:
|
|
964
|
-
LanguageCode:
|
|
965
|
-
MedicalScribeJobStatus:
|
|
966
|
-
FailureReason:
|
|
960
|
+
MedicalScribeJobName: TranscriptionJobName | None
|
|
961
|
+
CreationTime: DateTime | None
|
|
962
|
+
StartTime: DateTime | None
|
|
963
|
+
CompletionTime: DateTime | None
|
|
964
|
+
LanguageCode: MedicalScribeLanguageCode | None
|
|
965
|
+
MedicalScribeJobStatus: MedicalScribeJobStatus | None
|
|
966
|
+
FailureReason: FailureReason | None
|
|
967
967
|
|
|
968
968
|
|
|
969
|
-
MedicalScribeJobSummaries =
|
|
969
|
+
MedicalScribeJobSummaries = list[MedicalScribeJobSummary]
|
|
970
970
|
|
|
971
971
|
|
|
972
972
|
class ListMedicalScribeJobsResponse(TypedDict, total=False):
|
|
973
|
-
Status:
|
|
974
|
-
NextToken:
|
|
975
|
-
MedicalScribeJobSummaries:
|
|
973
|
+
Status: MedicalScribeJobStatus | None
|
|
974
|
+
NextToken: NextToken | None
|
|
975
|
+
MedicalScribeJobSummaries: MedicalScribeJobSummaries | None
|
|
976
976
|
|
|
977
977
|
|
|
978
978
|
class ListMedicalTranscriptionJobsRequest(ServiceRequest):
|
|
979
|
-
Status:
|
|
980
|
-
JobNameContains:
|
|
981
|
-
NextToken:
|
|
982
|
-
MaxResults:
|
|
979
|
+
Status: TranscriptionJobStatus | None
|
|
980
|
+
JobNameContains: TranscriptionJobName | None
|
|
981
|
+
NextToken: NextToken | None
|
|
982
|
+
MaxResults: MaxResults | None
|
|
983
983
|
|
|
984
984
|
|
|
985
985
|
class MedicalTranscriptionJobSummary(TypedDict, total=False):
|
|
986
|
-
MedicalTranscriptionJobName:
|
|
987
|
-
CreationTime:
|
|
988
|
-
StartTime:
|
|
989
|
-
CompletionTime:
|
|
990
|
-
LanguageCode:
|
|
991
|
-
TranscriptionJobStatus:
|
|
992
|
-
FailureReason:
|
|
993
|
-
OutputLocationType:
|
|
994
|
-
Specialty:
|
|
995
|
-
ContentIdentificationType:
|
|
996
|
-
Type:
|
|
986
|
+
MedicalTranscriptionJobName: TranscriptionJobName | None
|
|
987
|
+
CreationTime: DateTime | None
|
|
988
|
+
StartTime: DateTime | None
|
|
989
|
+
CompletionTime: DateTime | None
|
|
990
|
+
LanguageCode: LanguageCode | None
|
|
991
|
+
TranscriptionJobStatus: TranscriptionJobStatus | None
|
|
992
|
+
FailureReason: FailureReason | None
|
|
993
|
+
OutputLocationType: OutputLocationType | None
|
|
994
|
+
Specialty: Specialty | None
|
|
995
|
+
ContentIdentificationType: MedicalContentIdentificationType | None
|
|
996
|
+
Type: Type | None
|
|
997
997
|
|
|
998
998
|
|
|
999
|
-
MedicalTranscriptionJobSummaries =
|
|
999
|
+
MedicalTranscriptionJobSummaries = list[MedicalTranscriptionJobSummary]
|
|
1000
1000
|
|
|
1001
1001
|
|
|
1002
1002
|
class ListMedicalTranscriptionJobsResponse(TypedDict, total=False):
|
|
1003
|
-
Status:
|
|
1004
|
-
NextToken:
|
|
1005
|
-
MedicalTranscriptionJobSummaries:
|
|
1003
|
+
Status: TranscriptionJobStatus | None
|
|
1004
|
+
NextToken: NextToken | None
|
|
1005
|
+
MedicalTranscriptionJobSummaries: MedicalTranscriptionJobSummaries | None
|
|
1006
1006
|
|
|
1007
1007
|
|
|
1008
1008
|
class ListMedicalVocabulariesRequest(ServiceRequest):
|
|
1009
|
-
NextToken:
|
|
1010
|
-
MaxResults:
|
|
1011
|
-
StateEquals:
|
|
1012
|
-
NameContains:
|
|
1009
|
+
NextToken: NextToken | None
|
|
1010
|
+
MaxResults: MaxResults | None
|
|
1011
|
+
StateEquals: VocabularyState | None
|
|
1012
|
+
NameContains: VocabularyName | None
|
|
1013
1013
|
|
|
1014
1014
|
|
|
1015
1015
|
class VocabularyInfo(TypedDict, total=False):
|
|
1016
|
-
VocabularyName:
|
|
1017
|
-
LanguageCode:
|
|
1018
|
-
LastModifiedTime:
|
|
1019
|
-
VocabularyState:
|
|
1016
|
+
VocabularyName: VocabularyName | None
|
|
1017
|
+
LanguageCode: LanguageCode | None
|
|
1018
|
+
LastModifiedTime: DateTime | None
|
|
1019
|
+
VocabularyState: VocabularyState | None
|
|
1020
1020
|
|
|
1021
1021
|
|
|
1022
|
-
Vocabularies =
|
|
1022
|
+
Vocabularies = list[VocabularyInfo]
|
|
1023
1023
|
|
|
1024
1024
|
|
|
1025
1025
|
class ListMedicalVocabulariesResponse(TypedDict, total=False):
|
|
1026
|
-
Status:
|
|
1027
|
-
NextToken:
|
|
1028
|
-
Vocabularies:
|
|
1026
|
+
Status: VocabularyState | None
|
|
1027
|
+
NextToken: NextToken | None
|
|
1028
|
+
Vocabularies: Vocabularies | None
|
|
1029
1029
|
|
|
1030
1030
|
|
|
1031
1031
|
class ListTagsForResourceRequest(ServiceRequest):
|
|
@@ -1033,171 +1033,171 @@ class ListTagsForResourceRequest(ServiceRequest):
|
|
|
1033
1033
|
|
|
1034
1034
|
|
|
1035
1035
|
class ListTagsForResourceResponse(TypedDict, total=False):
|
|
1036
|
-
ResourceArn:
|
|
1037
|
-
Tags:
|
|
1036
|
+
ResourceArn: TranscribeArn | None
|
|
1037
|
+
Tags: TagList | None
|
|
1038
1038
|
|
|
1039
1039
|
|
|
1040
1040
|
class ListTranscriptionJobsRequest(ServiceRequest):
|
|
1041
|
-
Status:
|
|
1042
|
-
JobNameContains:
|
|
1043
|
-
NextToken:
|
|
1044
|
-
MaxResults:
|
|
1041
|
+
Status: TranscriptionJobStatus | None
|
|
1042
|
+
JobNameContains: TranscriptionJobName | None
|
|
1043
|
+
NextToken: NextToken | None
|
|
1044
|
+
MaxResults: MaxResults | None
|
|
1045
1045
|
|
|
1046
1046
|
|
|
1047
1047
|
class TranscriptionJobSummary(TypedDict, total=False):
|
|
1048
|
-
TranscriptionJobName:
|
|
1049
|
-
CreationTime:
|
|
1050
|
-
StartTime:
|
|
1051
|
-
CompletionTime:
|
|
1052
|
-
LanguageCode:
|
|
1053
|
-
TranscriptionJobStatus:
|
|
1054
|
-
FailureReason:
|
|
1055
|
-
OutputLocationType:
|
|
1056
|
-
ContentRedaction:
|
|
1057
|
-
ModelSettings:
|
|
1058
|
-
IdentifyLanguage:
|
|
1059
|
-
IdentifyMultipleLanguages:
|
|
1060
|
-
IdentifiedLanguageScore:
|
|
1061
|
-
LanguageCodes:
|
|
1062
|
-
ToxicityDetection:
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
TranscriptionJobSummaries =
|
|
1048
|
+
TranscriptionJobName: TranscriptionJobName | None
|
|
1049
|
+
CreationTime: DateTime | None
|
|
1050
|
+
StartTime: DateTime | None
|
|
1051
|
+
CompletionTime: DateTime | None
|
|
1052
|
+
LanguageCode: LanguageCode | None
|
|
1053
|
+
TranscriptionJobStatus: TranscriptionJobStatus | None
|
|
1054
|
+
FailureReason: FailureReason | None
|
|
1055
|
+
OutputLocationType: OutputLocationType | None
|
|
1056
|
+
ContentRedaction: ContentRedaction | None
|
|
1057
|
+
ModelSettings: ModelSettings | None
|
|
1058
|
+
IdentifyLanguage: Boolean | None
|
|
1059
|
+
IdentifyMultipleLanguages: Boolean | None
|
|
1060
|
+
IdentifiedLanguageScore: IdentifiedLanguageScore | None
|
|
1061
|
+
LanguageCodes: LanguageCodeList | None
|
|
1062
|
+
ToxicityDetection: ToxicityDetection | None
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
TranscriptionJobSummaries = list[TranscriptionJobSummary]
|
|
1066
1066
|
|
|
1067
1067
|
|
|
1068
1068
|
class ListTranscriptionJobsResponse(TypedDict, total=False):
|
|
1069
|
-
Status:
|
|
1070
|
-
NextToken:
|
|
1071
|
-
TranscriptionJobSummaries:
|
|
1069
|
+
Status: TranscriptionJobStatus | None
|
|
1070
|
+
NextToken: NextToken | None
|
|
1071
|
+
TranscriptionJobSummaries: TranscriptionJobSummaries | None
|
|
1072
1072
|
|
|
1073
1073
|
|
|
1074
1074
|
class ListVocabulariesRequest(ServiceRequest):
|
|
1075
|
-
NextToken:
|
|
1076
|
-
MaxResults:
|
|
1077
|
-
StateEquals:
|
|
1078
|
-
NameContains:
|
|
1075
|
+
NextToken: NextToken | None
|
|
1076
|
+
MaxResults: MaxResults | None
|
|
1077
|
+
StateEquals: VocabularyState | None
|
|
1078
|
+
NameContains: VocabularyName | None
|
|
1079
1079
|
|
|
1080
1080
|
|
|
1081
1081
|
class ListVocabulariesResponse(TypedDict, total=False):
|
|
1082
|
-
Status:
|
|
1083
|
-
NextToken:
|
|
1084
|
-
Vocabularies:
|
|
1082
|
+
Status: VocabularyState | None
|
|
1083
|
+
NextToken: NextToken | None
|
|
1084
|
+
Vocabularies: Vocabularies | None
|
|
1085
1085
|
|
|
1086
1086
|
|
|
1087
1087
|
class ListVocabularyFiltersRequest(ServiceRequest):
|
|
1088
|
-
NextToken:
|
|
1089
|
-
MaxResults:
|
|
1090
|
-
NameContains:
|
|
1088
|
+
NextToken: NextToken | None
|
|
1089
|
+
MaxResults: MaxResults | None
|
|
1090
|
+
NameContains: VocabularyFilterName | None
|
|
1091
1091
|
|
|
1092
1092
|
|
|
1093
1093
|
class VocabularyFilterInfo(TypedDict, total=False):
|
|
1094
|
-
VocabularyFilterName:
|
|
1095
|
-
LanguageCode:
|
|
1096
|
-
LastModifiedTime:
|
|
1094
|
+
VocabularyFilterName: VocabularyFilterName | None
|
|
1095
|
+
LanguageCode: LanguageCode | None
|
|
1096
|
+
LastModifiedTime: DateTime | None
|
|
1097
1097
|
|
|
1098
1098
|
|
|
1099
|
-
VocabularyFilters =
|
|
1099
|
+
VocabularyFilters = list[VocabularyFilterInfo]
|
|
1100
1100
|
|
|
1101
1101
|
|
|
1102
1102
|
class ListVocabularyFiltersResponse(TypedDict, total=False):
|
|
1103
|
-
NextToken:
|
|
1104
|
-
VocabularyFilters:
|
|
1103
|
+
NextToken: NextToken | None
|
|
1104
|
+
VocabularyFilters: VocabularyFilters | None
|
|
1105
1105
|
|
|
1106
1106
|
|
|
1107
1107
|
class MedicalScribePatientContext(TypedDict, total=False):
|
|
1108
|
-
Pronouns:
|
|
1108
|
+
Pronouns: Pronouns | None
|
|
1109
1109
|
|
|
1110
1110
|
|
|
1111
1111
|
class MedicalScribeContext(TypedDict, total=False):
|
|
1112
|
-
PatientContext:
|
|
1112
|
+
PatientContext: MedicalScribePatientContext | None
|
|
1113
1113
|
|
|
1114
1114
|
|
|
1115
1115
|
class StartCallAnalyticsJobRequest(ServiceRequest):
|
|
1116
1116
|
CallAnalyticsJobName: CallAnalyticsJobName
|
|
1117
1117
|
Media: Media
|
|
1118
|
-
OutputLocation:
|
|
1119
|
-
OutputEncryptionKMSKeyId:
|
|
1120
|
-
DataAccessRoleArn:
|
|
1121
|
-
Settings:
|
|
1122
|
-
Tags:
|
|
1123
|
-
ChannelDefinitions:
|
|
1118
|
+
OutputLocation: Uri | None
|
|
1119
|
+
OutputEncryptionKMSKeyId: KMSKeyId | None
|
|
1120
|
+
DataAccessRoleArn: DataAccessRoleArn | None
|
|
1121
|
+
Settings: CallAnalyticsJobSettings | None
|
|
1122
|
+
Tags: TagList | None
|
|
1123
|
+
ChannelDefinitions: ChannelDefinitions | None
|
|
1124
1124
|
|
|
1125
1125
|
|
|
1126
1126
|
class StartCallAnalyticsJobResponse(TypedDict, total=False):
|
|
1127
|
-
CallAnalyticsJob:
|
|
1127
|
+
CallAnalyticsJob: CallAnalyticsJob | None
|
|
1128
1128
|
|
|
1129
1129
|
|
|
1130
1130
|
class StartMedicalScribeJobRequest(ServiceRequest):
|
|
1131
1131
|
MedicalScribeJobName: TranscriptionJobName
|
|
1132
1132
|
Media: Media
|
|
1133
1133
|
OutputBucketName: OutputBucketName
|
|
1134
|
-
OutputEncryptionKMSKeyId:
|
|
1135
|
-
KMSEncryptionContext:
|
|
1134
|
+
OutputEncryptionKMSKeyId: KMSKeyId | None
|
|
1135
|
+
KMSEncryptionContext: KMSEncryptionContextMap | None
|
|
1136
1136
|
DataAccessRoleArn: DataAccessRoleArn
|
|
1137
1137
|
Settings: MedicalScribeSettings
|
|
1138
|
-
ChannelDefinitions:
|
|
1139
|
-
Tags:
|
|
1140
|
-
MedicalScribeContext:
|
|
1138
|
+
ChannelDefinitions: MedicalScribeChannelDefinitions | None
|
|
1139
|
+
Tags: TagList | None
|
|
1140
|
+
MedicalScribeContext: MedicalScribeContext | None
|
|
1141
1141
|
|
|
1142
1142
|
|
|
1143
1143
|
class StartMedicalScribeJobResponse(TypedDict, total=False):
|
|
1144
|
-
MedicalScribeJob:
|
|
1144
|
+
MedicalScribeJob: MedicalScribeJob | None
|
|
1145
1145
|
|
|
1146
1146
|
|
|
1147
1147
|
class StartMedicalTranscriptionJobRequest(ServiceRequest):
|
|
1148
1148
|
MedicalTranscriptionJobName: TranscriptionJobName
|
|
1149
1149
|
LanguageCode: LanguageCode
|
|
1150
|
-
MediaSampleRateHertz:
|
|
1151
|
-
MediaFormat:
|
|
1150
|
+
MediaSampleRateHertz: MedicalMediaSampleRateHertz | None
|
|
1151
|
+
MediaFormat: MediaFormat | None
|
|
1152
1152
|
Media: Media
|
|
1153
1153
|
OutputBucketName: OutputBucketName
|
|
1154
|
-
OutputKey:
|
|
1155
|
-
OutputEncryptionKMSKeyId:
|
|
1156
|
-
KMSEncryptionContext:
|
|
1157
|
-
Settings:
|
|
1158
|
-
ContentIdentificationType:
|
|
1154
|
+
OutputKey: OutputKey | None
|
|
1155
|
+
OutputEncryptionKMSKeyId: KMSKeyId | None
|
|
1156
|
+
KMSEncryptionContext: KMSEncryptionContextMap | None
|
|
1157
|
+
Settings: MedicalTranscriptionSetting | None
|
|
1158
|
+
ContentIdentificationType: MedicalContentIdentificationType | None
|
|
1159
1159
|
Specialty: Specialty
|
|
1160
1160
|
Type: Type
|
|
1161
|
-
Tags:
|
|
1161
|
+
Tags: TagList | None
|
|
1162
1162
|
|
|
1163
1163
|
|
|
1164
1164
|
class StartMedicalTranscriptionJobResponse(TypedDict, total=False):
|
|
1165
|
-
MedicalTranscriptionJob:
|
|
1165
|
+
MedicalTranscriptionJob: MedicalTranscriptionJob | None
|
|
1166
1166
|
|
|
1167
1167
|
|
|
1168
1168
|
class Subtitles(TypedDict, total=False):
|
|
1169
|
-
Formats:
|
|
1170
|
-
OutputStartIndex:
|
|
1169
|
+
Formats: SubtitleFormats | None
|
|
1170
|
+
OutputStartIndex: SubtitleOutputStartIndex | None
|
|
1171
1171
|
|
|
1172
1172
|
|
|
1173
1173
|
class StartTranscriptionJobRequest(ServiceRequest):
|
|
1174
1174
|
TranscriptionJobName: TranscriptionJobName
|
|
1175
|
-
LanguageCode:
|
|
1176
|
-
MediaSampleRateHertz:
|
|
1177
|
-
MediaFormat:
|
|
1175
|
+
LanguageCode: LanguageCode | None
|
|
1176
|
+
MediaSampleRateHertz: MediaSampleRateHertz | None
|
|
1177
|
+
MediaFormat: MediaFormat | None
|
|
1178
1178
|
Media: Media
|
|
1179
|
-
OutputBucketName:
|
|
1180
|
-
OutputKey:
|
|
1181
|
-
OutputEncryptionKMSKeyId:
|
|
1182
|
-
KMSEncryptionContext:
|
|
1183
|
-
Settings:
|
|
1184
|
-
ModelSettings:
|
|
1185
|
-
JobExecutionSettings:
|
|
1186
|
-
ContentRedaction:
|
|
1187
|
-
IdentifyLanguage:
|
|
1188
|
-
IdentifyMultipleLanguages:
|
|
1189
|
-
LanguageOptions:
|
|
1190
|
-
Subtitles:
|
|
1191
|
-
Tags:
|
|
1192
|
-
LanguageIdSettings:
|
|
1193
|
-
ToxicityDetection:
|
|
1179
|
+
OutputBucketName: OutputBucketName | None
|
|
1180
|
+
OutputKey: OutputKey | None
|
|
1181
|
+
OutputEncryptionKMSKeyId: KMSKeyId | None
|
|
1182
|
+
KMSEncryptionContext: KMSEncryptionContextMap | None
|
|
1183
|
+
Settings: Settings | None
|
|
1184
|
+
ModelSettings: ModelSettings | None
|
|
1185
|
+
JobExecutionSettings: JobExecutionSettings | None
|
|
1186
|
+
ContentRedaction: ContentRedaction | None
|
|
1187
|
+
IdentifyLanguage: Boolean | None
|
|
1188
|
+
IdentifyMultipleLanguages: Boolean | None
|
|
1189
|
+
LanguageOptions: LanguageOptions | None
|
|
1190
|
+
Subtitles: Subtitles | None
|
|
1191
|
+
Tags: TagList | None
|
|
1192
|
+
LanguageIdSettings: LanguageIdSettingsMap | None
|
|
1193
|
+
ToxicityDetection: ToxicityDetection | None
|
|
1194
1194
|
|
|
1195
1195
|
|
|
1196
1196
|
class StartTranscriptionJobResponse(TypedDict, total=False):
|
|
1197
|
-
TranscriptionJob:
|
|
1197
|
+
TranscriptionJob: TranscriptionJob | None
|
|
1198
1198
|
|
|
1199
1199
|
|
|
1200
|
-
TagKeyList =
|
|
1200
|
+
TagKeyList = list[TagKey]
|
|
1201
1201
|
|
|
1202
1202
|
|
|
1203
1203
|
class TagResourceRequest(ServiceRequest):
|
|
@@ -1221,11 +1221,11 @@ class UntagResourceResponse(TypedDict, total=False):
|
|
|
1221
1221
|
class UpdateCallAnalyticsCategoryRequest(ServiceRequest):
|
|
1222
1222
|
CategoryName: CategoryName
|
|
1223
1223
|
Rules: RuleList
|
|
1224
|
-
InputType:
|
|
1224
|
+
InputType: InputType | None
|
|
1225
1225
|
|
|
1226
1226
|
|
|
1227
1227
|
class UpdateCallAnalyticsCategoryResponse(TypedDict, total=False):
|
|
1228
|
-
CategoryProperties:
|
|
1228
|
+
CategoryProperties: CategoryProperties | None
|
|
1229
1229
|
|
|
1230
1230
|
|
|
1231
1231
|
class UpdateMedicalVocabularyRequest(ServiceRequest):
|
|
@@ -1235,43 +1235,43 @@ class UpdateMedicalVocabularyRequest(ServiceRequest):
|
|
|
1235
1235
|
|
|
1236
1236
|
|
|
1237
1237
|
class UpdateMedicalVocabularyResponse(TypedDict, total=False):
|
|
1238
|
-
VocabularyName:
|
|
1239
|
-
LanguageCode:
|
|
1240
|
-
LastModifiedTime:
|
|
1241
|
-
VocabularyState:
|
|
1238
|
+
VocabularyName: VocabularyName | None
|
|
1239
|
+
LanguageCode: LanguageCode | None
|
|
1240
|
+
LastModifiedTime: DateTime | None
|
|
1241
|
+
VocabularyState: VocabularyState | None
|
|
1242
1242
|
|
|
1243
1243
|
|
|
1244
1244
|
class UpdateVocabularyFilterRequest(ServiceRequest):
|
|
1245
1245
|
VocabularyFilterName: VocabularyFilterName
|
|
1246
|
-
Words:
|
|
1247
|
-
VocabularyFilterFileUri:
|
|
1248
|
-
DataAccessRoleArn:
|
|
1246
|
+
Words: Words | None
|
|
1247
|
+
VocabularyFilterFileUri: Uri | None
|
|
1248
|
+
DataAccessRoleArn: DataAccessRoleArn | None
|
|
1249
1249
|
|
|
1250
1250
|
|
|
1251
1251
|
class UpdateVocabularyFilterResponse(TypedDict, total=False):
|
|
1252
|
-
VocabularyFilterName:
|
|
1253
|
-
LanguageCode:
|
|
1254
|
-
LastModifiedTime:
|
|
1252
|
+
VocabularyFilterName: VocabularyFilterName | None
|
|
1253
|
+
LanguageCode: LanguageCode | None
|
|
1254
|
+
LastModifiedTime: DateTime | None
|
|
1255
1255
|
|
|
1256
1256
|
|
|
1257
1257
|
class UpdateVocabularyRequest(ServiceRequest):
|
|
1258
1258
|
VocabularyName: VocabularyName
|
|
1259
1259
|
LanguageCode: LanguageCode
|
|
1260
|
-
Phrases:
|
|
1261
|
-
VocabularyFileUri:
|
|
1262
|
-
DataAccessRoleArn:
|
|
1260
|
+
Phrases: Phrases | None
|
|
1261
|
+
VocabularyFileUri: Uri | None
|
|
1262
|
+
DataAccessRoleArn: DataAccessRoleArn | None
|
|
1263
1263
|
|
|
1264
1264
|
|
|
1265
1265
|
class UpdateVocabularyResponse(TypedDict, total=False):
|
|
1266
|
-
VocabularyName:
|
|
1267
|
-
LanguageCode:
|
|
1268
|
-
LastModifiedTime:
|
|
1269
|
-
VocabularyState:
|
|
1266
|
+
VocabularyName: VocabularyName | None
|
|
1267
|
+
LanguageCode: LanguageCode | None
|
|
1268
|
+
LastModifiedTime: DateTime | None
|
|
1269
|
+
VocabularyState: VocabularyState | None
|
|
1270
1270
|
|
|
1271
1271
|
|
|
1272
1272
|
class TranscribeApi:
|
|
1273
|
-
service = "transcribe"
|
|
1274
|
-
version = "2017-10-26"
|
|
1273
|
+
service: str = "transcribe"
|
|
1274
|
+
version: str = "2017-10-26"
|
|
1275
1275
|
|
|
1276
1276
|
@handler("CreateCallAnalyticsCategory")
|
|
1277
1277
|
def create_call_analytics_category(
|