aws-sdk-chime 1.50.0 → 1.54.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: c09cdb75d4a88983a9fc6855526f9f425437bab02c7e0e0cb2347542668a1714
4
- data.tar.gz: f50ac7793940c16b68104db72f5d15714470207e404296c8bcc7f37f083bdb02
3
+ metadata.gz: 5af79610d4d8e73d87c694dd53c7f04b6429f1349482eb99d5af5fb55243200a
4
+ data.tar.gz: 588f4b88b83c0f6b92003eca97c87cc69c7cbd3ebb815fe77edd877605878fe5
5
5
  SHA512:
6
- metadata.gz: 2571f36292fe9f82bd213c2b83de8b9bc080c69c56959670983e76f308823d58518513ecd6e01ced7796882e116a3921a254d16ce59d798b69c2b3241dd97b2c
7
- data.tar.gz: 2ab22bb9dd394a732dd11adfacaf43bbda210a82223521f6c601fa252cbdc9dcd86a96126757b3db16489cfbbd8c7daa3ada2a06f211d13bab02f9ee3f460286
6
+ metadata.gz: 954407ea3680210e915cac50402cc39727fcf78bb6cdd51916fd2b09c13e80eec2c59056248dba54578a254396e9ca04d11ebba4d9827c8a78568a1c07501be9
7
+ data.tar.gz: c63bbac10a24cb83e8878e5538aa98ff72d1a18b0411219eedb623a39f0b40304cdf1f67d03cef92ff40b9f8565cae8b5da335bbf6b1ec33c5cac888070a699f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.0 (2021-07-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.53.0 (2021-07-29)
10
+ ------------------
11
+
12
+ * 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.
13
+
14
+ 1.52.0 (2021-07-28)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.51.0 (2021-07-16)
20
+ ------------------
21
+
22
+ * Feature - This SDK release adds Account Status as one of the attributes in Account API response
23
+
4
24
  1.50.0 (2021-07-07)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.54.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.50.0'
51
+ GEM_VERSION = '1.54.0'
52
52
 
53
53
  end
@@ -899,6 +899,7 @@ module Aws::Chime
899
899
  # resp.account.default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
900
900
  # resp.account.supported_licenses #=> Array
901
901
  # resp.account.supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
902
+ # resp.account.account_status #=> String, one of "Suspended", "Active"
902
903
  # resp.account.signin_delegate_groups #=> Array
903
904
  # resp.account.signin_delegate_groups[0].group_name #=> String
904
905
  #
@@ -3562,6 +3563,7 @@ module Aws::Chime
3562
3563
  # resp.account.default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
3563
3564
  # resp.account.supported_licenses #=> Array
3564
3565
  # resp.account.supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
3566
+ # resp.account.account_status #=> String, one of "Suspended", "Active"
3565
3567
  # resp.account.signin_delegate_groups #=> Array
3566
3568
  # resp.account.signin_delegate_groups[0].group_name #=> String
3567
3569
  #
@@ -4768,6 +4770,7 @@ module Aws::Chime
4768
4770
  # resp.accounts[0].default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
4769
4771
  # resp.accounts[0].supported_licenses #=> Array
4770
4772
  # resp.accounts[0].supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
4773
+ # resp.accounts[0].account_status #=> String, one of "Suspended", "Active"
4771
4774
  # resp.accounts[0].signin_delegate_groups #=> Array
4772
4775
  # resp.accounts[0].signin_delegate_groups[0].group_name #=> String
4773
4776
  # resp.next_token #=> String
@@ -7190,6 +7193,71 @@ module Aws::Chime
7190
7193
  req.send_request(options)
7191
7194
  end
7192
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
+
7193
7261
  # Applies the specified tags to the specified Amazon Chime SDK attendee.
7194
7262
  #
7195
7263
  # @option params [required, String] :meeting_id
@@ -7408,6 +7476,7 @@ module Aws::Chime
7408
7476
  # resp.account.default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
7409
7477
  # resp.account.supported_licenses #=> Array
7410
7478
  # resp.account.supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
7479
+ # resp.account.account_status #=> String, one of "Suspended", "Active"
7411
7480
  # resp.account.signin_delegate_groups #=> Array
7412
7481
  # resp.account.signin_delegate_groups[0].group_name #=> String
7413
7482
  #
@@ -8336,7 +8405,7 @@ module Aws::Chime
8336
8405
  params: params,
8337
8406
  config: config)
8338
8407
  context[:gem_name] = 'aws-sdk-chime'
8339
- context[:gem_version] = '1.50.0'
8408
+ context[:gem_version] = '1.54.0'
8340
8409
  Seahorse::Client::Request.new(handlers, context)
8341
8410
  end
8342
8411
 
@@ -18,6 +18,7 @@ module Aws::Chime
18
18
  AccountList = Shapes::ListShape.new(name: 'AccountList')
19
19
  AccountName = Shapes::StringShape.new(name: 'AccountName')
20
20
  AccountSettings = Shapes::StructureShape.new(name: 'AccountSettings')
21
+ AccountStatus = Shapes::StringShape.new(name: 'AccountStatus')
21
22
  AccountType = Shapes::StringShape.new(name: 'AccountType')
22
23
  AlexaForBusinessMetadata = Shapes::StructureShape.new(name: 'AlexaForBusinessMetadata')
23
24
  Alpha2CountryCode = Shapes::StringShape.new(name: 'Alpha2CountryCode')
@@ -231,6 +232,8 @@ module Aws::Chime
231
232
  EmailAddress = Shapes::StringShape.new(name: 'EmailAddress')
232
233
  EmailStatus = Shapes::StringShape.new(name: 'EmailStatus')
233
234
  EmergencyCallingConfiguration = Shapes::StructureShape.new(name: 'EmergencyCallingConfiguration')
235
+ EngineTranscribeMedicalSettings = Shapes::StructureShape.new(name: 'EngineTranscribeMedicalSettings')
236
+ EngineTranscribeSettings = Shapes::StructureShape.new(name: 'EngineTranscribeSettings')
234
237
  ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
235
238
  EventsConfiguration = Shapes::StructureShape.new(name: 'EventsConfiguration')
236
239
  ExternalMeetingIdType = Shapes::StringShape.new(name: 'ExternalMeetingIdType')
@@ -522,6 +525,10 @@ module Aws::Chime
522
525
  SipRuleTargetApplicationList = Shapes::ListShape.new(name: 'SipRuleTargetApplicationList')
523
526
  SipRuleTriggerType = Shapes::StringShape.new(name: 'SipRuleTriggerType')
524
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')
525
532
  StreamingConfiguration = Shapes::StructureShape.new(name: 'StreamingConfiguration')
526
533
  StreamingNotificationTarget = Shapes::StructureShape.new(name: 'StreamingNotificationTarget')
527
534
  StreamingNotificationTargetList = Shapes::ListShape.new(name: 'StreamingNotificationTargetList')
@@ -542,6 +549,14 @@ module Aws::Chime
542
549
  ThrottledClientException = Shapes::StructureShape.new(name: 'ThrottledClientException')
543
550
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
544
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')
545
560
  UnauthorizedClientException = Shapes::StructureShape.new(name: 'UnauthorizedClientException')
546
561
  UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
547
562
  UntagAttendeeRequest = Shapes::StructureShape.new(name: 'UntagAttendeeRequest')
@@ -625,6 +640,7 @@ module Aws::Chime
625
640
  Account.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
626
641
  Account.add_member(:default_license, Shapes::ShapeRef.new(shape: License, location_name: "DefaultLicense"))
627
642
  Account.add_member(:supported_licenses, Shapes::ShapeRef.new(shape: LicenseList, location_name: "SupportedLicenses"))
643
+ Account.add_member(:account_status, Shapes::ShapeRef.new(shape: AccountStatus, location_name: "AccountStatus"))
628
644
  Account.add_member(:signin_delegate_groups, Shapes::ShapeRef.new(shape: SigninDelegateGroupList, location_name: "SigninDelegateGroups"))
629
645
  Account.struct_class = Types::Account
630
646
 
@@ -1380,6 +1396,20 @@ module Aws::Chime
1380
1396
  EmergencyCallingConfiguration.add_member(:dnis, Shapes::ShapeRef.new(shape: DNISEmergencyCallingConfigurationList, location_name: "DNIS"))
1381
1397
  EmergencyCallingConfiguration.struct_class = Types::EmergencyCallingConfiguration
1382
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
+
1383
1413
  EventsConfiguration.add_member(:bot_id, Shapes::ShapeRef.new(shape: String, location_name: "BotId"))
1384
1414
  EventsConfiguration.add_member(:outbound_events_https_endpoint, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "OutboundEventsHTTPSEndpoint"))
1385
1415
  EventsConfiguration.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "LambdaFunctionArn"))
@@ -2322,6 +2352,17 @@ module Aws::Chime
2322
2352
 
2323
2353
  SipRuleTargetApplicationList.member = Shapes::ShapeRef.new(shape: SipRuleTargetApplication)
2324
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
+
2325
2366
  StreamingConfiguration.add_member(:data_retention_in_hours, Shapes::ShapeRef.new(shape: DataRetentionInHours, required: true, location_name: "DataRetentionInHours"))
2326
2367
  StreamingConfiguration.add_member(:disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Disabled"))
2327
2368
  StreamingConfiguration.add_member(:streaming_notification_targets, Shapes::ShapeRef.new(shape: StreamingNotificationTargetList, location_name: "StreamingNotificationTargets"))
@@ -2375,6 +2416,10 @@ module Aws::Chime
2375
2416
  ThrottledClientException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
2376
2417
  ThrottledClientException.struct_class = Types::ThrottledClientException
2377
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
+
2378
2423
  UnauthorizedClientException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
2379
2424
  UnauthorizedClientException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
2380
2425
  UnauthorizedClientException.struct_class = Types::UnauthorizedClientException
@@ -5341,6 +5386,39 @@ module Aws::Chime
5341
5386
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
5342
5387
  end)
5343
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
+
5344
5422
  api.add_operation(:tag_attendee, Seahorse::Model::Operation.new.tap do |o|
5345
5423
  o.name = "TagAttendee"
5346
5424
  o.http_method = "POST"
@@ -64,6 +64,10 @@ module Aws::Chime
64
64
  # Supported licenses for the Amazon Chime account.
65
65
  # @return [Array<String>]
66
66
  #
67
+ # @!attribute [rw] account_status
68
+ # The status of the account.
69
+ # @return [String]
70
+ #
67
71
  # @!attribute [rw] signin_delegate_groups
68
72
  # The sign-in delegate groups associated with the account.
69
73
  # @return [Array<Types::SigninDelegateGroup>]
@@ -78,6 +82,7 @@ module Aws::Chime
78
82
  :created_timestamp,
79
83
  :default_license,
80
84
  :supported_licenses,
85
+ :account_status,
81
86
  :signin_delegate_groups)
82
87
  SENSITIVE = []
83
88
  include Aws::Structure
@@ -4167,6 +4172,101 @@ module Aws::Chime
4167
4172
  include Aws::Structure
4168
4173
  end
4169
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
+
4170
4270
  # The configuration that allows a bot to receive outgoing events. Can be
4171
4271
  # either an HTTPS endpoint or a Lambda function ARN.
4172
4272
  #
@@ -6963,7 +7063,7 @@ module Aws::Chime
6963
7063
  end
6964
7064
 
6965
7065
  # A set of endpoints used by clients to connect to the media service
6966
- # group for a Amazon Chime SDK meeting.
7066
+ # group for an Amazon Chime SDK meeting.
6967
7067
  #
6968
7068
  # @!attribute [rw] audio_host_url
6969
7069
  # The audio host URL.
@@ -6994,7 +7094,7 @@ module Aws::Chime
6994
7094
  # @return [String]
6995
7095
  #
6996
7096
  # @!attribute [rw] event_ingestion_url
6997
- # The event ingestion URL.
7097
+ # The URL of the S3 bucket used to store the captured media.
6998
7098
  # @return [String]
6999
7099
  #
7000
7100
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaPlacement AWS API Documentation
@@ -8972,6 +9072,75 @@ module Aws::Chime
8972
9072
  include Aws::Structure
8973
9073
  end
8974
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
+
8975
9144
  # The streaming configuration associated with an Amazon Chime Voice
8976
9145
  # Connector. Specifies whether media streaming is enabled for sending to
8977
9146
  # Amazon Kinesis, and shows the retention period for the Amazon Kinesis
@@ -9277,6 +9446,49 @@ module Aws::Chime
9277
9446
  include Aws::Structure
9278
9447
  end
9279
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
+
9280
9492
  # The client is not currently authorized to make the request.
9281
9493
  #
9282
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.50.0
4
+ version: 1.54.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-07 00:00:00.000000000 Z
11
+ date: 2021-07-30 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