aws-sdk-chimesdkmeetings 1.6.0 → 1.9.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: 23ca3848b24c044c881f4a82db584148b29c6a0704886ae8e5e9021c5d019b87
4
- data.tar.gz: 4967754d0447ecdbac759dc128b85cc070dc0440b67fe8e7debb7950d114427c
3
+ metadata.gz: 1b923167b39e0d188e4200a39840130509a53085146ee70ebe2d45c045579a10
4
+ data.tar.gz: 807029475b0b2ade0ed59f391addac6e63e420d669f27c5c8663720fb9cb2716
5
5
  SHA512:
6
- metadata.gz: 0410b11f3a08d548ca2452943f66bb638be9fd14d5e9a3ca30e7244b67bb5824f4354052002277223fccbfba1651c117111f4e901a4b948fcb2b2bca6586a71e
7
- data.tar.gz: 6a94be7c3ed639d0a942fb06b17222062531d8a750820b6398d1a2a9db18cc92a2a8b1d770632402bec4b37cc359e78386d64cc274080130c438ec3816879224
6
+ metadata.gz: f3cd521bd991633dd8b0b33a194fef93ab9499dde5b585c526b464e2bcb0e6a53c515c841a476fefbcd9ce7874627e4c7f04aab1c42759b8af08f9e95851ee79
7
+ data.tar.gz: 7d6dc8b90067c560fa44b24cc55c08710298daf62add61ab52a0d76b28f93f63c386af66b63a3f48169292c7d4a271e3ebcb9c79ff139aaca96661749215ee64
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2022-03-21)
5
+ ------------------
6
+
7
+ * Feature - Add support for media replication to link multiple WebRTC media sessions together to reach larger and global audiences. Participants connected to a replica session can be granted access to join the primary session and can switch sessions with their existing WebRTC connection
8
+
9
+ 1.8.0 (2022-03-07)
10
+ ------------------
11
+
12
+ * Feature - Adds support for Transcribe language identification feature to the StartMeetingTranscription API.
13
+
14
+ 1.7.0 (2022-02-24)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.6.0 (2022-02-03)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.9.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
31
32
  require 'aws-sdk-core/plugins/recursion_detection.rb'
32
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
@@ -75,6 +76,7 @@ module Aws::ChimeSDKMeetings
75
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
76
77
  add_plugin(Aws::Plugins::TransferEncoding)
77
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
78
80
  add_plugin(Aws::Plugins::DefaultsMode)
79
81
  add_plugin(Aws::Plugins::RecursionDetection)
80
82
  add_plugin(Aws::Plugins::SignatureV4)
@@ -462,11 +464,14 @@ module Aws::ChimeSDKMeetings
462
464
  # @option params [required, String] :media_region
463
465
  # The Region in which to create the meeting.
464
466
  #
465
- # Available values: `af-south-1` , `ap-northeast-1` , `ap-northeast-2` ,
466
- # `ap-south-1` , `ap-southeast-1` , `ap-southeast-2` , `ca-central-1` ,
467
- # `eu-central-1` , `eu-north-1` , `eu-south-1` , `eu-west-1` ,
468
- # `eu-west-2` , `eu-west-3` , `sa-east-1` , `us-east-1` , `us-east-2` ,
469
- # `us-west-1` , `us-west-2` .
467
+ # Available values: `af-south-1`, `ap-northeast-1`, `ap-northeast-2`,
468
+ # `ap-south-1`, `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`,
469
+ # `eu-central-1`, `eu-north-1`, `eu-south-1`, `eu-west-1`, `eu-west-2`,
470
+ # `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`,
471
+ # `us-west-2`.
472
+ #
473
+ # Available values in AWS GovCloud (US) Regions: `us-gov-east-1`,
474
+ # `us-gov-west-1`.
470
475
  #
471
476
  # @option params [String] :meeting_host_id
472
477
  # Reserved.
@@ -482,6 +487,10 @@ module Aws::ChimeSDKMeetings
482
487
  # Lists the audio and video features enabled for a meeting, such as echo
483
488
  # reduction.
484
489
  #
490
+ # @option params [String] :primary_meeting_id
491
+ # When specified, replicates the media from the primary meeting to the
492
+ # new meeting.
493
+ #
485
494
  # @return [Types::CreateMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
486
495
  #
487
496
  # * {Types::CreateMeetingResponse#meeting #meeting} => Types::Meeting
