aws-sdk-chime 1.49.0 → 1.53.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: 7b0726bb32625e6a74388cc38b4045da281a839fcd7a4c6ef5d3342335c354be
4
- data.tar.gz: 1f00f48b24cb6c1198bdee293ab07535486ce8979efdb2b27220ed338dff45ee
3
+ metadata.gz: 26effe01493dd17b0f73409ed6fadca6593bf76c5c1a8bcfb587e9a605d835a6
4
+ data.tar.gz: 0026ab55aed927c8642f1aa832edcc1219a0b6edc12d6bde817f96abea6bb29d
5
5
  SHA512:
6
- metadata.gz: 2253f8703589de7712dc3db0c8db4b28d6da3f354367262e971d67a0edaf1effa447e3c9e325f211f7a7d02a0184a4f410ac48774182d5b77c8cf02abbece50a
7
- data.tar.gz: 99bb6636a88d2d92b8e6905a7acb3510cf1aee76d5b823f90ebaaa26872ff65b9901a7f2b95c1e949230d842461b6af84d1e243a0f8bcf30d067e203dc46076f
6
+ metadata.gz: bdb86667a80195e34a72b7873796db464240563d397d1cd4085ddbf14ae026eaee114ab7c037f1bc994b7d4fddccfbd0b73033f0aedbe3dd770db6f682fd902d
7
+ data.tar.gz: e99e5f4fec997eff011e38c72f5729b51517f8ac218dff75534069484b5e6afae45b4bc524aad45e92df6096bc6c5ecfd37225041261df2ac0450faa872bb9c6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
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
+
9
+ 1.52.0 (2021-07-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.51.0 (2021-07-16)
15
+ ------------------
16
+
17
+ * Feature - This SDK release adds Account Status as one of the attributes in Account API response
18
+
19
+ 1.50.0 (2021-07-07)
20
+ ------------------
21
+
22
+ * Feature - Releasing new APIs for AWS Chime MediaCapturePipeline
23
+
4
24
  1.49.0 (2021-06-24)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.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.49.0'
51
+ GEM_VERSION = '1.53.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
  #
@@ -1410,6 +1411,62 @@ module Aws::Chime
1410
1411
  req.send_request(options)
1411
1412
  end
1412
1413
 
1414
+ # Creates a media capture pipeline.
1415
+ #
1416
+ # @option params [required, String] :source_type
1417
+ # Source type from which the media artifacts will be captured. A Chime
1418
+ # SDK Meeting is the only supported source.
1419
+ #
1420
+ # @option params [required, String] :source_arn
1421
+ # ARN of the source from which the media artifacts are captured.
1422
+ #
1423
+ # @option params [required, String] :sink_type
1424
+ # Destination type to which the media artifacts are saved. You must use
1425
+ # an S3 bucket.
1426
+ #
1427
+ # @option params [required, String] :sink_arn
1428
+ # The ARN of the sink type.
1429
+ #
1430
+ # @option params [String] :client_request_token
1431
+ # The token assigned to the client making the pipeline request.
1432
+ #
1433
+ # **A suitable default value is auto-generated.** You should normally
1434
+ # not need to pass this option.**
1435
+ #
1436
+ # @return [Types::CreateMediaCapturePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1437
+ #
1438
+ # * {Types::CreateMediaCapturePipelineResponse#media_capture_pipeline #media_capture_pipeline} => Types::MediaCapturePipeline
1439
+ #
1440
+ # @example Request syntax with placeholder values
1441
+ #
1442
+ # resp = client.create_media_capture_pipeline({
1443
+ # source_type: "ChimeSdkMeeting", # required, accepts ChimeSdkMeeting
1444
+ # source_arn: "Arn", # required
1445
+ # sink_type: "S3Bucket", # required, accepts S3Bucket
1446
+ # sink_arn: "Arn", # required
1447
+ # client_request_token: "ClientRequestToken",
1448
+ # })
1449
+ #
1450
+ # @example Response structure
1451
+ #
1452
+ # resp.media_capture_pipeline.media_pipeline_id #=> String
1453
+ # resp.media_capture_pipeline.source_type #=> String, one of "ChimeSdkMeeting"
1454
+ # resp.media_capture_pipeline.source_arn #=> String
1455
+ # resp.media_capture_pipeline.status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
1456
+ # resp.media_capture_pipeline.sink_type #=> String, one of "S3Bucket"
1457
+ # resp.media_capture_pipeline.sink_arn #=> String
1458
+ # resp.media_capture_pipeline.created_timestamp #=> Time
1459
+ # resp.media_capture_pipeline.updated_timestamp #=> Time
1460
+ #
1461
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipeline AWS API Documentation
1462
+ #
1463
+ # @overload create_media_capture_pipeline(params = {})
1464
+ # @param [Hash] params ({})
1465
+ def create_media_capture_pipeline(params = {}, options = {})
1466
+ req = build_request(:create_media_capture_pipeline, params)
1467
+ req.send_request(options)
1468
+ end
1469
+
1413
1470
  # Creates a new Amazon Chime SDK meeting in the specified media Region
1414
1471
  # with no initial attendees. For more information about specifying media
1415
1472
  # Regions, see [Amazon Chime SDK Media Regions][1] in the *Amazon Chime
@@ -2555,6 +2612,28 @@ module Aws::Chime
2555
2612
  req.send_request(options)
2556
2613
  end
2557
2614
 
2615
+ # Deletes the media capture pipeline.
2616
+ #
2617
+ # @option params [required, String] :media_pipeline_id
2618
+ # The ID of the media capture pipeline being deleted.
2619
+ #
2620
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2621
+ #
2622
+ # @example Request syntax with placeholder values
2623
+ #
2624
+ # resp = client.delete_media_capture_pipeline({
2625
+ # media_pipeline_id: "GuidString", # required
2626
+ # })
2627
+ #
2628
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteMediaCapturePipeline AWS API Documentation
2629
+ #
2630
+ # @overload delete_media_capture_pipeline(params = {})
2631
+ # @param [Hash] params ({})
2632
+ def delete_media_capture_pipeline(params = {}, options = {})
2633
+ req = build_request(:delete_media_capture_pipeline, params)
2634
+ req.send_request(options)
2635
+ end
2636
+
2558
2637
  # Deletes the specified Amazon Chime SDK meeting. The operation deletes
2559
2638
  # all attendees, disconnects all clients, and prevents new clients from
2560
2639
  # joining the meeting. For more information about the Amazon Chime SDK,
@@ -3484,6 +3563,7 @@ module Aws::Chime
3484
3563
  # resp.account.default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
3485
3564
  # resp.account.supported_licenses #=> Array
3486
3565
  # resp.account.supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
3566
+ # resp.account.account_status #=> String, one of "Suspended", "Active"
3487
3567
  # resp.account.signin_delegate_groups #=> Array
3488
3568
  # resp.account.signin_delegate_groups[0].group_name #=> String
3489
3569
  #
@@ -3785,6 +3865,41 @@ module Aws::Chime
3785
3865
  req.send_request(options)
3786
3866
  end
3787
3867
 
3868
+ # Gets an existing media capture pipeline.
3869
+ #
3870
+ # @option params [required, String] :media_pipeline_id
3871
+ # The ID of the pipeline that you want to get.
3872
+ #
3873
+ # @return [Types::GetMediaCapturePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3874
+ #
3875
+ # * {Types::GetMediaCapturePipelineResponse#media_capture_pipeline #media_capture_pipeline} => Types::MediaCapturePipeline
3876
+ #
3877
+ # @example Request syntax with placeholder values
3878
+ #
3879
+ # resp = client.get_media_capture_pipeline({
3880
+ # media_pipeline_id: "GuidString", # required
3881
+ # })
3882
+ #
3883
+ # @example Response structure
3884
+ #
3885
+ # resp.media_capture_pipeline.media_pipeline_id #=> String
3886
+ # resp.media_capture_pipeline.source_type #=> String, one of "ChimeSdkMeeting"
3887
+ # resp.media_capture_pipeline.source_arn #=> String
3888
+ # resp.media_capture_pipeline.status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
3889
+ # resp.media_capture_pipeline.sink_type #=> String, one of "S3Bucket"
3890
+ # resp.media_capture_pipeline.sink_arn #=> String
3891
+ # resp.media_capture_pipeline.created_timestamp #=> Time
3892
+ # resp.media_capture_pipeline.updated_timestamp #=> Time
3893
+ #
3894
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipeline AWS API Documentation
3895
+ #
3896
+ # @overload get_media_capture_pipeline(params = {})
3897
+ # @param [Hash] params ({})
3898
+ def get_media_capture_pipeline(params = {}, options = {})
3899
+ req = build_request(:get_media_capture_pipeline, params)
3900
+ req.send_request(options)
3901
+ end
3902
+
3788
3903
  # Gets the Amazon Chime SDK meeting details for the specified meeting
3789
3904
  # ID. For more information about the Amazon Chime SDK, see [Using the
3790
3905
  # Amazon Chime SDK][1] in the *Amazon Chime Developer Guide* .
@@ -4655,6 +4770,7 @@ module Aws::Chime
4655
4770
  # resp.accounts[0].default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
4656
4771
  # resp.accounts[0].supported_licenses #=> Array
4657
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"
4658
4774
  # resp.accounts[0].signin_delegate_groups #=> Array
4659
4775
  # resp.accounts[0].signin_delegate_groups[0].group_name #=> String
4660
4776
  # resp.next_token #=> String
@@ -5379,6 +5495,51 @@ module Aws::Chime
5379
5495
  req.send_request(options)
5380
5496
  end
5381
5497
 
5498
+ # Returns a list of media capture pipelines.
5499
+ #
5500
+ # @option params [String] :next_token
5501
+ # The token used to retrieve the next page of results.
5502
+ #
5503
+ # @option params [Integer] :max_results
5504
+ # The maximum number of results to return in a single call. Valid Range:
5505
+ # 1 - 99.
5506
+ #
5507
+ # @return [Types::ListMediaCapturePipelinesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5508
+ #
5509
+ # * {Types::ListMediaCapturePipelinesResponse#media_capture_pipelines #media_capture_pipelines} => Array<Types::MediaCapturePipeline>
5510
+ # * {Types::ListMediaCapturePipelinesResponse#next_token #next_token} => String
5511
+ #
5512
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5513
+ #
5514
+ # @example Request syntax with placeholder values
5515
+ #
5516
+ # resp = client.list_media_capture_pipelines({
5517
+ # next_token: "String",
5518
+ # max_results: 1,
5519
+ # })
5520
+ #
5521
+ # @example Response structure
5522
+ #
5523
+ # resp.media_capture_pipelines #=> Array
5524
+ # resp.media_capture_pipelines[0].media_pipeline_id #=> String
5525
+ # resp.media_capture_pipelines[0].source_type #=> String, one of "ChimeSdkMeeting"
5526
+ # resp.media_capture_pipelines[0].source_arn #=> String
5527
+ # resp.media_capture_pipelines[0].status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
5528
+ # resp.media_capture_pipelines[0].sink_type #=> String, one of "S3Bucket"
5529
+ # resp.media_capture_pipelines[0].sink_arn #=> String
5530
+ # resp.media_capture_pipelines[0].created_timestamp #=> Time
5531
+ # resp.media_capture_pipelines[0].updated_timestamp #=> Time
5532
+ # resp.next_token #=> String
5533
+ #
5534
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelines AWS API Documentation
5535
+ #
5536
+ # @overload list_media_capture_pipelines(params = {})
5537
+ # @param [Hash] params ({})
5538
+ def list_media_capture_pipelines(params = {}, options = {})
5539
+ req = build_request(:list_media_capture_pipelines, params)
5540
+ req.send_request(options)
5541
+ end
5542
+
5382
5543
  # Lists the tags applied to an Amazon Chime SDK meeting resource.
5383
5544
  #
5384
5545
  # @option params [required, String] :meeting_id
@@ -7032,6 +7193,71 @@ module Aws::Chime
7032
7193
  req.send_request(options)
7033
7194
  end
7034
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
+
7035
7261
  # Applies the specified tags to the specified Amazon Chime SDK attendee.
7036
7262
  #
7037
7263
  # @option params [required, String] :meeting_id
@@ -7250,6 +7476,7 @@ module Aws::Chime
7250
7476
  # resp.account.default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
7251
7477
  # resp.account.supported_licenses #=> Array
7252
7478
  # resp.account.supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
7479
+ # resp.account.account_status #=> String, one of "Suspended", "Active"
7253
7480
  # resp.account.signin_delegate_groups #=> Array
7254
7481
  # resp.account.signin_delegate_groups[0].group_name #=> String
7255
7482
  #
@@ -8178,7 +8405,7 @@ module Aws::Chime
8178
8405
  params: params,
8179
8406
  config: config)
8180
8407
  context[:gem_name] = 'aws-sdk-chime'
8181
- context[:gem_version] = '1.49.0'
8408
+ context[:gem_version] = '1.53.0'
8182
8409
  Seahorse::Client::Request.new(handlers, context)
8183
8410
  end
8184
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')
@@ -137,6 +138,8 @@ module Aws::Chime
137
138
  CreateChannelModeratorResponse = Shapes::StructureShape.new(name: 'CreateChannelModeratorResponse')
138
139
  CreateChannelRequest = Shapes::StructureShape.new(name: 'CreateChannelRequest')
139
140
  CreateChannelResponse = Shapes::StructureShape.new(name: 'CreateChannelResponse')
141
+ CreateMediaCapturePipelineRequest = Shapes::StructureShape.new(name: 'CreateMediaCapturePipelineRequest')
142
+ CreateMediaCapturePipelineResponse = Shapes::StructureShape.new(name: 'CreateMediaCapturePipelineResponse')
140
143
  CreateMeetingDialOutRequest = Shapes::StructureShape.new(name: 'CreateMeetingDialOutRequest')
141
144
  CreateMeetingDialOutResponse = Shapes::StructureShape.new(name: 'CreateMeetingDialOutResponse')
142
145
  CreateMeetingRequest = Shapes::StructureShape.new(name: 'CreateMeetingRequest')
@@ -182,6 +185,7 @@ module Aws::Chime
182
185
  DeleteChannelModeratorRequest = Shapes::StructureShape.new(name: 'DeleteChannelModeratorRequest')
183
186
  DeleteChannelRequest = Shapes::StructureShape.new(name: 'DeleteChannelRequest')
184
187
  DeleteEventsConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteEventsConfigurationRequest')
188
+ DeleteMediaCapturePipelineRequest = Shapes::StructureShape.new(name: 'DeleteMediaCapturePipelineRequest')
185
189
  DeleteMeetingRequest = Shapes::StructureShape.new(name: 'DeleteMeetingRequest')
186
190
  DeletePhoneNumberRequest = Shapes::StructureShape.new(name: 'DeletePhoneNumberRequest')
187
191
  DeleteProxySessionRequest = Shapes::StructureShape.new(name: 'DeleteProxySessionRequest')
@@ -228,6 +232,8 @@ module Aws::Chime
228
232
  EmailAddress = Shapes::StringShape.new(name: 'EmailAddress')
229
233
  EmailStatus = Shapes::StringShape.new(name: 'EmailStatus')
230
234
  EmergencyCallingConfiguration = Shapes::StructureShape.new(name: 'EmergencyCallingConfiguration')
235
+ EngineTranscribeMedicalSettings = Shapes::StructureShape.new(name: 'EngineTranscribeMedicalSettings')
236
+ EngineTranscribeSettings = Shapes::StructureShape.new(name: 'EngineTranscribeSettings')
231
237
  ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
232
238
  EventsConfiguration = Shapes::StructureShape.new(name: 'EventsConfiguration')
233
239
  ExternalMeetingIdType = Shapes::StringShape.new(name: 'ExternalMeetingIdType')
@@ -253,6 +259,8 @@ module Aws::Chime
253
259
  GetEventsConfigurationRequest = Shapes::StructureShape.new(name: 'GetEventsConfigurationRequest')
254
260
  GetEventsConfigurationResponse = Shapes::StructureShape.new(name: 'GetEventsConfigurationResponse')
255
261
  GetGlobalSettingsResponse = Shapes::StructureShape.new(name: 'GetGlobalSettingsResponse')
262
+ GetMediaCapturePipelineRequest = Shapes::StructureShape.new(name: 'GetMediaCapturePipelineRequest')
263
+ GetMediaCapturePipelineResponse = Shapes::StructureShape.new(name: 'GetMediaCapturePipelineResponse')
256
264
  GetMeetingRequest = Shapes::StructureShape.new(name: 'GetMeetingRequest')
