aws-sdk-chimesdkmeetings 1.1.0 → 1.5.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: 9a9f3e64a9a5713ad31c02949ffff9eb44b864a1c257ddc42a6e431621c48c6e
4
- data.tar.gz: 3bb626434a8250201b9a65aa3525c791cbd690b7204be088e702d1286178812f
3
+ metadata.gz: c1b5916b7f1493c50ce29db70d886d6b93aaeda88762a3e498f233ef0969b808
4
+ data.tar.gz: 6514abccaeb6cfb756c5dd6b79da854267ba4ec5cefacefc3d596dfb5a757a1c
5
5
  SHA512:
6
- metadata.gz: bca7d9aaf2fbaea5454cd543e7a1be50ca405837cc8e371f9d268c7f9dac06ea4a9355fa0b3c932d28df1716b96c66533e03e821df215b62fbc0d12f8fb410c9
7
- data.tar.gz: fc98ef3038c351e8cf7c461ee3c4180f8717bf36662ebd77565643e0fb8a697d02a04715a3cf5aa5d35e238fd9f2202b110ea05a01a0a58bedb38e1a44f20fce
6
+ metadata.gz: 895dd6ecb776bb1767944a990589429e0d18a0be5d2c19573d748a90620ed20cc5cf791c946a630685a520524ae80c31e35daa81f7b9d48eece76d464ed0a506
7
+ data.tar.gz: 3e8a9a0046d140d54716fef9f3f3bebbf16096051181d8558dee7a99488ce81c261df8ee2e6c77a1a1d938cf546b900bdb54fbb903749f2108bb6defe1296c3d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.5.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.4.0 (2021-11-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.3.0 (2021-11-22)
15
+ ------------------
16
+
17
+ * Feature - Added new APIs for enabling Echo Reduction with Voice Focus.
18
+
19
+ 1.2.0 (2021-11-18)
20
+ ------------------
21
+
22
+ * Feature - Adds new Transcribe API parameters to StartMeetingTranscription, including support for content identification and redaction (PII & PHI), partial results stabilization, and custom language models.
23
+
4
24
  1.1.0 (2021-11-08)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.5.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/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::ChimeSDKMeetings
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
80
 
@@ -119,7 +121,9 @@ module Aws::ChimeSDKMeetings
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::ChimeSDKMeetings
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -295,7 +303,7 @@ module Aws::ChimeSDKMeetings
295
303
  # seconds to wait when opening a HTTP session before raising a
296
304
  # `Timeout::Error`.
297
305
  #
298
- # @option options [Integer] :http_read_timeout (60) The default
306
+ # @option options [Float] :http_read_timeout (60) The default
299
307
  # number of seconds to wait for response data. This value can
300
308
  # safely be set per-request on the session.
301
309
  #
@@ -311,6 +319,9 @@ module Aws::ChimeSDKMeetings
311
319
  # disables this behaviour. This value can safely be set per
312
320
  # request on the session.
313
321
  #
322
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
323
+ # in seconds.
324
+ #
314
325
  # @option options [Boolean] :http_wire_trace (false) When `true`,
315
326
  # HTTP debug output will be sent to the `:logger`.
316
327
  #
@@ -336,7 +347,13 @@ module Aws::ChimeSDKMeetings
336
347
 
337
348
  # @!group API Operations
338
349
 
339
- # Creates a group of meeting attendees.
350
+ # Creates up to 100 attendees for an active Amazon Chime SDK meeting.
351
+ # For more information about the Amazon Chime SDK, see [Using the Amazon
352
+ # Chime SDK][1] in the *Amazon Chime Developer Guide*.
353
+ #
354
+ #
355
+ #
356
+ # [1]: https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
340
357
  #
341
358
  # @option params [required, String] :meeting_id
342
359
  # The Amazon Chime SDK ID of the meeting to which you're adding
@@ -459,6 +476,10 @@ module Aws::ChimeSDKMeetings
459
476
  # The configuration for resource targets to receive notifications when
460
477
  # meeting and attendee events occur.
461
478
  #
479
+ # @option params [Types::MeetingFeaturesConfiguration] :meeting_features
480
+ # Lists the audio and video features enabled for a meeting, such as echo
481
+ # reduction.
482
+ #
462
483
  # @return [Types::CreateMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
463
484
  #
464
485
  # * {Types::CreateMeetingResponse#meeting #meeting} => Types::Meeting
@@ -475,6 +496,11 @@ module Aws::ChimeSDKMeetings
475
496
  # sns_topic_arn: "Arn",
476
497
  # sqs_queue_arn: "Arn",
477
498
  # },
499
+ # meeting_features: {
500
+ # audio: {
501
+ # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
502
+ # },
503
+ # },
478
504
  # })
479
505
  #
480
506
  # @example Response structure
@@ -491,6 +517,7 @@ module Aws::ChimeSDKMeetings
491
517
  # resp.meeting.media_placement.screen_viewing_url #=> String
492
518
  # resp.meeting.media_placement.screen_sharing_url #=> String
493
519
  # resp.meeting.media_placement.event_ingestion_url #=> String
520
+ # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
494
521
  #
495
522
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeeting AWS API Documentation
496
523
  #
@@ -528,6 +555,10 @@ module Aws::ChimeSDKMeetings
528
555
  # @option params [required, String] :external_meeting_id
529
556
  # The external meeting ID.
530
557
  #
558
+ # @option params [Types::MeetingFeaturesConfiguration] :meeting_features
559
+ # Lists the audio and video features enabled for a meeting, such as echo
560
+ # reduction.
561
+ #
531
562
  # @option params [Types::NotificationsConfiguration] :notifications_configuration
532
563
  # The configuration for resource targets to receive notifications when
533
564
  # meeting and attendee events occur.
@@ -548,6 +579,11 @@ module Aws::ChimeSDKMeetings
548
579
  # media_region: "MediaRegion", # required
549
580
  # meeting_host_id: "ExternalUserId",
550
581
  # external_meeting_id: "ExternalMeetingId", # required
582
+ # meeting_features: {
583
+ # audio: {
584
+ # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
585
+ # },
586
+ # },
551
587
  # notifications_configuration: {
552
588
  # lambda_function_arn: "Arn",
553
589
  # sns_topic_arn: "Arn",
@@ -574,6 +610,7 @@ module Aws::ChimeSDKMeetings
574
610
  # resp.meeting.media_placement.screen_viewing_url #=> String
575
611
  # resp.meeting.media_placement.screen_sharing_url #=> String
576
612
  # resp.meeting.media_placement.event_ingestion_url #=> String
613
+ # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
577
614
  # resp.attendees #=> Array
578
615
  # resp.attendees[0].external_user_id #=> String
579
616
  # resp.attendees[0].attendee_id #=> String
@@ -731,6 +768,7 @@ module Aws::ChimeSDKMeetings
731
768
  # resp.meeting.media_placement.screen_viewing_url #=> String
732
769
  # resp.meeting.media_placement.screen_sharing_url #=> String
733
770
  # resp.meeting.media_placement.event_ingestion_url #=> String
771
+ # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
734
772
  #
735
773
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetMeeting AWS API Documentation
736
774
  #
@@ -813,6 +851,12 @@ module Aws::ChimeSDKMeetings
813
851
  # vocabulary_filter_name: "String",
814
852
  # vocabulary_name: "String",
815
853
  # region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
854
+ # enable_partial_results_stabilization: false,
855
+ # partial_results_stability: "low", # accepts low, medium, high
856
+ # content_identification_type: "PII", # accepts PII
857
+ # content_redaction_type: "PII", # accepts PII
858
+ # pii_entity_types: "TranscribePiiEntityTypes",
859
+ # language_model_name: "TranscribeLanguageModelName",
816
860
  # },
817
861
  # engine_transcribe_medical_settings: {
818
862
  # language_code: "en-US", # required, accepts en-US
@@ -820,6 +864,7 @@ module Aws::ChimeSDKMeetings
820
864
  # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
821
865
  # vocabulary_name: "String",
822
866
  # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
867
+ # content_identification_type: "PHI", # accepts PHI
823
868
  # },
824
869
  # },
825
870
  # })
@@ -868,7 +913,7 @@ module Aws::ChimeSDKMeetings
868
913
  params: params,
869
914
  config: config)