@@ -503,6 +512,7 @@ module Aws::ChimeSDKMeetings
503
512
  # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
504
513
  # },
505
514
  # },
515
+ # primary_meeting_id: "PrimaryMeetingId",
506
516
  # })
507
517
  #
508
518
  # @example Response structure
@@ -520,6 +530,7 @@ module Aws::ChimeSDKMeetings
520
530
  # resp.meeting.media_placement.screen_sharing_url #=> String
521
531
  # resp.meeting.media_placement.event_ingestion_url #=> String
522
532
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
533
+ # resp.meeting.primary_meeting_id #=> String
523
534
  #
524
535
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeeting AWS API Documentation
525
536
  #
@@ -551,6 +562,15 @@ module Aws::ChimeSDKMeetings
551
562
  # @option params [required, String] :media_region
552
563
  # The Region in which to create the meeting.
553
564
  #
565
+ # Available values: `af-south-1`, `ap-northeast-1`, `ap-northeast-2`,
566
+ # `ap-south-1`, `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`,
567
+ # `eu-central-1`, `eu-north-1`, `eu-south-1`, `eu-west-1`, `eu-west-2`,
568
+ # `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`,
569
+ # `us-west-2`.
570
+ #
571
+ # Available values in AWS GovCloud (US) Regions: `us-gov-east-1`,
572
+ # `us-gov-west-1`.
573
+ #
554
574
  # @option params [String] :meeting_host_id
555
575
  # Reserved.
556
576
  #
@@ -568,6 +588,10 @@ module Aws::ChimeSDKMeetings
568
588
  # @option params [required, Array<Types::CreateAttendeeRequestItem>] :attendees
569
589
  # The attendee information, including attendees' IDs and join tokens.
570
590
  #
591
+ # @option params [String] :primary_meeting_id
592
+ # When specified, replicates the media from the primary meeting to the
593
+ # new meeting.
594
+ #
571
595
  # @return [Types::CreateMeetingWithAttendeesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
572
596
  #
573
597
  # * {Types::CreateMeetingWithAttendeesResponse#meeting #meeting} => Types::Meeting
@@ -596,6 +620,7 @@ module Aws::ChimeSDKMeetings
596
620
  # external_user_id: "ExternalUserId", # required
597
621
  # },
598
622
  # ],
623
+ # primary_meeting_id: "PrimaryMeetingId",
599
624
  # })
600
625
  #
601
626
  # @example Response structure
@@ -613,6 +638,7 @@ module Aws::ChimeSDKMeetings
613
638
  # resp.meeting.media_placement.screen_sharing_url #=> String
614
639
  # resp.meeting.media_placement.event_ingestion_url #=> String
615
640
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
641
+ # resp.meeting.primary_meeting_id #=> String
616
642
  # resp.attendees #=> Array
617
643
  # resp.attendees[0].external_user_id #=> String
618
644
  # resp.attendees[0].attendee_id #=> String
@@ -771,6 +797,7 @@ module Aws::ChimeSDKMeetings
771
797
  # resp.meeting.media_placement.screen_sharing_url #=> String
772
798
  # resp.meeting.media_placement.event_ingestion_url #=> String
773
799
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
800
+ # resp.meeting.primary_meeting_id #=> String
774
801
  #
775
802
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetMeeting AWS API Documentation
776
803
  #
@@ -848,7 +875,7 @@ module Aws::ChimeSDKMeetings
848
875
  # meeting_id: "GuidString", # required
849
876
  # transcription_configuration: { # required
850
877
  # engine_transcribe_settings: {
851
- # 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
878
+ # language_code: "en-US", # 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
852
879
  # vocabulary_filter_method: "remove", # accepts remove, mask, tag
853
880
  # vocabulary_filter_name: "String",
854
881
  # vocabulary_name: "String",
@@ -859,6 +886,9 @@ module Aws::ChimeSDKMeetings
859
886
  # content_redaction_type: "PII", # accepts PII
860
887
  # pii_entity_types: "TranscribePiiEntityTypes",
861
888
  # language_model_name: "TranscribeLanguageModelName",
889
+ # identify_language: false,
890
+ # language_options: "TranscribeLanguageOptions",
891
+ # preferred_language: "en-US", # 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
862
892
  # },
863
893
  # engine_transcribe_medical_settings: {
864
894
  # language_code: "en-US", # required, accepts en-US
@@ -915,7 +945,7 @@ module Aws::ChimeSDKMeetings
915
945
  params: params,
916
946
  config: config)
917
947
  context[:gem_name] = 'aws-sdk-chimesdkmeetings'
918
- context[:gem_version] = '1.6.0'
948
+ context[:gem_version] = '1.9.0'
919
949
  Seahorse::Client::Request.new(handlers, context)
920
950
  end
921
951
 
@@ -56,6 +56,7 @@ module Aws::ChimeSDKMeetings
56
56
  MeetingFeaturesConfiguration = Shapes::StructureShape.new(name: 'MeetingFeaturesConfiguration')
57
57
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
58
58
  NotificationsConfiguration = Shapes::StructureShape.new(name: 'NotificationsConfiguration')
59
+ PrimaryMeetingId = Shapes::StringShape.new(name: 'PrimaryMeetingId')
59
60
  ResultMax = Shapes::IntegerShape.new(name: 'ResultMax')
60
61
  RetryAfterSeconds = Shapes::StringShape.new(name: 'RetryAfterSeconds')
61
62
  ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
@@ -66,6 +67,7 @@ module Aws::ChimeSDKMeetings
66
67
  TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
67
68
  TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
68
69
  TranscribeLanguageModelName = Shapes::StringShape.new(name: 'TranscribeLanguageModelName')
70
+ TranscribeLanguageOptions = Shapes::StringShape.new(name: 'TranscribeLanguageOptions')
69
71
  TranscribeMedicalContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeMedicalContentIdentificationType')
70
72
  TranscribeMedicalLanguageCode = Shapes::StringShape.new(name: 'TranscribeMedicalLanguageCode')
71
73
  TranscribeMedicalRegion = Shapes::StringShape.new(name: 'TranscribeMedicalRegion')
@@ -127,6 +129,7 @@ module Aws::ChimeSDKMeetings
127
129
  CreateMeetingRequest.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingId, required: true, location_name: "ExternalMeetingId"))
128
130
  CreateMeetingRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
129
131
  CreateMeetingRequest.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
132
+ CreateMeetingRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
130
133
  CreateMeetingRequest.struct_class = Types::CreateMeetingRequest
131
134
 
132
135
  CreateMeetingResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
@@ -139,6 +142,7 @@ module Aws::ChimeSDKMeetings
139
142
  CreateMeetingWithAttendeesRequest.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
140
143
  CreateMeetingWithAttendeesRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
141
144
  CreateMeetingWithAttendeesRequest.add_member(:attendees, Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesRequestItemList, required: true, location_name: "Attendees"))
145
+ CreateMeetingWithAttendeesRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
142
146
  CreateMeetingWithAttendeesRequest.struct_class = Types::CreateMeetingWithAttendeesRequest
143
147
 
144
148
  CreateMeetingWithAttendeesRequestItemList.member = Shapes::ShapeRef.new(shape: CreateAttendeeRequestItem)
@@ -163,7 +167,7 @@ module Aws::ChimeSDKMeetings
163
167
  EngineTranscribeMedicalSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeMedicalContentIdentificationType, location_name: "ContentIdentificationType"))
164
168
  EngineTranscribeMedicalSettings.struct_class = Types::EngineTranscribeMedicalSettings
165
169
 
166
- EngineTranscribeSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeLanguageCode, required: true, location_name: "LanguageCode"))
170
+ EngineTranscribeSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeLanguageCode, location_name: "LanguageCode"))
167
171
  EngineTranscribeSettings.add_member(:vocabulary_filter_method, Shapes::ShapeRef.new(shape: TranscribeVocabularyFilterMethod, location_name: "VocabularyFilterMethod"))
