aws-sdk-chimesdkmeetings 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkmeetings/client.rb +15 -2
- data/lib/aws-sdk-chimesdkmeetings/client_api.rb +14 -0
- data/lib/aws-sdk-chimesdkmeetings/types.rb +80 -2
- data/lib/aws-sdk-chimesdkmeetings.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9443c349ee13ec312029ec683b8916eabd247c32557da4e07afb3f238b86b7a
|
4
|
+
data.tar.gz: 0dd8432dc03263ca8cdfd965869490dc40dbd2a3eda26569f0a25d03d638f5c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 305f91b9319f4aa197b1161e615d8c06d0e42aa3d9650175eada81def943c50cc2f01226f930f16fa248e1d83da71707dd2c5c6ba68abb335f873c023b38fff3
|
7
|
+
data.tar.gz: b129bea9a7923340d4668b5fc1d3ff01507fc5275a6daa85c564bda0d6e73b2dcdd7f04457fab33198ab87ab270da8f143144a22fabdb1b4172fd804155bc534
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.2.0 (2021-11-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds new Transcribe API parameters to StartMeetingTranscription, including support for content identification and redaction (PII & PHI), partial results stabilization, and custom language models.
|
8
|
+
|
4
9
|
1.1.0 (2021-11-08)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.2.0
|
@@ -336,7 +336,13 @@ module Aws::ChimeSDKMeetings
|
|
336
336
|
|
337
337
|
# @!group API Operations
|
338
338
|
|
339
|
-
# Creates
|
339
|
+
# Creates up to 100 attendees for an active Amazon Chime SDK meeting.
|
340
|
+
# For more information about the Amazon Chime SDK, see [Using the Amazon
|
341
|
+
# Chime SDK][1] in the *Amazon Chime Developer Guide*.
|
342
|
+
#
|
343
|
+
#
|
344
|
+
#
|
345
|
+
# [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
|
340
346
|
#
|
341
347
|
# @option params [required, String] :meeting_id
|
342
348
|
# The Amazon Chime SDK ID of the meeting to which you're adding
|
@@ -813,6 +819,12 @@ module Aws::ChimeSDKMeetings
|
|
813
819
|
# vocabulary_filter_name: "String",
|
814
820
|
# vocabulary_name: "String",
|
815
821
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
822
|
+
# enable_partial_results_stabilization: false,
|
823
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
824
|
+
# content_identification_type: "PII", # accepts PII
|
825
|
+
# content_redaction_type: "PII", # accepts PII
|
826
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
827
|
+
# language_model_name: "TranscribeLanguageModelName",
|
816
828
|
# },
|
817
829
|
# engine_transcribe_medical_settings: {
|
818
830
|
# language_code: "en-US", # required, accepts en-US
|
@@ -820,6 +832,7 @@ module Aws::ChimeSDKMeetings
|
|
820
832
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
821
833
|
# vocabulary_name: "String",
|
822
834
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
835
|
+
# content_identification_type: "PHI", # accepts PHI
|
823
836
|
# },
|
824
837
|
# },
|
825
838
|
# })
|
@@ -868,7 +881,7 @@ module Aws::ChimeSDKMeetings
|
|
868
881
|
params: params,
|
869
882
|
config: config)
|
870
883
|
context[:gem_name] = 'aws-sdk-chimesdkmeetings'
|
871
|
-
context[:gem_version] = '1.
|
884
|
+
context[:gem_version] = '1.2.0'
|
872
885
|
Seahorse::Client::Request.new(handlers, context)
|
873
886
|
end
|
874
887
|
|
@@ -20,6 +20,7 @@ module Aws::ChimeSDKMeetings
|
|
20
20
|
BatchCreateAttendeeErrorList = Shapes::ListShape.new(name: 'BatchCreateAttendeeErrorList')
|
21
21
|
BatchCreateAttendeeRequest = Shapes::StructureShape.new(name: 'BatchCreateAttendeeRequest')
|
22
22
|
BatchCreateAttendeeResponse = Shapes::StructureShape.new(name: 'BatchCreateAttendeeResponse')
|
23
|
+
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
23
24
|
ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
|
24
25
|
CreateAttendeeError = Shapes::StructureShape.new(name: 'CreateAttendeeError')
|
25
26
|
CreateAttendeeRequest = Shapes::StructureShape.new(name: 'CreateAttendeeRequest')
|
@@ -58,11 +59,17 @@ module Aws::ChimeSDKMeetings
|
|
58
59
|
StartMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionRequest')
|
59
60
|
StopMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StopMeetingTranscriptionRequest')
|
60
61
|
String = Shapes::StringShape.new(name: 'String')
|
62
|
+
TranscribeContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeContentIdentificationType')
|
63
|
+
TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
|
61
64
|
TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
|
65
|
+
TranscribeLanguageModelName = Shapes::StringShape.new(name: 'TranscribeLanguageModelName')
|
66
|
+
TranscribeMedicalContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeMedicalContentIdentificationType')
|
62
67
|
TranscribeMedicalLanguageCode = Shapes::StringShape.new(name: 'TranscribeMedicalLanguageCode')
|
63
68
|
TranscribeMedicalRegion = Shapes::StringShape.new(name: 'TranscribeMedicalRegion')
|
64
69
|
TranscribeMedicalSpecialty = Shapes::StringShape.new(name: 'TranscribeMedicalSpecialty')
|
65
70
|
TranscribeMedicalType = Shapes::StringShape.new(name: 'TranscribeMedicalType')
|
71
|
+
TranscribePartialResultsStability = Shapes::StringShape.new(name: 'TranscribePartialResultsStability')
|
72
|
+
TranscribePiiEntityTypes = Shapes::StringShape.new(name: 'TranscribePiiEntityTypes')
|
66
73
|
TranscribeRegion = Shapes::StringShape.new(name: 'TranscribeRegion')
|
67
74
|
TranscribeVocabularyFilterMethod = Shapes::StringShape.new(name: 'TranscribeVocabularyFilterMethod')
|
68
75
|
TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
|
@@ -145,6 +152,7 @@ module Aws::ChimeSDKMeetings
|
|
145
152
|
EngineTranscribeMedicalSettings.add_member(:type, Shapes::ShapeRef.new(shape: TranscribeMedicalType, required: true, location_name: "Type"))
|
146
153
|
EngineTranscribeMedicalSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
|
147
154
|
EngineTranscribeMedicalSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeMedicalRegion, location_name: "Region"))
|
155
|
+
EngineTranscribeMedicalSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeMedicalContentIdentificationType, location_name: "ContentIdentificationType"))
|
148
156
|
EngineTranscribeMedicalSettings.struct_class = Types::EngineTranscribeMedicalSettings
|
149
157
|
|
150
158
|
EngineTranscribeSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeLanguageCode, required: true, location_name: "LanguageCode"))
|
@@ -152,6 +160,12 @@ module Aws::ChimeSDKMeetings
|
|
152
160
|
EngineTranscribeSettings.add_member(:vocabulary_filter_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyFilterName"))
|
153
161
|
EngineTranscribeSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
|
154
162
|
EngineTranscribeSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeRegion, location_name: "Region"))
|
163
|
+
EngineTranscribeSettings.add_member(:enable_partial_results_stabilization, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePartialResultsStabilization"))
|
164
|
+
EngineTranscribeSettings.add_member(:partial_results_stability, Shapes::ShapeRef.new(shape: TranscribePartialResultsStability, location_name: "PartialResultsStability"))
|
165
|
+
EngineTranscribeSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeContentIdentificationType, location_name: "ContentIdentificationType"))
|
166
|
+
EngineTranscribeSettings.add_member(:content_redaction_type, Shapes::ShapeRef.new(shape: TranscribeContentRedactionType, location_name: "ContentRedactionType"))
|
167
|
+
EngineTranscribeSettings.add_member(:pii_entity_types, Shapes::ShapeRef.new(shape: TranscribePiiEntityTypes, location_name: "PiiEntityTypes"))
|
168
|
+
EngineTranscribeSettings.add_member(:language_model_name, Shapes::ShapeRef.new(shape: TranscribeLanguageModelName, location_name: "LanguageModelName"))
|
155
169
|
EngineTranscribeSettings.struct_class = Types::EngineTranscribeSettings
|
156
170
|
|
157
171
|
ForbiddenException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
@@ -416,6 +416,7 @@ module Aws::ChimeSDKMeetings
|
|
416
416
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
417
417
|
# vocabulary_name: "String",
|
418
418
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
419
|
+
# content_identification_type: "PHI", # accepts PHI
|
419
420
|
# }
|
420
421
|
#
|
421
422
|
# @!attribute [rw] language_code
|
@@ -440,6 +441,11 @@ module Aws::ChimeSDKMeetings
|
|
440
441
|
# specify a Region, Amazon Chime uses the meeting's Region.
|
441
442
|
# @return [String]
|
442
443
|
#
|
444
|
+
# @!attribute [rw] content_identification_type
|
445
|
+
# Set this field to `PHI` to identify personal health information in
|
446
|
+
# the transcription output.
|
447
|
+
# @return [String]
|
448
|
+
#
|
443
449
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/EngineTranscribeMedicalSettings AWS API Documentation
|
444
450
|
#
|
445
451
|
class EngineTranscribeMedicalSettings < Struct.new(
|
@@ -447,7 +453,8 @@ module Aws::ChimeSDKMeetings
|
|
447
453
|
:specialty,
|
448
454
|
:type,
|
449
455
|
:vocabulary_name,
|
450
|
-
:region
|
456
|
+
:region,
|
457
|
+
:content_identification_type)
|
451
458
|
SENSITIVE = []
|
452
459
|
include Aws::Structure
|
453
460
|
end
|
@@ -463,6 +470,12 @@ module Aws::ChimeSDKMeetings
|
|
463
470
|
# vocabulary_filter_name: "String",
|
464
471
|
# vocabulary_name: "String",
|
465
472
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
473
|
+
# enable_partial_results_stabilization: false,
|
474
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
475
|
+
# content_identification_type: "PII", # accepts PII
|
476
|
+
# content_redaction_type: "PII", # accepts PII
|
477
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
478
|
+
# language_model_name: "TranscribeLanguageModelName",
|
466
479
|
# }
|
467
480
|
#
|
468
481
|
# @!attribute [rw] language_code
|
@@ -486,6 +499,51 @@ module Aws::ChimeSDKMeetings
|
|
486
499
|
# Region, Amazon Chime uses the meeting's Region.
|
487
500
|
# @return [String]
|
488
501
|
#
|
502
|
+
# @!attribute [rw] enable_partial_results_stabilization
|
503
|
+
# Generates partial transcription results that are less likely to
|
504
|
+
# change as meeting attendees speak. It does so by only allowing the
|
505
|
+
# last few words from the partial results to change.
|
506
|
+
# @return [Boolean]
|
507
|
+
#
|
508
|
+
# @!attribute [rw] partial_results_stability
|
509
|
+
# The stabity level of a partial results transcription. Determines how
|
510
|
+
# stable you want the transcription results to be. A higher level
|
511
|
+
# means the transcription results are less likely to change.
|
512
|
+
# @return [String]
|
513
|
+
#
|
514
|
+
# @!attribute [rw] content_identification_type
|
515
|
+
# Set this field to `PII` to identify personal health information in
|
516
|
+
# the transcription output.
|
517
|
+
# @return [String]
|
518
|
+
#
|
519
|
+
# @!attribute [rw] content_redaction_type
|
520
|
+
# Set this field to `PII` to redact personally identifiable
|
521
|
+
# information in the transcription output. Content redaction is
|
522
|
+
# performed only upon complete transcription of the audio segments.
|
523
|
+
#
|
524
|
+
# You can’t set both `ContentRedactionType` and
|
525
|
+
# `ContentIdentificationType` in the same request. If you set both,
|
526
|
+
# your request returns a `BadRequestException`.
|
527
|
+
# @return [String]
|
528
|
+
#
|
529
|
+
# @!attribute [rw] pii_entity_types
|
530
|
+
# Lists the PII entity types you want to identify or redact. To
|
531
|
+
# specify entity types, you must enable `ContentIdentificationType` or
|
532
|
+
# `ContentRedactionType`.
|
533
|
+
#
|
534
|
+
# `PIIEntityTypes` must be comma-separated. The available values are:
|
535
|
+
# `BANK_ACCOUNT_NUMBER`, `BANK_ROUTING, CREDIT_DEBIT_NUMBER`,
|
536
|
+
# `CREDIT_DEBIT_CVV`, `CREDIT_DEBIT_EXPIRY`, `PIN`, `EMAIL`,
|
537
|
+
# `ADDRESS`, `NAME`, `PHONE`, `SSN`, and `ALL`.
|
538
|
+
#
|
539
|
+
# `PiiEntityTypes` is an optional parameter with a default value of
|
540
|
+
# `ALL`.
|
541
|
+
# @return [String]
|
542
|
+
#
|
543
|
+
# @!attribute [rw] language_model_name
|
544
|
+
# The name of the language model used during transcription.
|
545
|
+
# @return [String]
|
546
|
+
#
|
489
547
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/EngineTranscribeSettings AWS API Documentation
|
490
548
|
#
|
491
549
|
class EngineTranscribeSettings < Struct.new(
|
@@ -493,7 +551,13 @@ module Aws::ChimeSDKMeetings
|
|
493
551
|
:vocabulary_filter_method,
|
494
552
|
:vocabulary_filter_name,
|
495
553
|
:vocabulary_name,
|
496
|
-
:region
|
554
|
+
:region,
|
555
|
+
:enable_partial_results_stabilization,
|
556
|
+
:partial_results_stability,
|
557
|
+
:content_identification_type,
|
558
|
+
:content_redaction_type,
|
559
|
+
:pii_entity_types,
|
560
|
+
:language_model_name)
|
497
561
|
SENSITIVE = []
|
498
562
|
include Aws::Structure
|
499
563
|
end
|
@@ -847,6 +911,12 @@ module Aws::ChimeSDKMeetings
|
|
847
911
|
# vocabulary_filter_name: "String",
|
848
912
|
# vocabulary_name: "String",
|
849
913
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
914
|
+
# enable_partial_results_stabilization: false,
|
915
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
916
|
+
# content_identification_type: "PII", # accepts PII
|
917
|
+
# content_redaction_type: "PII", # accepts PII
|
918
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
919
|
+
# language_model_name: "TranscribeLanguageModelName",
|
850
920
|
# },
|
851
921
|
# engine_transcribe_medical_settings: {
|
852
922
|
# language_code: "en-US", # required, accepts en-US
|
@@ -854,6 +924,7 @@ module Aws::ChimeSDKMeetings
|
|
854
924
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
855
925
|
# vocabulary_name: "String",
|
856
926
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
927
|
+
# content_identification_type: "PHI", # accepts PHI
|
857
928
|
# },
|
858
929
|
# },
|
859
930
|
# }
|
@@ -910,6 +981,12 @@ module Aws::ChimeSDKMeetings
|
|
910
981
|
# vocabulary_filter_name: "String",
|
911
982
|
# vocabulary_name: "String",
|
912
983
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
984
|
+
# enable_partial_results_stabilization: false,
|
985
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
986
|
+
# content_identification_type: "PII", # accepts PII
|
987
|
+
# content_redaction_type: "PII", # accepts PII
|
988
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
989
|
+
# language_model_name: "TranscribeLanguageModelName",
|
913
990
|
# },
|
914
991
|
# engine_transcribe_medical_settings: {
|
915
992
|
# language_code: "en-US", # required, accepts en-US
|
@@ -917,6 +994,7 @@ module Aws::ChimeSDKMeetings
|
|
917
994
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
918
995
|
# vocabulary_name: "String",
|
919
996
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
997
|
+
# content_identification_type: "PHI", # accepts PHI
|
920
998
|
# },
|
921
999
|
# }
|
922
1000
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-chimesdkmeetings
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-11-
|
11
|
+
date: 2021-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|