870
915
  context[:gem_name] = 'aws-sdk-chimesdkmeetings'
871
- context[:gem_version] = '1.1.0'
916
+ context[:gem_version] = '1.5.0'
872
917
  Seahorse::Client::Request.new(handlers, context)
873
918
  end
874
919
 
@@ -16,10 +16,12 @@ module Aws::ChimeSDKMeetings
16
16
  Arn = Shapes::StringShape.new(name: 'Arn')
17
17
  Attendee = Shapes::StructureShape.new(name: 'Attendee')
18
18
  AttendeeList = Shapes::ListShape.new(name: 'AttendeeList')
19
+ AudioFeatures = Shapes::StructureShape.new(name: 'AudioFeatures')
19
20
  BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
20
21
  BatchCreateAttendeeErrorList = Shapes::ListShape.new(name: 'BatchCreateAttendeeErrorList')
21
22
  BatchCreateAttendeeRequest = Shapes::StructureShape.new(name: 'BatchCreateAttendeeRequest')
22
23
  BatchCreateAttendeeResponse = Shapes::StructureShape.new(name: 'BatchCreateAttendeeResponse')
24
+ Boolean = Shapes::BooleanShape.new(name: 'Boolean')
23
25
  ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
24
26
  CreateAttendeeError = Shapes::StructureShape.new(name: 'CreateAttendeeError')
25
27
  CreateAttendeeRequest = Shapes::StructureShape.new(name: 'CreateAttendeeRequest')
@@ -50,6 +52,8 @@ module Aws::ChimeSDKMeetings
50
52
  MediaPlacement = Shapes::StructureShape.new(name: 'MediaPlacement')
51
53
  MediaRegion = Shapes::StringShape.new(name: 'MediaRegion')
52
54
  Meeting = Shapes::StructureShape.new(name: 'Meeting')
55
+ MeetingFeatureStatus = Shapes::StringShape.new(name: 'MeetingFeatureStatus')
56
+ MeetingFeaturesConfiguration = Shapes::StructureShape.new(name: 'MeetingFeaturesConfiguration')
53
57
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
54
58
  NotificationsConfiguration = Shapes::StructureShape.new(name: 'NotificationsConfiguration')
55
59
  ResultMax = Shapes::IntegerShape.new(name: 'ResultMax')
@@ -58,11 +62,17 @@ module Aws::ChimeSDKMeetings
58
62
  StartMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionRequest')
59
63
  StopMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StopMeetingTranscriptionRequest')
60
64
  String = Shapes::StringShape.new(name: 'String')
65
+ TranscribeContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeContentIdentificationType')
66
+ TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
61
67
  TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
68
+ TranscribeLanguageModelName = Shapes::StringShape.new(name: 'TranscribeLanguageModelName')
69
+ TranscribeMedicalContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeMedicalContentIdentificationType')
62
70
  TranscribeMedicalLanguageCode = Shapes::StringShape.new(name: 'TranscribeMedicalLanguageCode')
63
71
  TranscribeMedicalRegion = Shapes::StringShape.new(name: 'TranscribeMedicalRegion')
64
72
  TranscribeMedicalSpecialty = Shapes::StringShape.new(name: 'TranscribeMedicalSpecialty')
65
73
  TranscribeMedicalType = Shapes::StringShape.new(name: 'TranscribeMedicalType')
74
+ TranscribePartialResultsStability = Shapes::StringShape.new(name: 'TranscribePartialResultsStability')
75
+ TranscribePiiEntityTypes = Shapes::StringShape.new(name: 'TranscribePiiEntityTypes')
66
76
  TranscribeRegion = Shapes::StringShape.new(name: 'TranscribeRegion')
67
77
  TranscribeVocabularyFilterMethod = Shapes::StringShape.new(name: 'TranscribeVocabularyFilterMethod')
68
78
  TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
@@ -76,6 +86,9 @@ module Aws::ChimeSDKMeetings
76
86
 
77
87
  AttendeeList.member = Shapes::ShapeRef.new(shape: Attendee)
78
88
 
89
+ AudioFeatures.add_member(:echo_reduction, Shapes::ShapeRef.new(shape: MeetingFeatureStatus, location_name: "EchoReduction"))
90
+ AudioFeatures.struct_class = Types::AudioFeatures
91
+
79
92
  BadRequestException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
80
93
  BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
81
94
  BadRequestException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
@@ -113,6 +126,7 @@ module Aws::ChimeSDKMeetings
113
126
  CreateMeetingRequest.add_member(:meeting_host_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "MeetingHostId"))
114
127
  CreateMeetingRequest.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingId, required: true, location_name: "ExternalMeetingId"))
115
128
  CreateMeetingRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
129
+ CreateMeetingRequest.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
116
130
  CreateMeetingRequest.struct_class = Types::CreateMeetingRequest
117
131
 
118
132
  CreateMeetingResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
@@ -122,6 +136,7 @@ module Aws::ChimeSDKMeetings
122
136
  CreateMeetingWithAttendeesRequest.add_member(:media_region, Shapes::ShapeRef.new(shape: MediaRegion, required: true, location_name: "MediaRegion"))
123
137
  CreateMeetingWithAttendeesRequest.add_member(:meeting_host_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "MeetingHostId"))
124
138
  CreateMeetingWithAttendeesRequest.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingId, required: true, location_name: "ExternalMeetingId"))
139
+ CreateMeetingWithAttendeesRequest.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
125
140
  CreateMeetingWithAttendeesRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
126
141
  CreateMeetingWithAttendeesRequest.add_member(:attendees, Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesRequestItemList, required: true, location_name: "Attendees"))
127
142
  CreateMeetingWithAttendeesRequest.struct_class = Types::CreateMeetingWithAttendeesRequest
@@ -145,6 +160,7 @@ module Aws::ChimeSDKMeetings
145
160
  EngineTranscribeMedicalSettings.add_member(:type, Shapes::ShapeRef.new(shape: TranscribeMedicalType, required: true, location_name: "Type"))
146
161
  EngineTranscribeMedicalSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
147
162
  EngineTranscribeMedicalSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeMedicalRegion, location_name: "Region"))
163
+ EngineTranscribeMedicalSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeMedicalContentIdentificationType, location_name: "ContentIdentificationType"))
148
164
  EngineTranscribeMedicalSettings.struct_class = Types::EngineTranscribeMedicalSettings
149
165
 
150
166
  EngineTranscribeSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeLanguageCode, required: true, location_name: "LanguageCode"))
@@ -152,6 +168,12 @@ module Aws::ChimeSDKMeetings
152
168
  EngineTranscribeSettings.add_member(:vocabulary_filter_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyFilterName"))
153
169
  EngineTranscribeSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
154
170
  EngineTranscribeSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeRegion, location_name: "Region"))
171
+ EngineTranscribeSettings.add_member(:enable_partial_results_stabilization, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePartialResultsStabilization"))
172
+ EngineTranscribeSettings.add_member(:partial_results_stability, Shapes::ShapeRef.new(shape: TranscribePartialResultsStability, location_name: "PartialResultsStability"))
173
+ EngineTranscribeSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeContentIdentificationType, location_name: "ContentIdentificationType"))
174
+ EngineTranscribeSettings.add_member(:content_redaction_type, Shapes::ShapeRef.new(shape: TranscribeContentRedactionType, location_name: "ContentRedactionType"))
175
+ EngineTranscribeSettings.add_member(:pii_entity_types, Shapes::ShapeRef.new(shape: TranscribePiiEntityTypes, location_name: "PiiEntityTypes"))
176
+ EngineTranscribeSettings.add_member(:language_model_name, Shapes::ShapeRef.new(shape: TranscribeLanguageModelName, location_name: "LanguageModelName"))
155
177
  EngineTranscribeSettings.struct_class = Types::EngineTranscribeSettings
156
178
 
157
179
  ForbiddenException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
@@ -201,8 +223,12 @@ module Aws::ChimeSDKMeetings
201
223
  Meeting.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingId, location_name: "ExternalMeetingId"))
202
224
  Meeting.add_member(:media_region, Shapes::ShapeRef.new(shape: MediaRegion, location_name: "MediaRegion"))
203
225
  Meeting.add_member(:media_placement, Shapes::ShapeRef.new(shape: MediaPlacement, location_name: "MediaPlacement"))
226
+ Meeting.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
204
227
  Meeting.struct_class = Types::Meeting
205
228
 
229
+ MeetingFeaturesConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioFeatures, location_name: "Audio"))
230
+ MeetingFeaturesConfiguration.struct_class = Types::MeetingFeaturesConfiguration
231
+
206
232
  NotFoundException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
207
233
  NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
208
234
  NotFoundException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
@@ -43,6 +43,29 @@ module Aws::ChimeSDKMeetings
43
43
  include Aws::Structure
44
44
  end
45
45
 
46
+ # An optional category of meeting features that contains audio-specific
47
+ # configurations, such as operating parameters for Amazon Voice Focus.
48
+ #
49
+ # @note When making an API call, you may pass AudioFeatures
50
+ # data as a hash:
51
+ #
52
+ # {
53
+ # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
54
+ # }
55
+ #
56
+ # @!attribute [rw] echo_reduction
57
+ # Makes echo reduction available to clients who connect to the
58
+ # meeting.
59
+ # @return [String]
60
+ #
61
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/AudioFeatures AWS API Documentation
62
+ #
63
+ class AudioFeatures < Struct.new(
64
+ :echo_reduction)
65
+ SENSITIVE = []
66
+ include Aws::Structure
67
+ end
68
+
46
69
  # The input parameters don't match the service's restrictions.
47
70
  #
48
71
  # @!attribute [rw] code
@@ -216,6 +239,11 @@ module Aws::ChimeSDKMeetings
216
239
  # sns_topic_arn: "Arn",
217
240
  # sqs_queue_arn: "Arn",
218
241
  # },
242
+ # meeting_features: {
243
+ # audio: {
244
+ # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
245
+ # },
246
+ # },
219
247
  # }
220
248
  #
221
249
  # @!attribute [rw] client_request_token
@@ -249,6 +277,11 @@ module Aws::ChimeSDKMeetings
249
277
  # meeting and attendee events occur.
250
278
  # @return [Types::NotificationsConfiguration]
251
279
  #
280
+ # @!attribute [rw] meeting_features
281
+ # Lists the audio and video features enabled for a meeting, such as
282
+ # echo reduction.
283
+ # @return [Types::MeetingFeaturesConfiguration]
284
+ #
252
285
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingRequest AWS API Documentation
253
286
  #
254
287
  class CreateMeetingRequest < Struct.new(
@@ -256,7 +289,8 @@ module Aws::ChimeSDKMeetings
256
289
  :media_region,
257
290
  :meeting_host_id,
258
291
  :external_meeting_id,
259
- :notifications_configuration)
292
+ :notifications_configuration,
293
+ :meeting_features)
260
294
  SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
261
295
  include Aws::Structure
262
296
  end
@@ -282,6 +316,11 @@ module Aws::ChimeSDKMeetings
282
316
  # media_region: "MediaRegion", # required
283
317
  # meeting_host_id: "ExternalUserId",
284
318
  # external_meeting_id: "ExternalMeetingId", # required
319
+ # meeting_features: {
320
+ # audio: {
321
+ # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
322
+ # },
323
+ # },
285
324
  # notifications_configuration: {
286
325
  # lambda_function_arn: "Arn",
287
326
  # sns_topic_arn: "Arn",
@@ -314,6 +353,11 @@ module Aws::ChimeSDKMeetings
314
353
  # The external meeting ID.
315
354
  # @return [String]
316
355
  #
356
+ # @!attribute [rw] meeting_features
357
+ # Lists the audio and video features enabled for a meeting, such as
358
+ # echo reduction.
359
+ # @return [Types::MeetingFeaturesConfiguration]
360
+ #
317
361
  # @!attribute [rw] notifications_configuration
318
362
  # The configuration for resource targets to receive notifications when
319
363
  # meeting and attendee events occur.
@@ -330,6 +374,7 @@ module Aws::ChimeSDKMeetings
330
374
  :media_region,
331
375
  :meeting_host_id,
332
376
  :external_meeting_id,
377
+ :meeting_features,
333
378
  :notifications_configuration,
334
379
  :attendees)
335
380
  SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
@@ -416,6 +461,7 @@ module Aws::ChimeSDKMeetings
416
461
  # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
417
462
  # vocabulary_name: "String",
418
463
  # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
464
+ # content_identification_type: "PHI", # accepts PHI
419
465
  # }
420
466
  #
421
467
  # @!attribute [rw] language_code
@@ -440,6 +486,11 @@ module Aws::ChimeSDKMeetings
440
486
  # specify a Region, Amazon Chime uses the meeting's Region.
441
487
  # @return [String]
442
488
  #
489
+ # @!attribute [rw] content_identification_type
490
+ # Set this field to `PHI` to identify personal health information in
491
+ # the transcription output.
492
+ # @return [String]
493
+ #
443
494
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/EngineTranscribeMedicalSettings AWS API Documentation
444
495
  #
445
496
  class EngineTranscribeMedicalSettings < Struct.new(
@@ -447,7 +498,8 @@ module Aws::ChimeSDKMeetings
447
498
  :specialty,
448
499
  :type,
449
500
  :vocabulary_name,
450
- :region)
501
+ :region,
502
+ :content_identification_type)
451
503
  SENSITIVE = []
452
504
  include Aws::Structure
453
505
  end
@@ -463,6 +515,12 @@ module Aws::ChimeSDKMeetings
463
515
  # vocabulary_filter_name: "String",
464
516
  # vocabulary_name: "String",
465
517
  # region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
518
+ # enable_partial_results_stabilization: false,
519
+ # partial_results_stability: "low", # accepts low, medium, high
520
+ # content_identification_type: "PII", # accepts PII
521
+ # content_redaction_type: "PII", # accepts PII
522
+ # pii_entity_types: "TranscribePiiEntityTypes",
523
+ # language_model_name: "TranscribeLanguageModelName",
466
524
  # }
467
525
  #
468
526
  # @!attribute [rw] language_code
@@ -486,6 +544,51 @@ module Aws::ChimeSDKMeetings
486
544
  # Region, Amazon Chime uses the meeting's Region.
487
545
  # @return [String]
488
546
  #
547
+ # @!attribute [rw] enable_partial_results_stabilization
548
+ # Generates partial transcription results that are less likely to
549
+ # change as meeting attendees speak. It does so by only allowing the
550
+ # last few words from the partial results to change.
551
+ # @return [Boolean]
552
+ #
553
+ # @!attribute [rw] partial_results_stability
554
+ # The stabity level of a partial results transcription. Determines how
555
+ # stable you want the transcription results to be. A higher level
556
+ # means the transcription results are less likely to change.
557
+ # @return [String]
558
+ #
559
+ # @!attribute [rw] content_identification_type
560
+ # Set this field to `PII` to identify personally identifiable
561
+ # information in the transcription output.
562
+ # @return [String]
563
+ #
564
+ # @!attribute [rw] content_redaction_type
565
+ # Set this field to `PII` to redact personally identifiable
566
+ # information in the transcription output. Content redaction is
567
+ # performed only upon complete transcription of the audio segments.
568
+ #
569
+ # You can’t set `ContentRedactionType` and `ContentIdentificationType`
570
+ # in the same request. If you set both, your request returns a
571
+ # `BadRequestException`.
572
+ # @return [String]
573
+ #
574
+ # @!attribute [rw] pii_entity_types
575
+ # Lists the PII entity types you want to identify or redact. To
576
+ # specify entity types, you must enable `ContentIdentificationType` or
577
+ # `ContentRedactionType`.
578
+ #
579
+ # PIIEntityTypes must be comma-separated. The available values are:
580
+ # `BANK_ACCOUNT_NUMBER`, `BANK_ROUTING, CREDIT_DEBIT_NUMBER`,
581
+ # `CREDIT_DEBIT_CVV`, `CREDIT_DEBIT_EXPIRY`, `PIN`, `EMAIL`,
582
+ # `ADDRESS`, `NAME`, `PHONE`, `SSN`, and `ALL`.
583
+ #
584
+ # `PiiEntityTypes` is an optional parameter with a default value of
585
+ # `ALL`.
586
+ # @return [String]
587
+ #
588
+ # @!attribute [rw] language_model_name
589
+ # The name of the language model used during transcription.
590
+ # @return [String]
591
+ #
489
592
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/EngineTranscribeSettings AWS API Documentation
490
593
  #
491
594
  class EngineTranscribeSettings < Struct.new(
@@ -493,7 +596,13 @@ module Aws::ChimeSDKMeetings
493
596
  :vocabulary_filter_method,
494
597
  :vocabulary_filter_name,
495
598
  :vocabulary_name,
496
- :region)
599
+ :region,
600
+ :enable_partial_results_stabilization,
601
+ :partial_results_stability,
602
+ :content_identification_type,
603
+ :content_redaction_type,
604
+ :pii_entity_types,
605
+ :language_model_name)
497
606
  SENSITIVE = []
498
607
  include Aws::Structure
499
608
  end
@@ -736,6 +845,10 @@ module Aws::ChimeSDKMeetings
736
845
  # The media placement for the meeting.
737
846
  # @return [Types::MediaPlacement]
738
847
  #
848
+ # @!attribute [rw] meeting_features
849
+ # The features available to a meeting, such as Amazon Voice Focus.
850
+ # @return [Types::MeetingFeaturesConfiguration]
851
+ #
739
852
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Meeting AWS API Documentation
740
853
  #
741
854
  class Meeting < Struct.new(
@@ -743,11 +856,36 @@ module Aws::ChimeSDKMeetings
743
856
  :meeting_host_id,
744
857
  :external_meeting_id,
745
858
  :media_region,
746
- :media_placement)
859
+ :media_placement,
860
+ :meeting_features)
747
861
  SENSITIVE = [:meeting_host_id, :external_meeting_id]
748
862
  include Aws::Structure
749
863
  end
750
864
 
865
+ # The configuration settings of the features available to a meeting.
866
+ #
867
+ # @note When making an API call, you may pass MeetingFeaturesConfiguration
868
+ # data as a hash:
869
+ #
870
+ # {
871
+ # audio: {
872
+ # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
873
+ # },
874
+ # }
875
+ #
876
+ # @!attribute [rw] audio
877
+ # The configuration settings for the audio features available to a
878
+ # meeting.
879
+ # @return [Types::AudioFeatures]
880
+ #
881
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/MeetingFeaturesConfiguration AWS API Documentation
882
+ #
883
+ class MeetingFeaturesConfiguration < Struct.new(
884
+ :audio)
885
+ SENSITIVE = []
886
+ include Aws::Structure
887
+ end
888
+
751
889
  # One or more of the resources in the request does not exist in the
752
890
  # system.
753
891
  #
@@ -847,6 +985,12 @@ module Aws::ChimeSDKMeetings
847
985
  # vocabulary_filter_name: "String",
848
986
  # vocabulary_name: "String",
849
987
  # region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
988
+ # enable_partial_results_stabilization: false,
989
+ # partial_results_stability: "low", # accepts low, medium, high
990
+ # content_identification_type: "PII", # accepts PII
991
+ # content_redaction_type: "PII", # accepts PII
992
+ # pii_entity_types: "TranscribePiiEntityTypes",
993
+ # language_model_name: "TranscribeLanguageModelName",
850
994
  # },
851
995
  # engine_transcribe_medical_settings: {
852
996
  # language_code: "en-US", # required, accepts en-US
@@ -854,6 +998,7 @@ module Aws::ChimeSDKMeetings
854
998
  # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
855
999
  # vocabulary_name: "String",
856
1000
  # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
1001
+ # content_identification_type: "PHI", # accepts PHI
857
1002
  # },
858
1003
  # },
859
1004
  # }
@@ -910,6 +1055,12 @@ module Aws::ChimeSDKMeetings
910
1055
  # vocabulary_filter_name: "String",
911
1056
  # vocabulary_name: "String",
912
1057
  # region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
1058
+ # enable_partial_results_stabilization: false,
1059
+ # partial_results_stability: "low", # accepts low, medium, high
1060
+ # content_identification_type: "PII", # accepts PII
1061
+ # content_redaction_type: "PII", # accepts PII
1062
+ # pii_entity_types: "TranscribePiiEntityTypes",
1063
+ # language_model_name: "TranscribeLanguageModelName",
913
1064
  # },
914
1065
  # engine_transcribe_medical_settings: {
915
1066
  # language_code: "en-US", # required, accepts en-US
@@ -917,6 +1068,7 @@ module Aws::ChimeSDKMeetings
917
1068
  # type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
918
1069
  # vocabulary_name: "String",
919
1070
  # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
1071
+ # content_identification_type: "PHI", # accepts PHI
920
1072
  # },
921
1073
  # }
922
1074
  #
@@ -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.1.0'
51
+ GEM_VERSION = '1.5.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.1.0
4
+ version: 1.5.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-11-08 00:00:00.000000000 Z
11
+ date: 2021-12-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.122.0
22
+ version: 3.125.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.122.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement