aws-sdk-chime 1.51.0 → 1.55.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b1d7d03df7c1a1e4b3740661a3a72306e15fa3a1527e17ef16ccf154a8cc9de
4
- data.tar.gz: 9a717530a776973667aefad50d3c0195a3b1d7d6ccfc6b5674ba3edc004a1a1b
3
+ metadata.gz: 71192489ba73fa9b74409e175bb5500e8f01afa6bb19d746ca8ec4d60946943d
4
+ data.tar.gz: d8021e3a75dce028bbb582040cf5891fc0a6ffb77a08a321ad03345fdb9ee46f
5
5
  SHA512:
6
- metadata.gz: 2783acf467e216472008bae26a0466f0fc24d656309c3ddbabf0001b1318217fc402a913c9d2f64d9fa65109ddfde4e93ae696469f40a304917091482ef3cea3
7
- data.tar.gz: f1647bf9c2ed7e5ea030fbd74e115f9dbe7188fcca602103628ce17dd23f1a470175f170d43f616b29ef3aff6aa0028744a8f91b9604122858fd3791641f328e
6
+ metadata.gz: e708798dfa5ebc7d0560272027583a71bdad253577dcd4fb290dd2daae803aea7d3253bf0cea9eb7327efc24f32a09b9483532d75cfa0764f7d1302c86eb1baa
7
+ data.tar.gz: bde1771f7008b048be2a1237348b46ba6ebb86d311b659a87c872ca3d87d462904d1d95f878543d58ce933757ed0f0dc7cca434dc6956f86bc3d52970ffe9435
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.55.0 (2021-08-10)
5
+ ------------------
6
+
7
+ * Feature - Add support for "auto" in Region field of StartMeetingTranscription API request.
8
+
9
+ 1.54.0 (2021-07-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.53.0 (2021-07-29)
15
+ ------------------
16
+
17
+ * 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.
18
+
19
+ 1.52.0 (2021-07-28)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.51.0 (2021-07-16)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.51.0
1
+ 1.55.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.51.0'
51
+ GEM_VERSION = '1.55.0'
52
52
 
53
53
  end
@@ -3090,7 +3090,7 @@ module Aws::Chime
3090
3090
  req.send_request(options)
3091
3091
  end
3092
3092
 
3093
- # Returns the full details of an `AppInstanceUser` .
3093
+ # Returns the full details of an `AppInstanceUser`.
3094
3094
  #
3095
3095
  # @option params [required, String] :app_instance_user_arn
3096
3096
  # The ARN of the `AppInstanceUser`.
@@ -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, auto
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, auto
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.51.0'
8408
+ context[:gem_version] = '1.55.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
@@ -601,7 +601,7 @@ module Aws::Chime
601
601
  # and membership types.
602
602
  #
603
603
  # @!attribute [rw] invited_by
604
- # The details of a user.
604
+ # The identifier of the member who invited another member.
605
605
  # @return [Types::Identity]
606
606
  #
607
607
  # @!attribute [rw] type
@@ -1237,7 +1237,7 @@ module Aws::Chime
1237
1237
  # @return [Types::ChannelSummary]
1238
1238
  #
1239
1239
  # @!attribute [rw] app_instance_user_membership_summary
1240
- # Returns the channel membership data for an `AppInstance`.
1240
+ # Summary of the membership details of an `AppInstanceUser`.
1241
1241
  # @return [Types::AppInstanceUserMembershipSummary]
1242
1242
  #
1243
1243
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ChannelMembershipForAppInstanceUserSummary AWS API Documentation
@@ -4172,6 +4172,99 @@ 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, auto
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 meeting's Region.
4208
+ # @return [String]
4209
+ #
4210
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeMedicalSettings AWS API Documentation
4211
+ #
4212
+ class EngineTranscribeMedicalSettings < Struct.new(
4213
+ :language_code,
4214
+ :specialty,
4215
+ :type,
4216
+ :vocabulary_name,
4217
+ :region)
4218
+ SENSITIVE = []
4219
+ include Aws::Structure
4220
+ end
4221
+
4222
+ # Settings specific to the Amazon Transcribe engine.
4223
+ #
4224
+ # @note When making an API call, you may pass EngineTranscribeSettings
4225
+ # data as a hash:
4226
+ #
4227
+ # {
4228
+ # 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
4229
+ # vocabulary_filter_method: "remove", # accepts remove, mask, tag
4230
+ # vocabulary_filter_name: "String",
4231
+ # vocabulary_name: "String",
4232
+ # 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
4233
+ # }
4234
+ #
4235
+ # @!attribute [rw] language_code
4236
+ # The language code specified for the Amazon Transcribe engine.
4237
+ # @return [String]
4238
+ #
4239
+ # @!attribute [rw] vocabulary_filter_method
4240
+ # The filtering method passed to Amazon Transcribe.
4241
+ # @return [String]
4242
+ #
4243
+ # @!attribute [rw] vocabulary_filter_name
4244
+ # The name of the vocabulary filter passed to Amazon Transcribe.
4245
+ # @return [String]
4246
+ #
4247
+ # @!attribute [rw] vocabulary_name
4248
+ # The name of the vocabulary passed to Amazon Transcribe.
4249
+ # @return [String]
4250
+ #
4251
+ # @!attribute [rw] region
4252
+ # The AWS Region passed to Amazon Transcribe. If you don't specify a
4253
+ # Region, Amazon Chime uses the meeting's Region.
4254
+ # @return [String]
4255
+ #
4256
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeSettings AWS API Documentation
4257
+ #
4258
+ class EngineTranscribeSettings < Struct.new(
4259
+ :language_code,
4260
+ :vocabulary_filter_method,
4261
+ :vocabulary_filter_name,
4262
+ :vocabulary_name,
4263
+ :region)
4264
+ SENSITIVE = []
4265
+ include Aws::Structure
4266
+ end
4267
+
4175
4268
  # The configuration that allows a bot to receive outgoing events. Can be
4176
4269
  # either an HTTPS endpoint or a Lambda function ARN.
4177
4270
  #
@@ -6968,7 +7061,7 @@ module Aws::Chime
6968
7061
  end
6969
7062
 
6970
7063
  # A set of endpoints used by clients to connect to the media service
6971
- # group for a Amazon Chime SDK meeting.
7064
+ # group for an Amazon Chime SDK meeting.
6972
7065
  #
6973
7066
  # @!attribute [rw] audio_host_url
6974
7067
  # The audio host URL.
@@ -6999,7 +7092,7 @@ module Aws::Chime
6999
7092
  # @return [String]
7000
7093
  #
7001
7094
  # @!attribute [rw] event_ingestion_url
7002
- # The event ingestion URL.
7095
+ # The URL of the S3 bucket used to store the captured media.
7003
7096
  # @return [String]
7004
7097
  #
7005
7098
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaPlacement AWS API Documentation
@@ -8977,6 +9070,75 @@ module Aws::Chime
8977
9070
  include Aws::Structure
8978
9071
  end
8979
9072
 
9073
+ # @note When making an API call, you may pass StartMeetingTranscriptionRequest
9074
+ # data as a hash:
9075
+ #
9076
+ # {
9077
+ # meeting_id: "GuidString", # required
9078
+ # transcription_configuration: { # required
9079
+ # engine_transcribe_settings: {
9080
+ # 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
9081
+ # vocabulary_filter_method: "remove", # accepts remove, mask, tag
9082
+ # vocabulary_filter_name: "String",
9083
+ # vocabulary_name: "String",
9084
+ # 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
9085
+ # },
9086
+ # engine_transcribe_medical_settings: {
9087
+ # language_code: "en-US", # required, accepts en-US
9088
+ # specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
9089
+ # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
9090
+ # vocabulary_name: "String",
9091
+ # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
9092
+ # },
9093
+ # },
9094
+ # }
9095
+ #
9096
+ # @!attribute [rw] meeting_id
9097
+ # The unique ID of the meeting being transcribed.
9098
+ # @return [String]
9099
+ #
9100
+ # @!attribute [rw] transcription_configuration
9101
+ # The configuration for the current transcription operation. Must
9102
+ # contain `EngineTranscribeSettings` or
9103
+ # `EngineTranscribeMedicalSettings`.
9104
+ # @return [Types::TranscriptionConfiguration]
9105
+ #
9106
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/StartMeetingTranscriptionRequest AWS API Documentation
9107
+ #
9108
+ class StartMeetingTranscriptionRequest < Struct.new(
9109
+ :meeting_id,
9110
+ :transcription_configuration)
9111
+ SENSITIVE = []
9112
+ include Aws::Structure
9113
+ end
9114
+
9115
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/StartMeetingTranscriptionResponse AWS API Documentation
9116
+ #
9117
+ class StartMeetingTranscriptionResponse < Aws::EmptyStructure; end
9118
+
9119
+ # @note When making an API call, you may pass StopMeetingTranscriptionRequest
9120
+ # data as a hash:
9121
+ #
9122
+ # {
9123
+ # meeting_id: "GuidString", # required
9124
+ # }
9125
+ #
9126
+ # @!attribute [rw] meeting_id
9127
+ # The unique ID of the meeting for which you stop transcription.
9128
+ # @return [String]
9129
+ #
9130
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/StopMeetingTranscriptionRequest AWS API Documentation
9131
+ #
9132
+ class StopMeetingTranscriptionRequest < Struct.new(
9133
+ :meeting_id)
9134
+ SENSITIVE = []
9135
+ include Aws::Structure
9136
+ end
9137
+
9138
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/StopMeetingTranscriptionResponse AWS API Documentation
9139
+ #
9140
+ class StopMeetingTranscriptionResponse < Aws::EmptyStructure; end
9141
+
8980
9142
  # The streaming configuration associated with an Amazon Chime Voice
8981
9143
  # Connector. Specifies whether media streaming is enabled for sending to
8982
9144
  # Amazon Kinesis, and shows the retention period for the Amazon Kinesis
@@ -9282,6 +9444,49 @@ module Aws::Chime
9282
9444
  include Aws::Structure
9283
9445
  end
9284
9446
 
9447
+ # The configuration for the current transcription operation. Must
9448
+ # contain `EngineTranscribeSettings` or
9449
+ # `EngineTranscribeMedicalSettings`.
9450
+ #
9451
+ # @note When making an API call, you may pass TranscriptionConfiguration
9452
+ # data as a hash:
9453
+ #
9454
+ # {
9455
+ # engine_transcribe_settings: {
9456
+ # 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
9457
+ # vocabulary_filter_method: "remove", # accepts remove, mask, tag
9458
+ # vocabulary_filter_name: "String",
9459
+ # vocabulary_name: "String",
9460
+ # 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
9461
+ # },
9462
+ # engine_transcribe_medical_settings: {
9463
+ # language_code: "en-US", # required, accepts en-US
9464
+ # specialty: "PRIMARYCARE", # required, accepts PRIMARYCARE, CARDIOLOGY, NEUROLOGY, ONCOLOGY, RADIOLOGY, UROLOGY
9465
+ # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
9466
+ # vocabulary_name: "String",
9467
+ # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
9468
+ # },
9469
+ # }
9470
+ #
9471
+ # @!attribute [rw] engine_transcribe_settings
9472
+ # The transcription configuration settings passed to Amazon
9473
+ # Transcribe.
9474
+ # @return [Types::EngineTranscribeSettings]
9475
+ #
9476
+ # @!attribute [rw] engine_transcribe_medical_settings
9477
+ # The transcription configuration settings passed to Amazon
9478
+ # Transcribe.
9479
+ # @return [Types::EngineTranscribeMedicalSettings]
9480
+ #
9481
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/TranscriptionConfiguration AWS API Documentation
9482
+ #
9483
+ class TranscriptionConfiguration < Struct.new(
9484
+ :engine_transcribe_settings,
9485
+ :engine_transcribe_medical_settings)
9486
+ SENSITIVE = []
9487
+ include Aws::Structure
9488
+ end
9489
+
9285
9490
  # The client is not currently authorized to make the request.
9286
9491
  #
9287
9492
  # @!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.51.0
4
+ version: 1.55.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-16 00:00:00.000000000 Z
11
+ date: 2021-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.112.0
22
+ version: 3.119.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.112.0
32
+ version: 3.119.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement