aws-sdk-chime 1.52.0 → 1.53.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 82d3613479fec2ae25c7726924d8a3beb775fb7005e5126d5bbe2046f2d0de78
4
- data.tar.gz: c8ae21d225ec6341c6a1da50d3e8cf9b97833bcad8cb63acb845cb38bfb9a7f6
3
+ metadata.gz: 26effe01493dd17b0f73409ed6fadca6593bf76c5c1a8bcfb587e9a605d835a6
4
+ data.tar.gz: 0026ab55aed927c8642f1aa832edcc1219a0b6edc12d6bde817f96abea6bb29d
5
5
  SHA512:
6
- metadata.gz: 6d7be6840d2d0781a144b85fba539cacca2276156f008f5a001d21cbd085d6cf03edf5cf34c6b8df73d330c5506316062512d34c626f47c2664e0ca55000b436
7
- data.tar.gz: 5ef751a39260221af6e3d87b18f4a32bd477c21db2d44c8592b2e4fd5a10ffc159254384fc0f000745a34a08433630902c2207b0c6c7276ffe7cde7ef2ac9d98
6
+ metadata.gz: bdb86667a80195e34a72b7873796db464240563d397d1cd4085ddbf14ae026eaee114ab7c037f1bc994b7d4fddccfbd0b73033f0aedbe3dd770db6f682fd902d
7
+ data.tar.gz: e99e5f4fec997eff011e38c72f5729b51517f8ac218dff75534069484b5e6afae45b4bc524aad45e92df6096bc6c5ecfd37225041261df2ac0450faa872bb9c6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2021-07-29)
5
+ ------------------
6
+
7
+ * Feature - Adds support for live transcription of meetings with Amazon Transcribe and Amazon Transcribe Medical. The new APIs, StartMeetingTranscription and StopMeetingTranscription, control the generation of user-attributed transcriptions sent to meeting clients via Amazon Chime SDK data messages.
8
+
4
9
  1.52.0 (2021-07-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.53.0
data/lib/aws-sdk-chime.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-chime/customizations'
48
48
  # @!group service
49
49
  module Aws::Chime
50
50
 
51
- GEM_VERSION = '1.52.0'
51
+ GEM_VERSION = '1.53.0'
52
52
 
53
53
  end
@@ -7193,6 +7193,71 @@ module Aws::Chime
7193
7193
  req.send_request(options)
7194
7194
  end
7195
7195
 
7196
+ # Start transcription for the specified `meetingId`.
7197
+ #
7198
+ # @option params [required, String] :meeting_id
7199
+ # The unique ID of the meeting being transcribed.
7200
+ #
7201
+ # @option params [required, Types::TranscriptionConfiguration] :transcription_configuration
7202
+ # The configuration for the current transcription operation. Must
7203
+ # contain `EngineTranscribeSettings` or
7204
+ # `EngineTranscribeMedicalSettings`.
7205
+ #
7206
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
7207
+ #
7208
+ # @example Request syntax with placeholder values
7209
+ #
7210
+ # resp = client.start_meeting_transcription({
7211
+ # meeting_id: "GuidString", # required
7212
+ # transcription_configuration: { # required
7213
+ # engine_transcribe_settings: {
7214
+ # language_code: "en-US", # required, accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN
7215
+ # vocabulary_filter_method: "remove", # accepts remove, mask, tag
7216
+ # vocabulary_filter_name: "String",
7217
+ # vocabulary_name: "String",
7218
+ # 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
7219
+ # },
7220
+ # engine_transcribe_medical_settings: {
7221
+ # language_code: "en-US", # required, accepts en-US
7222
+ # specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
7223
+ # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
7224
+ # vocabulary_name: "String",
7225
+ # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1
7226
+ # },
7227
+ # },
7228
+ # })
7229
+ #
7230
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/StartMeetingTranscription AWS API Documentation
7231
+ #
7232
+ # @overload start_meeting_transcription(params = {})
7233
+ # @param [Hash] params ({})
7234
+ def start_meeting_transcription(params = {}, options = {})
7235
+ req = build_request(:start_meeting_transcription, params)
7236
+ req.send_request(options)
7237
+ end
7238
+
7239
+ # Stops transcription for the specified `meetingId`.
7240
+ #
7241
+ # @option params [required, String] :meeting_id
7242
+ # The unique ID of the meeting for which you stop transcription.
7243
+ #
7244
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
7245
+ #
7246
+ # @example Request syntax with placeholder values
7247
+ #
7248
+ # resp = client.stop_meeting_transcription({
7249
+ # meeting_id: "GuidString", # required
7250
+ # })
7251
+ #
7252
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/StopMeetingTranscription AWS API Documentation
7253
+ #
7254
+ # @overload stop_meeting_transcription(params = {})
7255
+ # @param [Hash] params ({})
7256
+ def stop_meeting_transcription(params = {}, options = {})
7257
+ req = build_request(:stop_meeting_transcription, params)
7258
+ req.send_request(options)
7259
+ end
7260
+
7196
7261
  # Applies the specified tags to the specified Amazon Chime SDK attendee.
7197
7262
  #
7198
7263
  # @option params [required, String] :meeting_id
@@ -8340,7 +8405,7 @@ module Aws::Chime
8340
8405
  params: params,
8341
8406
  config: config)
8342
8407
  context[:gem_name] = 'aws-sdk-chime'
8343
- context[:gem_version] = '1.52.0'
8408
+ context[:gem_version] = '1.53.0'
8344
8409
  Seahorse::Client::Request.new(handlers, context)
8345
8410
  end
8346
8411
 
@@ -232,6 +232,8 @@ module Aws::Chime
232
232
  EmailAddress = Shapes::StringShape.new(name: 'EmailAddress')
233
233
  EmailStatus = Shapes::StringShape.new(name: 'EmailStatus')
234
234
  EmergencyCallingConfiguration = Shapes::StructureShape.new(name: 'EmergencyCallingConfiguration')
235
+ EngineTranscribeMedicalSettings = Shapes::StructureShape.new(name: 'EngineTranscribeMedicalSettings')
236
+ EngineTranscribeSettings = Shapes::StructureShape.new(name: 'EngineTranscribeSettings')
235
237
  ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
236
238
  EventsConfiguration = Shapes::StructureShape.new(name: 'EventsConfiguration')
237
239
  ExternalMeetingIdType = Shapes::StringShape.new(name: 'ExternalMeetingIdType')
@@ -523,6 +525,10 @@ module Aws::Chime
523
525
  SipRuleTargetApplicationList = Shapes::ListShape.new(name: 'SipRuleTargetApplicationList')
524
526
  SipRuleTriggerType = Shapes::StringShape.new(name: 'SipRuleTriggerType')
525
527
  SortOrder = Shapes::StringShape.new(name: 'SortOrder')
528
+ StartMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionRequest')
529
+ StartMeetingTranscriptionResponse = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionResponse')
530
+ StopMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StopMeetingTranscriptionRequest')
531
+ StopMeetingTranscriptionResponse = Shapes::StructureShape.new(name: 'StopMeetingTranscriptionResponse')
526
532
  StreamingConfiguration = Shapes::StructureShape.new(name: 'StreamingConfiguration')
527
533
  StreamingNotificationTarget = Shapes::StructureShape.new(name: 'StreamingNotificationTarget')
528
534
  StreamingNotificationTargetList = Shapes::ListShape.new(name: 'StreamingNotificationTargetList')
@@ -543,6 +549,14 @@ module Aws::Chime
543
549
  ThrottledClientException = Shapes::StructureShape.new(name: 'ThrottledClientException')
544
550
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
545
551
  TollFreePrefix = Shapes::StringShape.new(name: 'TollFreePrefix')
552
+ TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
553
+ TranscribeMedicalLanguageCode = Shapes::StringShape.new(name: 'TranscribeMedicalLanguageCode')
554
+ TranscribeMedicalRegion = Shapes::StringShape.new(name: 'TranscribeMedicalRegion')
555
+ TranscribeMedicalSpecialty = Shapes::StringShape.new(name: 'TranscribeMedicalSpecialty')
556
+ TranscribeMedicalType = Shapes::StringShape.new(name: 'TranscribeMedicalType')
557
+ TranscribeRegion = Shapes::StringShape.new(name: 'TranscribeRegion')
558
+ TranscribeVocabularyFilterMethod = Shapes::StringShape.new(name: 'TranscribeVocabularyFilterMethod')
559
+ TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
546
560
  UnauthorizedClientException = Shapes::StructureShape.new(name: 'UnauthorizedClientException')
547
561
  UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
548
562
  UntagAttendeeRequest = Shapes::StructureShape.new(name: 'UntagAttendeeRequest')
@@ -1382,6 +1396,20 @@ module Aws::Chime
1382
1396
  EmergencyCallingConfiguration.add_member(:dnis, Shapes::ShapeRef.new(shape: DNISEmergencyCallingConfigurationList, location_name: "DNIS"))
1383
1397
  EmergencyCallingConfiguration.struct_class = Types::EmergencyCallingConfiguration
1384
1398
 
1399
+ EngineTranscribeMedicalSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeMedicalLanguageCode, required: true, location_name: "LanguageCode"))
1400
+ EngineTranscribeMedicalSettings.add_member(:specialty, Shapes::ShapeRef.new(shape: TranscribeMedicalSpecialty, required: true, location_name: "Specialty"))
1401
+ EngineTranscribeMedicalSettings.add_member(:type, Shapes::ShapeRef.new(shape: TranscribeMedicalType, required: true, location_name: "Type"))
1402
+ EngineTranscribeMedicalSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
1403
+ EngineTranscribeMedicalSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeMedicalRegion, location_name: "Region"))
1404
+ EngineTranscribeMedicalSettings.struct_class = Types::EngineTranscribeMedicalSettings
1405
+
1406
+ EngineTranscribeSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeLanguageCode, required: true, location_name: "LanguageCode"))
1407
+ EngineTranscribeSettings.add_member(:vocabulary_filter_method, Shapes::ShapeRef.new(shape: TranscribeVocabularyFilterMethod, location_name: "VocabularyFilterMethod"))
1408
+ EngineTranscribeSettings.add_member(:vocabulary_filter_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyFilterName"))
1409
+ EngineTranscribeSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
1410
+ EngineTranscribeSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeRegion, location_name: "Region"))
1411
+ EngineTranscribeSettings.struct_class = Types::EngineTranscribeSettings
1412
+
1385
1413
  EventsConfiguration.add_member(:bot_id, Shapes::ShapeRef.new(shape: String, location_name: "BotId"))
1386
1414
  EventsConfiguration.add_member(:outbound_events_https_endpoint, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "OutboundEventsHTTPSEndpoint"))
1387
1415
  EventsConfiguration.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "LambdaFunctionArn"))
@@ -2324,6 +2352,17 @@ module Aws::Chime
2324
2352
 
2325
2353
  SipRuleTargetApplicationList.member = Shapes::ShapeRef.new(shape: SipRuleTargetApplication)
2326
2354
 
2355
+ StartMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
2356
+ StartMeetingTranscriptionRequest.add_member(:transcription_configuration, Shapes::ShapeRef.new(shape: TranscriptionConfiguration, required: true, location_name: "TranscriptionConfiguration"))
2357
+ StartMeetingTranscriptionRequest.struct_class = Types::StartMeetingTranscriptionRequest
2358
+
2359
+ StartMeetingTranscriptionResponse.struct_class = Types::StartMeetingTranscriptionResponse
2360
+
2361
+ StopMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
2362
+ StopMeetingTranscriptionRequest.struct_class = Types::StopMeetingTranscriptionRequest
2363
+
2364
+ StopMeetingTranscriptionResponse.struct_class = Types::StopMeetingTranscriptionResponse
2365
+
2327
2366
  StreamingConfiguration.add_member(:data_retention_in_hours, Shapes::ShapeRef.new(shape: DataRetentionInHours, required: true, location_name: "DataRetentionInHours"))
2328
2367
  StreamingConfiguration.add_member(:disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Disabled"))
2329
2368
  StreamingConfiguration.add_member(:streaming_notification_targets, Shapes::ShapeRef.new(shape: StreamingNotificationTargetList, location_name: "StreamingNotificationTargets"))
@@ -2377,6 +2416,10 @@ module Aws::Chime
2377
2416
  ThrottledClientException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
2378
2417
  ThrottledClientException.struct_class = Types::ThrottledClientException
2379
2418
 
2419
+ TranscriptionConfiguration.add_member(:engine_transcribe_settings, Shapes::ShapeRef.new(shape: EngineTranscribeSettings, location_name: "EngineTranscribeSettings"))
2420
+ TranscriptionConfiguration.add_member(:engine_transcribe_medical_settings, Shapes::ShapeRef.new(shape: EngineTranscribeMedicalSettings, location_name: "EngineTranscribeMedicalSettings"))
2421
+ TranscriptionConfiguration.struct_class = Types::TranscriptionConfiguration
2422
+
2380
2423
  UnauthorizedClientException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
2381
2424
  UnauthorizedClientException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
2382
2425
  UnauthorizedClientException.struct_class = Types::UnauthorizedClientException
@@ -5343,6 +5386,39 @@ module Aws::Chime
5343
5386
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
5344
5387
  end)
5345
5388
 
5389
+ api.add_operation(:start_meeting_transcription, Seahorse::Model::Operation.new.tap do |o|
5390
+ o.name = "StartMeetingTranscription"
5391
+ o.http_method = "POST"
5392
+ o.http_request_uri = "/meetings/{meetingId}/transcription?operation=start"
5393
+ o.input = Shapes::ShapeRef.new(shape: StartMeetingTranscriptionRequest)
5394
+ o.output = Shapes::ShapeRef.new(shape: StartMeetingTranscriptionResponse)
5395
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
5396
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
5397
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
5398
+ o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
5399
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
5400
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
5401
+ o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
5402
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
5403
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
5404
+ end)
5405
+
5406
+ api.add_operation(:stop_meeting_transcription, Seahorse::Model::Operation.new.tap do |o|
5407
+ o.name = "StopMeetingTranscription"
5408
+ o.http_method = "POST"
5409
+ o.http_request_uri = "/meetings/{meetingId}/transcription?operation=stop"
5410
+ o.input = Shapes::ShapeRef.new(shape: StopMeetingTranscriptionRequest)
5411
+ o.output = Shapes::ShapeRef.new(shape: StopMeetingTranscriptionResponse)
5412
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
5413
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
5414
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
5415
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
5416
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
5417
+ o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
5418
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
5419
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
5420
+ end)
5421
+
5346
5422
  api.add_operation(:tag_attendee, Seahorse::Model::Operation.new.tap do |o|
5347
5423
  o.name = "TagAttendee"
5348
5424
  o.http_method = "POST"
@@ -65,7 +65,7 @@ module Aws::Chime
65
65
  # @return [Array<String>]
66
66
  #
67
67
  # @!attribute [rw] account_status
68
- # The status of the account, `Suspended` or `Active`.
68
+ # The status of the account.
69
69
  # @return [String]
70
70
  #
71
71
  # @!attribute [rw] signin_delegate_groups
@@ -4172,6 +4172,101 @@ module Aws::Chime
4172
4172
  include Aws::Structure
4173
4173
  end
4174
4174
 
4175
+ # Settings specific to the Amazon Transcribe Medical engine.
4176
+ #
4177
+ # @note When making an API call, you may pass EngineTranscribeMedicalSettings
4178
+ # data as a hash:
4179
+ #
4180
+ # {
4181
+ # language_code: "en-US", # required, accepts en-US
4182
+ # specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
4183
+ # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
4184
+ # vocabulary_name: "String",
4185
+ # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1
4186
+ # }
4187
+ #
4188
+ # @!attribute [rw] language_code
4189
+ # The language code specified for the Amazon Transcribe Medical
4190
+ # engine.
4191
+ # @return [String]
4192
+ #
4193
+ # @!attribute [rw] specialty
4194
+ # The specialty specified for the Amazon Transcribe Medical engine.
4195
+ # @return [String]
4196
+ #
4197
+ # @!attribute [rw] type
4198
+ # The type of transcription.
4199
+ # @return [String]
4200
+ #
4201
+ # @!attribute [rw] vocabulary_name
4202
+ # The name of the vocabulary passed to Amazon Transcribe Medical.
4203
+ # @return [String]
4204
+ #
4205
+ # @!attribute [rw] region
4206
+ # The AWS Region passed to Amazon Transcribe Medical. If you don't
4207
+ # specify a Region, Amazon Chime uses the Region closest to the
4208
+ # meeting's Region.
4209
+ # @return [String]
4210
+ #
4211
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeMedicalSettings AWS API Documentation
4212
+ #
4213
+ class EngineTranscribeMedicalSettings < Struct.new(
4214
+ :language_code,
4215
+ :specialty,
4216
+ :type,
4217
+ :vocabulary_name,
4218
+ :region)
4219
+ SENSITIVE = []
4220
+ include Aws::Structure
4221
+ end
4222
+
4223
+ # Settings specific to the Amazon Transcribe engine.
4224
+ #
4225
+ # @note When making an API call, you may pass EngineTranscribeSettings
4226
+ # data as a hash:
4227
+ #
4228
+ # {
4229
+ # language_code: "en-US", # required, accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN
4230
+ # vocabulary_filter_method: "remove", # accepts remove, mask, tag
4231
+ # vocabulary_filter_name: "String",
4232
+ # vocabulary_name: "String",
4233
+ # 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
4234
+ # }
4235
+ #
4236
+ # @!attribute [rw] language_code
4237
+ # The language code specified for the Amazon Transcribe engine.
4238
+ # @return [String]
4239
+ #
4240
+ # @!attribute [rw] vocabulary_filter_method
4241
+ # The filtering method passed to Amazon Transcribe.
4242
+ # @return [String]
4243
+ #
4244
+ # @!attribute [rw] vocabulary_filter_name
4245
+ # The name of the vocabulary filter passed to Amazon Transcribe.
4246
+ # @return [String]
4247
+ #
4248
+ # @!attribute [rw] vocabulary_name
4249
+ # The name of the vocabulary passed to Amazon Transcribe.
4250
+ # @return [String]
4251
+ #
4252
+ # @!attribute [rw] region
4253
+ # The AWS Region passed to Amazon Transcribe. If you don't specify a
4254
+ # Region, Amazon Chime uses the Region closest to the meeting's
4255
+ # Region.
4256
+ # @return [String]
4257
+ #
4258
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeSettings AWS API Documentation
4259
+ #
4260
+ class EngineTranscribeSettings < Struct.new(
4261
+ :language_code,
4262
+ :vocabulary_filter_method,
4263
+ :vocabulary_filter_name,
4264
+ :vocabulary_name,
4265
+ :region)
4266
+ SENSITIVE = []
4267
+ include Aws::Structure
4268
+ end
4269
+
4175
4270
  # The configuration that allows a bot to receive outgoing events. Can be
4176
4271
  # either an HTTPS endpoint or a Lambda function ARN.
4177
4272
  #
@@ -6968,7 +7063,7 @@ module Aws::Chime
6968
7063
  end
6969
7064
 
6970
7065
  # A set of endpoints used by clients to connect to the media service
6971
- # group for a Amazon Chime SDK meeting.
7066
+ # group for an Amazon Chime SDK meeting.
6972
7067
  #
6973
7068
  # @!attribute [rw] audio_host_url
6974
7069
  # The audio host URL.
@@ -6999,7 +7094,7 @@ module Aws::Chime
6999
7094
  # @return [String]
7000
7095
  #
7001
7096
  # @!attribute [rw] event_ingestion_url
7002
- # The event ingestion URL.
7097
+ # The URL of the S3 bucket used to store the captured media.
7003
7098
  # @return [String]
7004
7099
  #
7005
7100
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaPlacement AWS API Documentation
@@ -8977,6 +9072,75 @@ module Aws::Chime
8977
9072
  include Aws::Structure
8978
9073
  end
8979
9074
 
9075
+ # @note When making an API call, you may pass StartMeetingTranscriptionRequest
9076
+ # data as a hash:
9077
+ #
9078
+ # {
9079
+ # meeting_id: "GuidString", # required
9080
+ # transcription_configuration: { # required
9081
+ # engine_transcribe_settings: {
9082
+ # language_code: "en-US", # required, accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN
9083
+ # vocabulary_filter_method: "remove", # accepts remove, mask, tag
9084
+ # vocabulary_filter_name: "String",
9085
+ # vocabulary_name: "String",
9086
+ # 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
9087
+ # },
9088
+ # engine_transcribe_medical_settings: {
9089
+ # language_code: "en-US", # required, accepts en-US
9090
+ # specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
9091
+ # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
9092
+ # vocabulary_name: "String",
9093
+ # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1
9094
+ # },
9095
+ # },
9096
+ # }
9097
+ #
9098
+ # @!attribute [rw] meeting_id
9099
+ # The unique ID of the meeting being transcribed.
9100
+ # @return [String]
9101
+ #
9102
+ # @!attribute [rw] transcription_configuration
9103
+ # The configuration for the current transcription operation. Must
9104
+ # contain `EngineTranscribeSettings` or
9105
+ # `EngineTranscribeMedicalSettings`.
9106
+ # @return [Types::TranscriptionConfiguration]
9107
+ #
9108
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/StartMeetingTranscriptionRequest AWS API Documentation
9109
+ #
9110
+ class StartMeetingTranscriptionRequest < Struct.new(
9111
+ :meeting_id,
9112
+ :transcription_configuration)
9113
+ SENSITIVE = []
9114
+ include Aws::Structure
9115
+ end
9116
+
9117
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/StartMeetingTranscriptionResponse AWS API Documentation
9118
+ #
9119
+ class StartMeetingTranscriptionResponse < Aws::EmptyStructure; end
9120
+
9121
+ # @note When making an API call, you may pass StopMeetingTranscriptionRequest
9122
+ # data as a hash:
9123
+ #
9124
+ # {
9125
+ # meeting_id: "GuidString", # required
9126
+ # }
9127
+ #
9128
+ # @!attribute [rw] meeting_id
9129
+ # The unique ID of the meeting for which you stop transcription.
9130
+ # @return [String]
9131
+ #
9132
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/StopMeetingTranscriptionRequest AWS API Documentation
9133
+ #
9134
+ class StopMeetingTranscriptionRequest < Struct.new(
9135
+ :meeting_id)
9136
+ SENSITIVE = []
9137
+ include Aws::Structure
9138
+ end
9139
+
9140
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/StopMeetingTranscriptionResponse AWS API Documentation
9141
+ #
9142
+ class StopMeetingTranscriptionResponse < Aws::EmptyStructure; end
9143
+
8980
9144
  # The streaming configuration associated with an Amazon Chime Voice
8981
9145
  # Connector. Specifies whether media streaming is enabled for sending to
8982
9146
  # Amazon Kinesis, and shows the retention period for the Amazon Kinesis
@@ -9282,6 +9446,49 @@ module Aws::Chime
9282
9446
  include Aws::Structure
9283
9447
  end
9284
9448
 
9449
+ # The configuration for the current transcription operation. Must
9450
+ # contain `EngineTranscribeSettings` or
9451
+ # `EngineTranscribeMedicalSettings`.
9452
+ #
9453
+ # @note When making an API call, you may pass TranscriptionConfiguration
9454
+ # data as a hash:
9455
+ #
9456
+ # {
9457
+ # engine_transcribe_settings: {
9458
+ # language_code: "en-US", # required, accepts en-US, en-GB, es-US, fr-CA, fr-FR, en-AU, it-IT, de-DE, pt-BR, ja-JP, ko-KR, zh-CN
9459
+ # vocabulary_filter_method: "remove", # accepts remove, mask, tag
9460
+ # vocabulary_filter_name: "String",
9461
+ # vocabulary_name: "String",
9462
+ # 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
9463
+ # },
9464
+ # engine_transcribe_medical_settings: {
9465
+ # language_code: "en-US", # required, accepts en-US
9466
+ # specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
9467
+ # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
9468
+ # vocabulary_name: "String",
9469
+ # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1
9470
+ # },
9471
+ # }
9472
+ #
9473
+ # @!attribute [rw] engine_transcribe_settings
9474
+ # The transcription configuration settings passed to Amazon
9475
+ # Transcribe.
9476
+ # @return [Types::EngineTranscribeSettings]
9477
+ #
9478
+ # @!attribute [rw] engine_transcribe_medical_settings
9479
+ # The transcription configuration settings passed to Amazon
9480
+ # Transcribe.
9481
+ # @return [Types::EngineTranscribeMedicalSettings]
9482
+ #
9483
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/TranscriptionConfiguration AWS API Documentation
9484
+ #
9485
+ class TranscriptionConfiguration < Struct.new(
9486
+ :engine_transcribe_settings,
9487
+ :engine_transcribe_medical_settings)
9488
+ SENSITIVE = []
9489
+ include Aws::Structure
9490
+ end
9491
+
9285
9492
  # The client is not currently authorized to make the request.
9286
9493
  #
9287
9494
  # @!attribute [rw] code
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.52.0
4
+ version: 1.53.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-07-28 00:00:00.000000000 Z
11
+ date: 2021-07-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core