168
172
  EngineTranscribeSettings.add_member(:vocabulary_filter_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyFilterName"))
169
173
  EngineTranscribeSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
@@ -174,6 +178,9 @@ module Aws::ChimeSDKMeetings
174
178
  EngineTranscribeSettings.add_member(:content_redaction_type, Shapes::ShapeRef.new(shape: TranscribeContentRedactionType, location_name: "ContentRedactionType"))
175
179
  EngineTranscribeSettings.add_member(:pii_entity_types, Shapes::ShapeRef.new(shape: TranscribePiiEntityTypes, location_name: "PiiEntityTypes"))
176
180
  EngineTranscribeSettings.add_member(:language_model_name, Shapes::ShapeRef.new(shape: TranscribeLanguageModelName, location_name: "LanguageModelName"))
181
+ EngineTranscribeSettings.add_member(:identify_language, Shapes::ShapeRef.new(shape: Boolean, location_name: "IdentifyLanguage"))
182
+ EngineTranscribeSettings.add_member(:language_options, Shapes::ShapeRef.new(shape: TranscribeLanguageOptions, location_name: "LanguageOptions"))
183
+ EngineTranscribeSettings.add_member(:preferred_language, Shapes::ShapeRef.new(shape: TranscribeLanguageCode, location_name: "PreferredLanguage"))
177
184
  EngineTranscribeSettings.struct_class = Types::EngineTranscribeSettings
178
185
 
179
186
  ForbiddenException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
@@ -224,6 +231,7 @@ module Aws::ChimeSDKMeetings
224
231
  Meeting.add_member(:media_region, Shapes::ShapeRef.new(shape: MediaRegion, location_name: "MediaRegion"))
225
232
  Meeting.add_member(:media_placement, Shapes::ShapeRef.new(shape: MediaPlacement, location_name: "MediaPlacement"))
226
233
  Meeting.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
234
+ Meeting.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
227
235
  Meeting.struct_class = Types::Meeting
228
236
 
229
237
  MeetingFeaturesConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioFeatures, location_name: "Audio"))
@@ -244,6 +244,7 @@ module Aws::ChimeSDKMeetings
244
244
  # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
245
245
  # },
246
246
  # },
247
+ # primary_meeting_id: "PrimaryMeetingId",
247
248
  # }
248
249
  #
249
250
  # @!attribute [rw] client_request_token
@@ -257,11 +258,14 @@ module Aws::ChimeSDKMeetings
257
258
  # @!attribute [rw] media_region
258
259
  # The Region in which to create the meeting.
259
260
  #
260
- # Available values: `af-south-1` , `ap-northeast-1` , `ap-northeast-2`
261
- # , `ap-south-1` , `ap-southeast-1` , `ap-southeast-2` ,
262
- # `ca-central-1` , `eu-central-1` , `eu-north-1` , `eu-south-1` ,
263
- # `eu-west-1` , `eu-west-2` , `eu-west-3` , `sa-east-1` , `us-east-1`
264
- # , `us-east-2` , `us-west-1` , `us-west-2` .
261
+ # Available values: `af-south-1`, `ap-northeast-1`, `ap-northeast-2`,
262
+ # `ap-south-1`, `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`,
263
+ # `eu-central-1`, `eu-north-1`, `eu-south-1`, `eu-west-1`,
264
+ # `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`,
265
+ # `us-west-1`, `us-west-2`.
266
+ #
267
+ # Available values in AWS GovCloud (US) Regions: `us-gov-east-1`,
268
+ # `us-gov-west-1`.
265
269
  # @return [String]
266
270
  #
267
271
  # @!attribute [rw] meeting_host_id
@@ -282,6 +286,11 @@ module Aws::ChimeSDKMeetings
282
286
  # echo reduction.
283
287
  # @return [Types::MeetingFeaturesConfiguration]
284
288
  #
289
+ # @!attribute [rw] primary_meeting_id
290
+ # When specified, replicates the media from the primary meeting to the
291
+ # new meeting.
292
+ # @return [String]
293
+ #
285
294
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingRequest AWS API Documentation
286
295
  #
287
296
  class CreateMeetingRequest < Struct.new(
@@ -290,7 +299,8 @@ module Aws::ChimeSDKMeetings
290
299
  :meeting_host_id,
291
300
  :external_meeting_id,
292
301
  :notifications_configuration,
293
- :meeting_features)
302
+ :meeting_features,
303
+ :primary_meeting_id)
294
304
  SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
295
305
  include Aws::Structure
296
306
  end
@@ -331,6 +341,7 @@ module Aws::ChimeSDKMeetings
331
341
  # external_user_id: "ExternalUserId", # required
332
342
  # },
333
343
  # ],
344
+ # primary_meeting_id: "PrimaryMeetingId",
334
345
  # }
335
346
  #
336
347
  # @!attribute [rw] client_request_token
@@ -343,6 +354,15 @@ module Aws::ChimeSDKMeetings
343
354
  #
344
355
  # @!attribute [rw] media_region
345
356
  # The Region in which to create the meeting.
357
+ #
358
+ # Available values: `af-south-1`, `ap-northeast-1`, `ap-northeast-2`,
359
+ # `ap-south-1`, `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`,
360
+ # `eu-central-1`, `eu-north-1`, `eu-south-1`, `eu-west-1`,
361
+ # `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`,
362
+ # `us-west-1`, `us-west-2`.
363
+ #
364
+ # Available values in AWS GovCloud (US) Regions: `us-gov-east-1`,
365
+ # `us-gov-west-1`.
346
366
  # @return [String]
347
367
  #
348
368
  # @!attribute [rw] meeting_host_id
@@ -367,6 +387,11 @@ module Aws::ChimeSDKMeetings
367
387
  # The attendee information, including attendees' IDs and join tokens.
368
388
  # @return [Array<Types::CreateAttendeeRequestItem>]
369
389
  #
390
+ # @!attribute [rw] primary_meeting_id
391
+ # When specified, replicates the media from the primary meeting to the
392
+ # new meeting.
393
+ # @return [String]
394
+ #
370
395
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendeesRequest AWS API Documentation
371
396
  #
372
397
  class CreateMeetingWithAttendeesRequest < Struct.new(
@@ -376,7 +401,8 @@ module Aws::ChimeSDKMeetings
376
401
  :external_meeting_id,
377
402
  :meeting_features,
378
403
  :notifications_configuration,
379
- :attendees)
404
+ :attendees,
405
+ :primary_meeting_id)
380
406
  SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
381
407
  include Aws::Structure
382
408
  end
@@ -510,7 +536,7 @@ module Aws::ChimeSDKMeetings
510
536
  # data as a hash:
511
537
  #
512
538
  # {
513
- # 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
539
+ # language_code: "en-US", # 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
514
540
  # vocabulary_filter_method: "remove", # accepts remove, mask, tag
515
541
  # vocabulary_filter_name: "String",
516
542
  # vocabulary_name: "String",
@@ -521,6 +547,9 @@ module Aws::ChimeSDKMeetings
521
547
  # content_redaction_type: "PII", # accepts PII
522
548
  # pii_entity_types: "TranscribePiiEntityTypes",
523
549
  # language_model_name: "TranscribeLanguageModelName",
550
+ # identify_language: false,
551
+ # language_options: "TranscribeLanguageOptions",
552
+ # preferred_language: "en-US", # 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
524
553
  # }
525
554
  #
526
555
  # @!attribute [rw] language_code
@@ -576,7 +605,7 @@ module Aws::ChimeSDKMeetings
576
605
  # specify entity types, you must enable `ContentIdentificationType` or
577
606
  # `ContentRedactionType`.
578
607
  #
579
- # PIIEntityTypes must be comma-separated. The available values are:
608
+ # `PIIEntityTypes` must be comma-separated. The available values are:
580
609
  # `BANK_ACCOUNT_NUMBER`, `BANK_ROUTING, CREDIT_DEBIT_NUMBER`,
581
610
  # `CREDIT_DEBIT_CVV`, `CREDIT_DEBIT_EXPIRY`, `PIN`, `EMAIL`,
582
611
  # `ADDRESS`, `NAME`, `PHONE`, `SSN`, and `ALL`.
@@ -589,6 +618,19 @@ module Aws::ChimeSDKMeetings
589
618
  # The name of the language model used during transcription.
590
619
  # @return [String]
591
620
  #
621
+ # @!attribute [rw] identify_language
622
+ # Automatically identifies the language spoken in media files.
623
+ # @return [Boolean]
624
+ #
625
+ # @!attribute [rw] language_options
626
+ # Language codes for the languages that you want to identify. You must
627
+ # provide at least 2 codes.
628
+ # @return [String]
629
+ #
630
+ # @!attribute [rw] preferred_language
631
+ # Language code for the preferred language.
632
+ # @return [String]
633
+ #
592
634
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/EngineTranscribeSettings AWS API Documentation
593
635
  #
594
636
  class EngineTranscribeSettings < Struct.new(
@@ -602,7 +644,10 @@ module Aws::ChimeSDKMeetings
602
644
  :content_identification_type,
603
645
  :content_redaction_type,
604
646
  :pii_entity_types,
605
- :language_model_name)
647
+ :language_model_name,
648
+ :identify_language,
649
+ :language_options,
650
+ :preferred_language)
606
651
  SENSITIVE = []
607
652
  include Aws::Structure
608
653
  end
@@ -839,6 +884,9 @@ module Aws::ChimeSDKMeetings
839
884
  # `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`, `eu-central-1`,
840
885
  # `eu-north-1`, `eu-south-1`, `eu-west-1`, `eu-west-2`, `eu-west-3`,
841
886
  # `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`, `us-west-2`.
887
+ #
888
+ # Available values in AWS GovCloud (US) Regions: `us-gov-east-1`,
889
+ # `us-gov-west-1`.
842
890
  # @return [String]
843
891
  #
844
892
  # @!attribute [rw] media_placement
@@ -849,6 +897,11 @@ module Aws::ChimeSDKMeetings
849
897
  # The features available to a meeting, such as Amazon Voice Focus.
850
898
  # @return [Types::MeetingFeaturesConfiguration]
851
899
  #
900
+ # @!attribute [rw] primary_meeting_id
901
+ # When specified, replicates the media from the primary meeting to
902
+ # this meeting.
903
+ # @return [String]
904
+ #
852
905
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Meeting AWS API Documentation
853
906
  #
854
907
  class Meeting < Struct.new(
@@ -857,12 +910,13 @@ module Aws::ChimeSDKMeetings
857
910
  :external_meeting_id,
858
911
  :media_region,
859
912
  :media_placement,
860
- :meeting_features)
913
+ :meeting_features,
914
+ :primary_meeting_id)
861
915
  SENSITIVE = [:meeting_host_id, :external_meeting_id]
862
916
  include Aws::Structure
863
917
  end
864
918
 
865
- # The configuration settings of the features available to a meeting.
919
+ # The configuration settings of the features available to a meeting.&gt;
866
920
  #
867
921
  # @note When making an API call, you may pass MeetingFeaturesConfiguration
868
922
  # data as a hash:
@@ -980,7 +1034,7 @@ module Aws::ChimeSDKMeetings
980
1034
  # meeting_id: "GuidString", # required
981
1035
  # transcription_configuration: { # required
982
1036
  # engine_transcribe_settings: {
983
- # 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
1037
+ # language_code: "en-US", # 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
984
1038
  # vocabulary_filter_method: "remove", # accepts remove, mask, tag
985
1039
  # vocabulary_filter_name: "String",
986
1040
  # vocabulary_name: "String",
@@ -991,6 +1045,9 @@ module Aws::ChimeSDKMeetings
991
1045
  # content_redaction_type: "PII", # accepts PII
992
1046
  # pii_entity_types: "TranscribePiiEntityTypes",
993
1047
  # language_model_name: "TranscribeLanguageModelName",
1048
+ # identify_language: false,
1049
+ # language_options: "TranscribeLanguageOptions",
1050
+ # preferred_language: "en-US", # 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
994
1051
  # },
995
1052
  # engine_transcribe_medical_settings: {
996
1053
  # language_code: "en-US", # required, accepts en-US
@@ -1050,7 +1107,7 @@ module Aws::ChimeSDKMeetings
1050
1107
  #
1051
1108
  # {
1052
1109
  # engine_transcribe_settings: {
1053
- # 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
1110
+ # language_code: "en-US", # 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
1054
1111
  # vocabulary_filter_method: "remove", # accepts remove, mask, tag
1055
1112
  # vocabulary_filter_name: "String",
1056
1113
  # vocabulary_name: "String",
@@ -1061,6 +1118,9 @@ module Aws::ChimeSDKMeetings
1061
1118
  # content_redaction_type: "PII", # accepts PII
1062
1119
  # pii_entity_types: "TranscribePiiEntityTypes",
1063
1120
  # language_model_name: "TranscribeLanguageModelName",
1121
+ # identify_language: false,
1122
+ # language_options: "TranscribeLanguageOptions",
1123
+ # preferred_language: "en-US", # 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
1064
1124
  # },
1065
1125
  # engine_transcribe_medical_settings: {
1066
1126
  # language_code: "en-US", # required, accepts en-US
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-chimesdkmeetings/customizations'
48
48
  # @!group service
49
49
  module Aws::ChimeSDKMeetings
50
50
 
51
- GEM_VERSION = '1.6.0'
51
+ GEM_VERSION = '1.9.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chimesdkmeetings
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.9.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: 2022-02-03 00:00:00.000000000 Z
11
+ date: 2022-03-21 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.126.0
22
+ version: 3.127.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.126.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement