aws-sdk-chime 1.61.0 → 1.62.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-chime/client.rb +8 -1
- data/lib/aws-sdk-chime/client_api.rb +13 -0
- data/lib/aws-sdk-chime/types.rb +76 -2
- data/lib/aws-sdk-chime.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: 4ece030d09a72314fdc314a1859e3f84973755bef2c8ad7d67ccaa880e7c5c7a
|
|
4
|
+
data.tar.gz: 06df291fae156fdf55701764327283c197dec994aa55b655c23f7dd18deb9b26
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2946ca578f582e5060cf28e74be0eb826923b9195d04b5f719dc3ab393ce1425c07ad6f1b50519531b9cbd2fe5d2289af6a1d077c59318a217bbd5862a89145b
|
|
7
|
+
data.tar.gz: 9bf59bb853e51004ebe8f0e4e3166192481f713ee3bf274ed8147d4114eff54ef56de15f7bb2accf8341ada24c3e917118ecec16d83f804ac169caf564baaa8d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.62.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.61.0 (2021-11-04)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.62.0
|
data/lib/aws-sdk-chime/client.rb
CHANGED
|
@@ -7289,6 +7289,12 @@ module Aws::Chime
|
|
|
7289
7289
|
# vocabulary_filter_name: "String",
|
|
7290
7290
|
# vocabulary_name: "String",
|
|
7291
7291
|
# 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
|
|
7292
|
+
# enable_partial_results_stabilization: false,
|
|
7293
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
|
7294
|
+
# content_identification_type: "PII", # accepts PII
|
|
7295
|
+
# content_redaction_type: "PII", # accepts PII
|
|
7296
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
|
7297
|
+
# language_model_name: "TranscribeLanguageModelName",
|
|
7292
7298
|
# },
|
|
7293
7299
|
# engine_transcribe_medical_settings: {
|
|
7294
7300
|
# language_code: "en-US", # required, accepts en-US
|
|
@@ -7296,6 +7302,7 @@ module Aws::Chime
|
|
|
7296
7302
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
|
7297
7303
|
# vocabulary_name: "String",
|
|
7298
7304
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
|
7305
|
+
# content_identification_type: "PHI", # accepts PHI
|
|
7299
7306
|
# },
|
|
7300
7307
|
# },
|
|
7301
7308
|
# })
|
|
@@ -8480,7 +8487,7 @@ module Aws::Chime
|
|
|
8480
8487
|
params: params,
|
|
8481
8488
|
config: config)
|
|
8482
8489
|
context[:gem_name] = 'aws-sdk-chime'
|
|
8483
|
-
context[:gem_version] = '1.
|
|
8490
|
+
context[:gem_version] = '1.62.0'
|
|
8484
8491
|
Seahorse::Client::Request.new(handlers, context)
|
|
8485
8492
|
end
|
|
8486
8493
|
|
|
@@ -561,11 +561,17 @@ module Aws::Chime
|
|
|
561
561
|
ThrottledClientException = Shapes::StructureShape.new(name: 'ThrottledClientException')
|
|
562
562
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
|
563
563
|
TollFreePrefix = Shapes::StringShape.new(name: 'TollFreePrefix')
|
|
564
|
+
TranscribeContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeContentIdentificationType')
|
|
565
|
+
TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
|
|
564
566
|
TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
|
|
567
|
+
TranscribeLanguageModelName = Shapes::StringShape.new(name: 'TranscribeLanguageModelName')
|
|
568
|
+
TranscribeMedicalContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeMedicalContentIdentificationType')
|
|
565
569
|
TranscribeMedicalLanguageCode = Shapes::StringShape.new(name: 'TranscribeMedicalLanguageCode')
|
|
566
570
|
TranscribeMedicalRegion = Shapes::StringShape.new(name: 'TranscribeMedicalRegion')
|
|
567
571
|
TranscribeMedicalSpecialty = Shapes::StringShape.new(name: 'TranscribeMedicalSpecialty')
|
|
568
572
|
TranscribeMedicalType = Shapes::StringShape.new(name: 'TranscribeMedicalType')
|
|
573
|
+
TranscribePartialResultsStability = Shapes::StringShape.new(name: 'TranscribePartialResultsStability')
|
|
574
|
+
TranscribePiiEntityTypes = Shapes::StringShape.new(name: 'TranscribePiiEntityTypes')
|
|
569
575
|
TranscribeRegion = Shapes::StringShape.new(name: 'TranscribeRegion')
|
|
570
576
|
TranscribeVocabularyFilterMethod = Shapes::StringShape.new(name: 'TranscribeVocabularyFilterMethod')
|
|
571
577
|
TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
|
|
@@ -1435,6 +1441,7 @@ module Aws::Chime
|
|
|
1435
1441
|
EngineTranscribeMedicalSettings.add_member(:type, Shapes::ShapeRef.new(shape: TranscribeMedicalType, required: true, location_name: "Type"))
|
|
1436
1442
|
EngineTranscribeMedicalSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
|
|
1437
1443
|
EngineTranscribeMedicalSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeMedicalRegion, location_name: "Region"))
|
|
1444
|
+
EngineTranscribeMedicalSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeMedicalContentIdentificationType, location_name: "ContentIdentificationType"))
|
|
1438
1445
|
EngineTranscribeMedicalSettings.struct_class = Types::EngineTranscribeMedicalSettings
|
|
1439
1446
|
|
|
1440
1447
|
EngineTranscribeSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeLanguageCode, required: true, location_name: "LanguageCode"))
|
|
@@ -1442,6 +1449,12 @@ module Aws::Chime
|
|
|
1442
1449
|
EngineTranscribeSettings.add_member(:vocabulary_filter_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyFilterName"))
|
|
1443
1450
|
EngineTranscribeSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
|
|
1444
1451
|
EngineTranscribeSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeRegion, location_name: "Region"))
|
|
1452
|
+
EngineTranscribeSettings.add_member(:enable_partial_results_stabilization, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePartialResultsStabilization"))
|
|
1453
|
+
EngineTranscribeSettings.add_member(:partial_results_stability, Shapes::ShapeRef.new(shape: TranscribePartialResultsStability, location_name: "PartialResultsStability"))
|
|
1454
|
+
EngineTranscribeSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeContentIdentificationType, location_name: "ContentIdentificationType"))
|
|
1455
|
+
EngineTranscribeSettings.add_member(:content_redaction_type, Shapes::ShapeRef.new(shape: TranscribeContentRedactionType, location_name: "ContentRedactionType"))
|
|
1456
|
+
EngineTranscribeSettings.add_member(:pii_entity_types, Shapes::ShapeRef.new(shape: TranscribePiiEntityTypes, location_name: "PiiEntityTypes"))
|
|
1457
|
+
EngineTranscribeSettings.add_member(:language_model_name, Shapes::ShapeRef.new(shape: TranscribeLanguageModelName, location_name: "LanguageModelName"))
|
|
1445
1458
|
EngineTranscribeSettings.struct_class = Types::EngineTranscribeSettings
|
|
1446
1459
|
|
|
1447
1460
|
EventsConfiguration.add_member(:bot_id, Shapes::ShapeRef.new(shape: String, location_name: "BotId"))
|
data/lib/aws-sdk-chime/types.rb
CHANGED
|
@@ -4353,6 +4353,7 @@ module Aws::Chime
|
|
|
4353
4353
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
|
4354
4354
|
# vocabulary_name: "String",
|
|
4355
4355
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
|
4356
|
+
# content_identification_type: "PHI", # accepts PHI
|
|
4356
4357
|
# }
|
|
4357
4358
|
#
|
|
4358
4359
|
# @!attribute [rw] language_code
|
|
@@ -4377,6 +4378,11 @@ module Aws::Chime
|
|
|
4377
4378
|
# specify a Region, Amazon Chime uses the meeting's Region.
|
|
4378
4379
|
# @return [String]
|
|
4379
4380
|
#
|
|
4381
|
+
# @!attribute [rw] content_identification_type
|
|
4382
|
+
# Set this field to `PHI` to identify personal health information in
|
|
4383
|
+
# the transcription output.
|
|
4384
|
+
# @return [String]
|
|
4385
|
+
#
|
|
4380
4386
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeMedicalSettings AWS API Documentation
|
|
4381
4387
|
#
|
|
4382
4388
|
class EngineTranscribeMedicalSettings < Struct.new(
|
|
@@ -4384,7 +4390,8 @@ module Aws::Chime
|
|
|
4384
4390
|
:specialty,
|
|
4385
4391
|
:type,
|
|
4386
4392
|
:vocabulary_name,
|
|
4387
|
-
:region
|
|
4393
|
+
:region,
|
|
4394
|
+
:content_identification_type)
|
|
4388
4395
|
SENSITIVE = []
|
|
4389
4396
|
include Aws::Structure
|
|
4390
4397
|
end
|
|
@@ -4400,6 +4407,12 @@ module Aws::Chime
|
|
|
4400
4407
|
# vocabulary_filter_name: "String",
|
|
4401
4408
|
# vocabulary_name: "String",
|
|
4402
4409
|
# 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
|
|
4410
|
+
# enable_partial_results_stabilization: false,
|
|
4411
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
|
4412
|
+
# content_identification_type: "PII", # accepts PII
|
|
4413
|
+
# content_redaction_type: "PII", # accepts PII
|
|
4414
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
|
4415
|
+
# language_model_name: "TranscribeLanguageModelName",
|
|
4403
4416
|
# }
|
|
4404
4417
|
#
|
|
4405
4418
|
# @!attribute [rw] language_code
|
|
@@ -4423,6 +4436,47 @@ module Aws::Chime
|
|
|
4423
4436
|
# Region, Amazon Chime uses the meeting's Region.
|
|
4424
4437
|
# @return [String]
|
|
4425
4438
|
#
|
|
4439
|
+
# @!attribute [rw] enable_partial_results_stabilization
|
|
4440
|
+
# Generates partial transcription results that are less likely to
|
|
4441
|
+
# change as meeting attendees speak. It does so by only allowing the
|
|
4442
|
+
# last few words from the partial results to change.
|
|
4443
|
+
# @return [Boolean]
|
|
4444
|
+
#
|
|
4445
|
+
# @!attribute [rw] partial_results_stability
|
|
4446
|
+
# The stabity level of a partial results transcription. Determines how
|
|
4447
|
+
# stable you want the transcription results to be. A higher level
|
|
4448
|
+
# means the transcription results are less likely to change.
|
|
4449
|
+
# @return [String]
|
|
4450
|
+
#
|
|
4451
|
+
# @!attribute [rw] content_identification_type
|
|
4452
|
+
# Set this field to `PII` to identify personal health information in
|
|
4453
|
+
# the transcription output.
|
|
4454
|
+
# @return [String]
|
|
4455
|
+
#
|
|
4456
|
+
# @!attribute [rw] content_redaction_type
|
|
4457
|
+
# Set this field to `PII` to redact personally identifiable
|
|
4458
|
+
# information in the transcription output. Content redaction is
|
|
4459
|
+
# performed only upon complete transcription of the audio segments.
|
|
4460
|
+
# @return [String]
|
|
4461
|
+
#
|
|
4462
|
+
# @!attribute [rw] pii_entity_types
|
|
4463
|
+
# Lists the PII entity types you want to identify or redact. To
|
|
4464
|
+
# specify entity types, you must enable `ContentIdentificationType` or
|
|
4465
|
+
# `ContentRedactionType`.
|
|
4466
|
+
#
|
|
4467
|
+
# `PIIEntityTypes` must be comma-separated. The available values are:
|
|
4468
|
+
# `BANK_ACCOUNT_NUMBER`, `BANK_ROUTING, CREDIT_DEBIT_NUMBER`,
|
|
4469
|
+
# `CREDIT_DEBIT_CVV`, `CREDIT_DEBIT_EXPIRY`, `PIN`, `EMAIL`,
|
|
4470
|
+
# `ADDRESS`, `NAME`, `PHONE`, `SSN`, and `ALL`.
|
|
4471
|
+
#
|
|
4472
|
+
# `PiiEntityTypes` is an optional parameter with a default value of
|
|
4473
|
+
# `ALL`.
|
|
4474
|
+
# @return [String]
|
|
4475
|
+
#
|
|
4476
|
+
# @!attribute [rw] language_model_name
|
|
4477
|
+
# The name of the language model used during transcription.
|
|
4478
|
+
# @return [String]
|
|
4479
|
+
#
|
|
4426
4480
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeSettings AWS API Documentation
|
|
4427
4481
|
#
|
|
4428
4482
|
class EngineTranscribeSettings < Struct.new(
|
|
@@ -4430,7 +4484,13 @@ module Aws::Chime
|
|
|
4430
4484
|
:vocabulary_filter_method,
|
|
4431
4485
|
:vocabulary_filter_name,
|
|
4432
4486
|
:vocabulary_name,
|
|
4433
|
-
:region
|
|
4487
|
+
:region,
|
|
4488
|
+
:enable_partial_results_stabilization,
|
|
4489
|
+
:partial_results_stability,
|
|
4490
|
+
:content_identification_type,
|
|
4491
|
+
:content_redaction_type,
|
|
4492
|
+
:pii_entity_types,
|
|
4493
|
+
:language_model_name)
|
|
4434
4494
|
SENSITIVE = []
|
|
4435
4495
|
include Aws::Structure
|
|
4436
4496
|
end
|
|
@@ -9325,6 +9385,12 @@ module Aws::Chime
|
|
|
9325
9385
|
# vocabulary_filter_name: "String",
|
|
9326
9386
|
# vocabulary_name: "String",
|
|
9327
9387
|
# 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
|
|
9388
|
+
# enable_partial_results_stabilization: false,
|
|
9389
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
|
9390
|
+
# content_identification_type: "PII", # accepts PII
|
|
9391
|
+
# content_redaction_type: "PII", # accepts PII
|
|
9392
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
|
9393
|
+
# language_model_name: "TranscribeLanguageModelName",
|
|
9328
9394
|
# },
|
|
9329
9395
|
# engine_transcribe_medical_settings: {
|
|
9330
9396
|
# language_code: "en-US", # required, accepts en-US
|
|
@@ -9332,6 +9398,7 @@ module Aws::Chime
|
|
|
9332
9398
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
|
9333
9399
|
# vocabulary_name: "String",
|
|
9334
9400
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
|
9401
|
+
# content_identification_type: "PHI", # accepts PHI
|
|
9335
9402
|
# },
|
|
9336
9403
|
# },
|
|
9337
9404
|
# }
|
|
@@ -9701,6 +9768,12 @@ module Aws::Chime
|
|
|
9701
9768
|
# vocabulary_filter_name: "String",
|
|
9702
9769
|
# vocabulary_name: "String",
|
|
9703
9770
|
# 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
|
|
9771
|
+
# enable_partial_results_stabilization: false,
|
|
9772
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
|
9773
|
+
# content_identification_type: "PII", # accepts PII
|
|
9774
|
+
# content_redaction_type: "PII", # accepts PII
|
|
9775
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
|
9776
|
+
# language_model_name: "TranscribeLanguageModelName",
|
|
9704
9777
|
# },
|
|
9705
9778
|
# engine_transcribe_medical_settings: {
|
|
9706
9779
|
# language_code: "en-US", # required, accepts en-US
|
|
@@ -9708,6 +9781,7 @@ module Aws::Chime
|
|
|
9708
9781
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
|
9709
9782
|
# vocabulary_name: "String",
|
|
9710
9783
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
|
9784
|
+
# content_identification_type: "PHI", # accepts PHI
|
|
9711
9785
|
# },
|
|
9712
9786
|
# }
|
|
9713
9787
|
#
|
data/lib/aws-sdk-chime.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-chime
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.62.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
|