257
265
  GetMeetingResponse = Shapes::StructureShape.new(name: 'GetMeetingResponse')
258
266
  GetMessagingSessionEndpointRequest = Shapes::StructureShape.new(name: 'GetMessagingSessionEndpointRequest')
@@ -336,6 +344,8 @@ module Aws::Chime
336
344
  ListChannelsModeratedByAppInstanceUserResponse = Shapes::StructureShape.new(name: 'ListChannelsModeratedByAppInstanceUserResponse')
337
345
  ListChannelsRequest = Shapes::StructureShape.new(name: 'ListChannelsRequest')
338
346
  ListChannelsResponse = Shapes::StructureShape.new(name: 'ListChannelsResponse')
347
+ ListMediaCapturePipelinesRequest = Shapes::StructureShape.new(name: 'ListMediaCapturePipelinesRequest')
348
+ ListMediaCapturePipelinesResponse = Shapes::StructureShape.new(name: 'ListMediaCapturePipelinesResponse')
339
349
  ListMeetingTagsRequest = Shapes::StructureShape.new(name: 'ListMeetingTagsRequest')
340
350
  ListMeetingTagsResponse = Shapes::StructureShape.new(name: 'ListMeetingTagsResponse')
341
351
  ListMeetingsRequest = Shapes::StructureShape.new(name: 'ListMeetingsRequest')
@@ -370,6 +380,11 @@ module Aws::Chime
370
380
  LogoutUserRequest = Shapes::StructureShape.new(name: 'LogoutUserRequest')
371
381
  LogoutUserResponse = Shapes::StructureShape.new(name: 'LogoutUserResponse')
372
382
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
383
+ MediaCapturePipeline = Shapes::StructureShape.new(name: 'MediaCapturePipeline')
384
+ MediaCapturePipelineList = Shapes::ListShape.new(name: 'MediaCapturePipelineList')
385
+ MediaPipelineSinkType = Shapes::StringShape.new(name: 'MediaPipelineSinkType')
386
+ MediaPipelineSourceType = Shapes::StringShape.new(name: 'MediaPipelineSourceType')
387
+ MediaPipelineStatus = Shapes::StringShape.new(name: 'MediaPipelineStatus')
373
388
  MediaPlacement = Shapes::StructureShape.new(name: 'MediaPlacement')
374
389
  Meeting = Shapes::StructureShape.new(name: 'Meeting')
375
390
  MeetingList = Shapes::ListShape.new(name: 'MeetingList')
@@ -510,6 +525,10 @@ module Aws::Chime
510
525
  SipRuleTargetApplicationList = Shapes::ListShape.new(name: 'SipRuleTargetApplicationList')
511
526
  SipRuleTriggerType = Shapes::StringShape.new(name: 'SipRuleTriggerType')
512
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')
513
532
  StreamingConfiguration = Shapes::StructureShape.new(name: 'StreamingConfiguration')
514
533
  StreamingNotificationTarget = Shapes::StructureShape.new(name: 'StreamingNotificationTarget')
515
534
  StreamingNotificationTargetList = Shapes::ListShape.new(name: 'StreamingNotificationTargetList')
@@ -530,6 +549,14 @@ module Aws::Chime
530
549
  ThrottledClientException = Shapes::StructureShape.new(name: 'ThrottledClientException')
531
550
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
532
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')
533
560
  UnauthorizedClientException = Shapes::StructureShape.new(name: 'UnauthorizedClientException')
534
561
  UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
535
562
  UntagAttendeeRequest = Shapes::StructureShape.new(name: 'UntagAttendeeRequest')
@@ -613,6 +640,7 @@ module Aws::Chime
613
640
  Account.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
614
641
  Account.add_member(:default_license, Shapes::ShapeRef.new(shape: License, location_name: "DefaultLicense"))
615
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"))
616
644
  Account.add_member(:signin_delegate_groups, Shapes::ShapeRef.new(shape: SigninDelegateGroupList, location_name: "SigninDelegateGroups"))
617
645
  Account.struct_class = Types::Account
618
646
 
@@ -1022,6 +1050,16 @@ module Aws::Chime
1022
1050
  CreateChannelResponse.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "ChannelArn"))
1023
1051
  CreateChannelResponse.struct_class = Types::CreateChannelResponse
1024
1052
 
1053
+ CreateMediaCapturePipelineRequest.add_member(:source_type, Shapes::ShapeRef.new(shape: MediaPipelineSourceType, required: true, location_name: "SourceType"))
1054
+ CreateMediaCapturePipelineRequest.add_member(:source_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "SourceArn"))
1055
+ CreateMediaCapturePipelineRequest.add_member(:sink_type, Shapes::ShapeRef.new(shape: MediaPipelineSinkType, required: true, location_name: "SinkType"))
1056
+ CreateMediaCapturePipelineRequest.add_member(:sink_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "SinkArn"))
1057
+ CreateMediaCapturePipelineRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
1058
+ CreateMediaCapturePipelineRequest.struct_class = Types::CreateMediaCapturePipelineRequest
1059
+
1060
+ CreateMediaCapturePipelineResponse.add_member(:media_capture_pipeline, Shapes::ShapeRef.new(shape: MediaCapturePipeline, location_name: "MediaCapturePipeline"))
1061
+ CreateMediaCapturePipelineResponse.struct_class = Types::CreateMediaCapturePipelineResponse
1062
+
1025
1063
  CreateMeetingDialOutRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
1026
1064
  CreateMeetingDialOutRequest.add_member(:from_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "FromPhoneNumber"))
1027
1065
  CreateMeetingDialOutRequest.add_member(:to_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "ToPhoneNumber"))
@@ -1208,6 +1246,9 @@ module Aws::Chime
1208
1246
  DeleteEventsConfigurationRequest.add_member(:bot_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "botId"))
1209
1247
  DeleteEventsConfigurationRequest.struct_class = Types::DeleteEventsConfigurationRequest
1210
1248
 
1249
+ DeleteMediaCapturePipelineRequest.add_member(:media_pipeline_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "mediaPipelineId"))
1250
+ DeleteMediaCapturePipelineRequest.struct_class = Types::DeleteMediaCapturePipelineRequest
1251
+
1211
1252
  DeleteMeetingRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
1212
1253
  DeleteMeetingRequest.struct_class = Types::DeleteMeetingRequest
1213
1254
 
@@ -1355,6 +1396,20 @@ module Aws::Chime
1355
1396
  EmergencyCallingConfiguration.add_member(:dnis, Shapes::ShapeRef.new(shape: DNISEmergencyCallingConfigurationList, location_name: "DNIS"))
1356
1397
  EmergencyCallingConfiguration.struct_class = Types::EmergencyCallingConfiguration
1357
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
+
1358
1413
  EventsConfiguration.add_member(:bot_id, Shapes::ShapeRef.new(shape: String, location_name: "BotId"))
1359
1414
  EventsConfiguration.add_member(:outbound_events_https_endpoint, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "OutboundEventsHTTPSEndpoint"))
1360
1415
  EventsConfiguration.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "LambdaFunctionArn"))
@@ -1426,6 +1481,12 @@ module Aws::Chime
1426
1481
  GetGlobalSettingsResponse.add_member(:voice_connector, Shapes::ShapeRef.new(shape: VoiceConnectorSettings, location_name: "VoiceConnector"))
1427
1482
  GetGlobalSettingsResponse.struct_class = Types::GetGlobalSettingsResponse
1428
1483
 
1484
+ GetMediaCapturePipelineRequest.add_member(:media_pipeline_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "mediaPipelineId"))
1485
+ GetMediaCapturePipelineRequest.struct_class = Types::GetMediaCapturePipelineRequest
1486
+
1487
+ GetMediaCapturePipelineResponse.add_member(:media_capture_pipeline, Shapes::ShapeRef.new(shape: MediaCapturePipeline, location_name: "MediaCapturePipeline"))
1488
+ GetMediaCapturePipelineResponse.struct_class = Types::GetMediaCapturePipelineResponse
1489
+
1429
1490
  GetMeetingRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
1430
1491
  GetMeetingRequest.struct_class = Types::GetMeetingRequest
1431
1492
 
@@ -1724,6 +1785,14 @@ module Aws::Chime
1724
1785
  ListChannelsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1725
1786
  ListChannelsResponse.struct_class = Types::ListChannelsResponse
1726
1787
 
1788
+ ListMediaCapturePipelinesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
1789
+ ListMediaCapturePipelinesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ResultMax, location: "querystring", location_name: "max-results"))
1790
+ ListMediaCapturePipelinesRequest.struct_class = Types::ListMediaCapturePipelinesRequest
1791
+
1792
+ ListMediaCapturePipelinesResponse.add_member(:media_capture_pipelines, Shapes::ShapeRef.new(shape: MediaCapturePipelineList, location_name: "MediaCapturePipelines"))
1793
+ ListMediaCapturePipelinesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
1794
+ ListMediaCapturePipelinesResponse.struct_class = Types::ListMediaCapturePipelinesResponse
1795
+
1727
1796
  ListMeetingTagsRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
1728
1797
  ListMeetingTagsRequest.struct_class = Types::ListMeetingTagsRequest
1729
1798
 
@@ -1859,6 +1928,18 @@ module Aws::Chime
1859
1928
 
1860
1929
  LogoutUserResponse.struct_class = Types::LogoutUserResponse
1861
1930
 
1931
+ MediaCapturePipeline.add_member(:media_pipeline_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "MediaPipelineId"))
1932
+ MediaCapturePipeline.add_member(:source_type, Shapes::ShapeRef.new(shape: MediaPipelineSourceType, location_name: "SourceType"))
1933
+ MediaCapturePipeline.add_member(:source_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SourceArn"))
1934
+ MediaCapturePipeline.add_member(:status, Shapes::ShapeRef.new(shape: MediaPipelineStatus, location_name: "Status"))
1935
+ MediaCapturePipeline.add_member(:sink_type, Shapes::ShapeRef.new(shape: MediaPipelineSinkType, location_name: "SinkType"))
1936
+ MediaCapturePipeline.add_member(:sink_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SinkArn"))
1937
+ MediaCapturePipeline.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
1938
+ MediaCapturePipeline.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
1939
+ MediaCapturePipeline.struct_class = Types::MediaCapturePipeline
1940
+
1941
+ MediaCapturePipelineList.member = Shapes::ShapeRef.new(shape: MediaCapturePipeline)
1942
+
1862
1943
  MediaPlacement.add_member(:audio_host_url, Shapes::ShapeRef.new(shape: UriType, location_name: "AudioHostUrl"))
1863
1944
  MediaPlacement.add_member(:audio_fallback_url, Shapes::ShapeRef.new(shape: UriType, location_name: "AudioFallbackUrl"))
1864
1945
  MediaPlacement.add_member(:screen_data_url, Shapes::ShapeRef.new(shape: UriType, location_name: "ScreenDataUrl"))
@@ -2271,6 +2352,17 @@ module Aws::Chime
2271
2352
 
2272
2353
  SipRuleTargetApplicationList.member = Shapes::ShapeRef.new(shape: SipRuleTargetApplication)
2273
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
+
2274
2366
  StreamingConfiguration.add_member(:data_retention_in_hours, Shapes::ShapeRef.new(shape: DataRetentionInHours, required: true, location_name: "DataRetentionInHours"))
2275
2367
  StreamingConfiguration.add_member(:disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Disabled"))
2276
2368
  StreamingConfiguration.add_member(:streaming_notification_targets, Shapes::ShapeRef.new(shape: StreamingNotificationTargetList, location_name: "StreamingNotificationTargets"))
@@ -2324,6 +2416,10 @@ module Aws::Chime
2324
2416
  ThrottledClientException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
2325
2417
  ThrottledClientException.struct_class = Types::ThrottledClientException
2326
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
+
2327
2423
  UnauthorizedClientException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
2328
2424
  UnauthorizedClientException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
2329
2425
  UnauthorizedClientException.struct_class = Types::UnauthorizedClientException
@@ -2965,6 +3061,21 @@ module Aws::Chime
2965
3061
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
2966
3062
  end)
2967
3063
 
3064
+ api.add_operation(:create_media_capture_pipeline, Seahorse::Model::Operation.new.tap do |o|
3065
+ o.name = "CreateMediaCapturePipeline"
3066
+ o.http_method = "POST"
3067
+ o.http_request_uri = "/media-capture-pipelines"
3068
+ o.input = Shapes::ShapeRef.new(shape: CreateMediaCapturePipelineRequest)
3069
+ o.output = Shapes::ShapeRef.new(shape: CreateMediaCapturePipelineResponse)
3070
+ o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
3071
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
3072
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
3073
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
3074
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
3075
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
3076
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
3077
+ end)
3078
+
2968
3079
  api.add_operation(:create_meeting, Seahorse::Model::Operation.new.tap do |o|
2969
3080
  o.name = "CreateMeeting"
2970
3081
  o.http_method = "POST"
@@ -3369,6 +3480,21 @@ module Aws::Chime
3369
3480
  o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
3370
3481
  end)
3371
3482
 
3483
+ api.add_operation(:delete_media_capture_pipeline, Seahorse::Model::Operation.new.tap do |o|
3484
+ o.name = "DeleteMediaCapturePipeline"
3485
+ o.http_method = "DELETE"
3486
+ o.http_request_uri = "/media-capture-pipelines/{mediaPipelineId}"
3487
+ o.input = Shapes::ShapeRef.new(shape: DeleteMediaCapturePipelineRequest)
3488
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
3489
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
3490
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
3491
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
3492
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
3493
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
3494
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
3495
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
3496
+ end)
3497
+
3372
3498
  api.add_operation(:delete_meeting, Seahorse::Model::Operation.new.tap do |o|
3373
3499
  o.name = "DeleteMeeting"
3374
3500
  o.http_method = "DELETE"
@@ -3954,6 +4080,21 @@ module Aws::Chime
3954
4080
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
3955
4081
  end)
3956
4082
 
4083
+ api.add_operation(:get_media_capture_pipeline, Seahorse::Model::Operation.new.tap do |o|
4084
+ o.name = "GetMediaCapturePipeline"
4085
+ o.http_method = "GET"
4086
+ o.http_request_uri = "/media-capture-pipelines/{mediaPipelineId}"
4087
+ o.input = Shapes::ShapeRef.new(shape: GetMediaCapturePipelineRequest)
4088
+ o.output = Shapes::ShapeRef.new(shape: GetMediaCapturePipelineResponse)
4089
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
4090
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
4091
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
4092
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
4093
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
4094
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
4095
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
4096
+ end)
4097
+
3957
4098
  api.add_operation(:get_meeting, Seahorse::Model::Operation.new.tap do |o|
3958
4099
  o.name = "GetMeeting"
3959
4100
  o.http_method = "GET"
@@ -4607,6 +4748,26 @@ module Aws::Chime
4607
4748
  )
4608
4749
  end)
4609
4750
 
4751
+ api.add_operation(:list_media_capture_pipelines, Seahorse::Model::Operation.new.tap do |o|
4752
+ o.name = "ListMediaCapturePipelines"
4753
+ o.http_method = "GET"
4754
+ o.http_request_uri = "/media-capture-pipelines"
4755
+ o.input = Shapes::ShapeRef.new(shape: ListMediaCapturePipelinesRequest)
4756
+ o.output = Shapes::ShapeRef.new(shape: ListMediaCapturePipelinesResponse)
4757
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
4758
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
4759
+ o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
4760
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
4761
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
4762
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
4763
+ o[:pager] = Aws::Pager.new(
4764
+ limit_key: "max_results",
4765
+ tokens: {
4766
+ "next_token" => "next_token"
4767
+ }
4768
+ )
4769
+ end)
4770
+
4610
4771
  api.add_operation(:list_meeting_tags, Seahorse::Model::Operation.new.tap do |o|
4611
4772
  o.name = "ListMeetingTags"
4612
4773
  o.http_method = "GET"
@@ -5225,6 +5386,39 @@ module Aws::Chime
5225
5386
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
5226
5387
  end)
5227
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
+
5228
5422
  api.add_operation(:tag_attendee, Seahorse::Model::Operation.new.tap do |o|
5229
5423
  o.name = "TagAttendee"
5230
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
@@ -2126,6 +2131,67 @@ module Aws::Chime
2126
2131
  include Aws::Structure
2127
2132
  end
2128
2133
 
2134
+ # @note When making an API call, you may pass CreateMediaCapturePipelineRequest
2135
+ # data as a hash:
2136
+ #
2137
+ # {
2138
+ # source_type: "ChimeSdkMeeting", # required, accepts ChimeSdkMeeting
2139
+ # source_arn: "Arn", # required
2140
+ # sink_type: "S3Bucket", # required, accepts S3Bucket
2141
+ # sink_arn: "Arn", # required
2142
+ # client_request_token: "ClientRequestToken",
2143
+ # }
2144
+ #
2145
+ # @!attribute [rw] source_type
2146
+ # Source type from which the media artifacts will be captured. A Chime
2147
+ # SDK Meeting is the only supported source.
2148
+ # @return [String]
2149
+ #
2150
+ # @!attribute [rw] source_arn
2151
+ # ARN of the source from which the media artifacts are captured.
2152
+ # @return [String]
2153
+ #
2154
+ # @!attribute [rw] sink_type
2155
+ # Destination type to which the media artifacts are saved. You must
2156
+ # use an S3 bucket.
2157
+ # @return [String]
2158
+ #
2159
+ # @!attribute [rw] sink_arn
2160
+ # The ARN of the sink type.
2161
+ # @return [String]
2162
+ #
2163
+ # @!attribute [rw] client_request_token
2164
+ # The token assigned to the client making the pipeline request.
2165
+ #
2166
+ # **A suitable default value is auto-generated.** You should normally
2167
+ # not need to pass this option.
2168
+ # @return [String]
2169
+ #
2170
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipelineRequest AWS API Documentation
2171
+ #
2172
+ class CreateMediaCapturePipelineRequest < Struct.new(
2173
+ :source_type,
2174
+ :source_arn,
2175
+ :sink_type,
2176
+ :sink_arn,
2177
+ :client_request_token)
2178
+ SENSITIVE = [:source_arn, :sink_arn, :client_request_token]
2179
+ include Aws::Structure
2180
+ end
2181
+
2182
+ # @!attribute [rw] media_capture_pipeline
2183
+ # A media capture pipeline object, the ID, source type, source ARN,
2184
+ # sink type, and sink ARN of a media capture pipeline object.
2185
+ # @return [Types::MediaCapturePipeline]
2186
+ #
2187
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipelineResponse AWS API Documentation
2188
+ #
2189
+ class CreateMediaCapturePipelineResponse < Struct.new(
2190
+ :media_capture_pipeline)
2191
+ SENSITIVE = []
2192
+ include Aws::Structure
2193
+ end
2194
+
2129
2195
  # @note When making an API call, you may pass CreateMeetingDialOutRequest
2130
2196
  # data as a hash:
2131
2197
  #
@@ -3252,6 +3318,25 @@ module Aws::Chime
3252
3318
  include Aws::Structure
3253
3319
  end
3254
3320
 
3321
+ # @note When making an API call, you may pass DeleteMediaCapturePipelineRequest
3322
+ # data as a hash:
3323
+ #
3324
+ # {
3325
+ # media_pipeline_id: "GuidString", # required
3326
+ # }
3327
+ #
3328
+ # @!attribute [rw] media_pipeline_id
3329
+ # The ID of the media capture pipeline being deleted.
3330
+ # @return [String]
3331
+ #
3332
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteMediaCapturePipelineRequest AWS API Documentation
3333
+ #
3334
+ class DeleteMediaCapturePipelineRequest < Struct.new(
3335
+ :media_pipeline_id)
3336
+ SENSITIVE = []
3337
+ include Aws::Structure
3338
+ end
3339
+
3255
3340
  # @note When making an API call, you may pass DeleteMeetingRequest
3256
3341
  # data as a hash:
3257
3342
  #
@@ -4087,6 +4172,101 @@ module Aws::Chime
4087
4172
  include Aws::Structure
4088
4173
  end
4089
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
+
4090
4270
  # The configuration that allows a bot to receive outgoing events. Can be
4091
4271
  # either an HTTPS endpoint or a Lambda function ARN.
4092
4272
  #
@@ -4458,6 +4638,37 @@ module Aws::Chime
4458
4638
  include Aws::Structure
4459
4639
  end
4460
4640
 
4641
+ # @note When making an API call, you may pass GetMediaCapturePipelineRequest
4642
+ # data as a hash:
4643
+ #
4644
+ # {
4645
+ # media_pipeline_id: "GuidString", # required
4646
+ # }
4647
+ #
4648
+ # @!attribute [rw] media_pipeline_id
4649
+ # The ID of the pipeline that you want to get.
4650
+ # @return [String]
4651
+ #
4652
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipelineRequest AWS API Documentation
4653
+ #
4654
+ class GetMediaCapturePipelineRequest < Struct.new(
4655
+ :media_pipeline_id)
4656
+ SENSITIVE = []
4657
+ include Aws::Structure
4658
+ end
4659
+
4660
+ # @!attribute [rw] media_capture_pipeline
4661
+ # The media capture pipeline object.
4662
+ # @return [Types::MediaCapturePipeline]
4663
+ #
4664
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipelineResponse AWS API Documentation
4665
+ #
4666
+ class GetMediaCapturePipelineResponse < Struct.new(
4667
+ :media_capture_pipeline)
4668
+ SENSITIVE = []
4669
+ include Aws::Structure
4670
+ end
4671
+
4461
4672
  # @note When making an API call, you may pass GetMeetingRequest
4462
4673
  # data as a hash:
4463
4674
  #
@@ -6028,6 +6239,49 @@ module Aws::Chime
6028
6239
  include Aws::Structure
6029
6240
  end
6030
6241
 
6242
+ # @note When making an API call, you may pass ListMediaCapturePipelinesRequest
6243
+ # data as a hash:
6244
+ #
6245
+ # {
6246
+ # next_token: "String",
6247
+ # max_results: 1,
6248
+ # }
6249
+ #
6250
+ # @!attribute [rw] next_token
6251
+ # The token used to retrieve the next page of results.
6252
+ # @return [String]
6253
+ #
6254
+ # @!attribute [rw] max_results
6255
+ # The maximum number of results to return in a single call. Valid
6256
+ # Range: 1 - 99.
6257
+ # @return [Integer]
6258
+ #
6259
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelinesRequest AWS API Documentation
6260
+ #
6261
+ class ListMediaCapturePipelinesRequest < Struct.new(
6262
+ :next_token,
6263
+ :max_results)
6264
+ SENSITIVE = []
6265
+ include Aws::Structure
6266
+ end
6267
+
6268
+ # @!attribute [rw] media_capture_pipelines
6269
+ # The media capture pipeline objects in the list.
6270
+ # @return [Array<Types::MediaCapturePipeline>]
6271
+ #
6272
+ # @!attribute [rw] next_token
6273
+ # The token used to retrieve the next page of results.
6274
+ # @return [String]
6275
+ #
6276
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelinesResponse AWS API Documentation
6277
+ #
6278
+ class ListMediaCapturePipelinesResponse < Struct.new(
6279
+ :media_capture_pipelines,
6280
+ :next_token)
6281
+ SENSITIVE = []
6282
+ include Aws::Structure
6283
+ end
6284
+
6031
6285
  # @note When making an API call, you may pass ListMeetingTagsRequest
6032
6286
  # data as a hash:
6033
6287
  #
@@ -6754,8 +7008,62 @@ module Aws::Chime
6754
7008
  #
6755
7009
  class LogoutUserResponse < Aws::EmptyStructure; end
6756
7010
 
7011
+ # A media capture pipeline object. A string consisting of an ID, source
7012
+ # type, a source ARN, a sink type, and a sink ARN.
7013
+ #
7014
+ # @!attribute [rw] media_pipeline_id
7015
+ # The ID of a media capture pipeline.
7016
+ # @return [String]
7017
+ #
7018
+ # @!attribute [rw] source_type
7019
+ # Source type from which media artifacts are saved. You must use
7020
+ # `ChimeMeeting`.
7021
+ # @return [String]
7022
+ #
7023
+ # @!attribute [rw] source_arn
7024
+ # ARN of the source from which the media artifacts will be saved.
7025
+ # @return [String]
7026
+ #
7027
+ # @!attribute [rw] status
7028
+ # The status of the media capture pipeline.
7029
+ # @return [String]
7030
+ #
7031
+ # @!attribute [rw] sink_type
7032
+ # Destination type to which the media artifacts are saved. You must
7033
+ # use an S3 Bucket.
7034
+ # @return [String]
7035
+ #
7036
+ # @!attribute [rw] sink_arn
7037
+ # ARN of the destination to which the media artifacts are saved.
7038
+ # @return [String]
7039
+ #
7040
+ # @!attribute [rw] created_timestamp
7041
+ # The time at which the capture pipeline was created, in ISO 8601
7042
+ # format.
7043
+ # @return [Time]
7044
+ #
7045
+ # @!attribute [rw] updated_timestamp
7046
+ # The time at which the capture pipeline was updated, in ISO 8601
7047
+ # format.
7048
+ # @return [Time]
7049
+ #
7050
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaCapturePipeline AWS API Documentation
7051
+ #
7052
+ class MediaCapturePipeline < Struct.new(
7053
+ :media_pipeline_id,
7054
+ :source_type,
7055
+ :source_arn,
7056
+ :status,
7057
+ :sink_type,
7058
+ :sink_arn,
7059
+ :created_timestamp,
7060
+ :updated_timestamp)
7061
+ SENSITIVE = [:source_arn, :sink_arn]
7062
+ include Aws::Structure
7063
+ end
7064
+
6757
7065
  # A set of endpoints used by clients to connect to the media service
6758
- # group for a Amazon Chime SDK meeting.
7066
+ # group for an Amazon Chime SDK meeting.
6759
7067
  #
6760
7068
  # @!attribute [rw] audio_host_url
6761
7069
  # The audio host URL.
@@ -6786,7 +7094,7 @@ module Aws::Chime
6786
7094
  # @return [String]
6787
7095
  #
6788
7096
  # @!attribute [rw] event_ingestion_url
6789
- # The event ingestion URL.
7097
+ # The URL of the S3 bucket used to store the captured media.
6790
7098
  # @return [String]
6791
7099
  #
6792
7100
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaPlacement AWS API Documentation
@@ -8764,6 +9072,75 @@ module Aws::Chime
8764
9072
  include Aws::Structure
8765
9073
  end
8766
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
+
8767
9144
  # The streaming configuration associated with an Amazon Chime Voice
8768
9145
  # Connector. Specifies whether media streaming is enabled for sending to
8769
9146
  # Amazon Kinesis, and shows the retention period for the Amazon Kinesis
@@ -9069,6 +9446,49 @@ module Aws::Chime
9069
9446
  include Aws::Structure
9070
9447
  end
9071
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
+
9072
9492
  # The client is not currently authorized to make the request.
9073
9493
  #
9074
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.49.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-06-24 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
@@ -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.118.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.118.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement