aws-sdk-chimesdkmeetings 1.2.0 → 1.6.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 +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkmeetings/client.rb +37 -3
- data/lib/aws-sdk-chimesdkmeetings/client_api.rb +12 -0
- data/lib/aws-sdk-chimesdkmeetings/types.rb +82 -8
- data/lib/aws-sdk-chimesdkmeetings.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23ca3848b24c044c881f4a82db584148b29c6a0704886ae8e5e9021c5d019b87
|
4
|
+
data.tar.gz: 4967754d0447ecdbac759dc128b85cc070dc0440b67fe8e7debb7950d114427c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0410b11f3a08d548ca2452943f66bb638be9fd14d5e9a3ca30e7244b67bb5824f4354052002277223fccbfba1651c117111f4e901a4b948fcb2b2bca6586a71e
|
7
|
+
data.tar.gz: 6a94be7c3ed639d0a942fb06b17222062531d8a750820b6398d1a2a9db18cc92a2a8b1d770632402bec4b37cc359e78386d64cc274080130c438ec3816879224
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.6.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.5.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.4.0 (2021-11-30)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.3.0 (2021-11-22)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Added new APIs for enabling Echo Reduction with Voice Focus.
|
23
|
+
|
4
24
|
1.2.0 (2021-11-18)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.6.0
|
@@ -27,6 +27,8 @@ 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'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::ChimeSDKMeetings
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::ChimeSDKMeetings
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::ChimeSDKMeetings
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -295,7 +305,7 @@ module Aws::ChimeSDKMeetings
|
|
295
305
|
# seconds to wait when opening a HTTP session before raising a
|
296
306
|
# `Timeout::Error`.
|
297
307
|
#
|
298
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
309
|
# number of seconds to wait for response data. This value can
|
300
310
|
# safely be set per-request on the session.
|
301
311
|
#
|
@@ -311,6 +321,9 @@ module Aws::ChimeSDKMeetings
|
|
311
321
|
# disables this behaviour. This value can safely be set per
|
312
322
|
# request on the session.
|
313
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
314
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
328
|
# HTTP debug output will be sent to the `:logger`.
|
316
329
|
#
|
@@ -465,6 +478,10 @@ module Aws::ChimeSDKMeetings
|
|
465
478
|
# The configuration for resource targets to receive notifications when
|
466
479
|
# meeting and attendee events occur.
|
467
480
|
#
|
481
|
+
# @option params [Types::MeetingFeaturesConfiguration] :meeting_features
|
482
|
+
# Lists the audio and video features enabled for a meeting, such as echo
|
483
|
+
# reduction.
|
484
|
+
#
|
468
485
|
# @return [Types::CreateMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
469
486
|
#
|
470
487
|
# * {Types::CreateMeetingResponse#meeting #meeting} => Types::Meeting
|
@@ -481,6 +498,11 @@ module Aws::ChimeSDKMeetings
|
|
481
498
|
# sns_topic_arn: "Arn",
|
482
499
|
# sqs_queue_arn: "Arn",
|
483
500
|
# },
|
501
|
+
# meeting_features: {
|
502
|
+
# audio: {
|
503
|
+
# echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
|
504
|
+
# },
|
505
|
+
# },
|
484
506
|
# })
|
485
507
|
#
|
486
508
|
# @example Response structure
|
@@ -497,6 +519,7 @@ module Aws::ChimeSDKMeetings
|
|
497
519
|
# resp.meeting.media_placement.screen_viewing_url #=> String
|
498
520
|
# resp.meeting.media_placement.screen_sharing_url #=> String
|
499
521
|
# resp.meeting.media_placement.event_ingestion_url #=> String
|
522
|
+
# resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
|
500
523
|
#
|
501
524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeeting AWS API Documentation
|
502
525
|
#
|
@@ -534,6 +557,10 @@ module Aws::ChimeSDKMeetings
|
|
534
557
|
# @option params [required, String] :external_meeting_id
|
535
558
|
# The external meeting ID.
|
536
559
|
#
|
560
|
+
# @option params [Types::MeetingFeaturesConfiguration] :meeting_features
|
561
|
+
# Lists the audio and video features enabled for a meeting, such as echo
|
562
|
+
# reduction.
|
563
|
+
#
|
537
564
|
# @option params [Types::NotificationsConfiguration] :notifications_configuration
|
538
565
|
# The configuration for resource targets to receive notifications when
|
539
566
|
# meeting and attendee events occur.
|
@@ -554,6 +581,11 @@ module Aws::ChimeSDKMeetings
|
|
554
581
|
# media_region: "MediaRegion", # required
|
555
582
|
# meeting_host_id: "ExternalUserId",
|
556
583
|
# external_meeting_id: "ExternalMeetingId", # required
|
584
|
+
# meeting_features: {
|
585
|
+
# audio: {
|
586
|
+
# echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
|
587
|
+
# },
|
588
|
+
# },
|
557
589
|
# notifications_configuration: {
|
558
590
|
# lambda_function_arn: "Arn",
|
559
591
|
# sns_topic_arn: "Arn",
|
@@ -580,6 +612,7 @@ module Aws::ChimeSDKMeetings
|
|
580
612
|
# resp.meeting.media_placement.screen_viewing_url #=> String
|
581
613
|
# resp.meeting.media_placement.screen_sharing_url #=> String
|
582
614
|
# resp.meeting.media_placement.event_ingestion_url #=> String
|
615
|
+
# resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
|
583
616
|
# resp.attendees #=> Array
|
584
617
|
# resp.attendees[0].external_user_id #=> String
|
585
618
|
# resp.attendees[0].attendee_id #=> String
|
@@ -737,6 +770,7 @@ module Aws::ChimeSDKMeetings
|
|
737
770
|
# resp.meeting.media_placement.screen_viewing_url #=> String
|
738
771
|
# resp.meeting.media_placement.screen_sharing_url #=> String
|
739
772
|
# resp.meeting.media_placement.event_ingestion_url #=> String
|
773
|
+
# resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
|
740
774
|
#
|
741
775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetMeeting AWS API Documentation
|
742
776
|
#
|
@@ -881,7 +915,7 @@ module Aws::ChimeSDKMeetings
|
|
881
915
|
params: params,
|
882
916
|
config: config)
|
883
917
|
context[:gem_name] = 'aws-sdk-chimesdkmeetings'
|
884
|
-
context[:gem_version] = '1.
|
918
|
+
context[:gem_version] = '1.6.0'
|
885
919
|
Seahorse::Client::Request.new(handlers, context)
|
886
920
|
end
|
887
921
|
|
@@ -16,6 +16,7 @@ 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')
|
@@ -51,6 +52,8 @@ module Aws::ChimeSDKMeetings
|
|
51
52
|
MediaPlacement = Shapes::StructureShape.new(name: 'MediaPlacement')
|
52
53
|
MediaRegion = Shapes::StringShape.new(name: 'MediaRegion')
|
53
54
|
Meeting = Shapes::StructureShape.new(name: 'Meeting')
|
55
|
+
MeetingFeatureStatus = Shapes::StringShape.new(name: 'MeetingFeatureStatus')
|
56
|
+
MeetingFeaturesConfiguration = Shapes::StructureShape.new(name: 'MeetingFeaturesConfiguration')
|
54
57
|
NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
|
55
58
|
NotificationsConfiguration = Shapes::StructureShape.new(name: 'NotificationsConfiguration')
|
56
59
|
ResultMax = Shapes::IntegerShape.new(name: 'ResultMax')
|
@@ -83,6 +86,9 @@ module Aws::ChimeSDKMeetings
|
|
83
86
|
|
84
87
|
AttendeeList.member = Shapes::ShapeRef.new(shape: Attendee)
|
85
88
|
|
89
|
+
AudioFeatures.add_member(:echo_reduction, Shapes::ShapeRef.new(shape: MeetingFeatureStatus, location_name: "EchoReduction"))
|
90
|
+
AudioFeatures.struct_class = Types::AudioFeatures
|
91
|
+
|
86
92
|
BadRequestException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
87
93
|
BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
88
94
|
BadRequestException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
@@ -120,6 +126,7 @@ module Aws::ChimeSDKMeetings
|
|
120
126
|
CreateMeetingRequest.add_member(:meeting_host_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "MeetingHostId"))
|
121
127
|
CreateMeetingRequest.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingId, required: true, location_name: "ExternalMeetingId"))
|
122
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"))
|
123
130
|
CreateMeetingRequest.struct_class = Types::CreateMeetingRequest
|
124
131
|
|
125
132
|
CreateMeetingResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
|
@@ -129,6 +136,7 @@ module Aws::ChimeSDKMeetings
|
|
129
136
|
CreateMeetingWithAttendeesRequest.add_member(:media_region, Shapes::ShapeRef.new(shape: MediaRegion, required: true, location_name: "MediaRegion"))
|
130
137
|
CreateMeetingWithAttendeesRequest.add_member(:meeting_host_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "MeetingHostId"))
|
131
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"))
|
132
140
|
CreateMeetingWithAttendeesRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
|
133
141
|
CreateMeetingWithAttendeesRequest.add_member(:attendees, Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesRequestItemList, required: true, location_name: "Attendees"))
|
134
142
|
CreateMeetingWithAttendeesRequest.struct_class = Types::CreateMeetingWithAttendeesRequest
|
@@ -215,8 +223,12 @@ module Aws::ChimeSDKMeetings
|
|
215
223
|
Meeting.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingId, location_name: "ExternalMeetingId"))
|
216
224
|
Meeting.add_member(:media_region, Shapes::ShapeRef.new(shape: MediaRegion, location_name: "MediaRegion"))
|
217
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"))
|
218
227
|
Meeting.struct_class = Types::Meeting
|
219
228
|
|
229
|
+
MeetingFeaturesConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioFeatures, location_name: "Audio"))
|
230
|
+
MeetingFeaturesConfiguration.struct_class = Types::MeetingFeaturesConfiguration
|
231
|
+
|
220
232
|
NotFoundException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
221
233
|
NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
222
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]
|
@@ -512,8 +557,8 @@ module Aws::ChimeSDKMeetings
|
|
512
557
|
# @return [String]
|
513
558
|
#
|
514
559
|
# @!attribute [rw] content_identification_type
|
515
|
-
# Set this field to `PII` to identify
|
516
|
-
# the transcription output.
|
560
|
+
# Set this field to `PII` to identify personally identifiable
|
561
|
+
# information in the transcription output.
|
517
562
|
# @return [String]
|
518
563
|
#
|
519
564
|
# @!attribute [rw] content_redaction_type
|
@@ -521,9 +566,9 @@ module Aws::ChimeSDKMeetings
|
|
521
566
|
# information in the transcription output. Content redaction is
|
522
567
|
# performed only upon complete transcription of the audio segments.
|
523
568
|
#
|
524
|
-
# You can’t set
|
525
|
-
#
|
526
|
-
#
|
569
|
+
# You can’t set `ContentRedactionType` and `ContentIdentificationType`
|
570
|
+
# in the same request. If you set both, your request returns a
|
571
|
+
# `BadRequestException`.
|
527
572
|
# @return [String]
|
528
573
|
#
|
529
574
|
# @!attribute [rw] pii_entity_types
|
@@ -531,7 +576,7 @@ module Aws::ChimeSDKMeetings
|
|
531
576
|
# specify entity types, you must enable `ContentIdentificationType` or
|
532
577
|
# `ContentRedactionType`.
|
533
578
|
#
|
534
|
-
#
|
579
|
+
# PIIEntityTypes must be comma-separated. The available values are:
|
535
580
|
# `BANK_ACCOUNT_NUMBER`, `BANK_ROUTING, CREDIT_DEBIT_NUMBER`,
|
536
581
|
# `CREDIT_DEBIT_CVV`, `CREDIT_DEBIT_EXPIRY`, `PIN`, `EMAIL`,
|
537
582
|
# `ADDRESS`, `NAME`, `PHONE`, `SSN`, and `ALL`.
|
@@ -800,6 +845,10 @@ module Aws::ChimeSDKMeetings
|
|
800
845
|
# The media placement for the meeting.
|
801
846
|
# @return [Types::MediaPlacement]
|
802
847
|
#
|
848
|
+
# @!attribute [rw] meeting_features
|
849
|
+
# The features available to a meeting, such as Amazon Voice Focus.
|
850
|
+
# @return [Types::MeetingFeaturesConfiguration]
|
851
|
+
#
|
803
852
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Meeting AWS API Documentation
|
804
853
|
#
|
805
854
|
class Meeting < Struct.new(
|
@@ -807,11 +856,36 @@ module Aws::ChimeSDKMeetings
|
|
807
856
|
:meeting_host_id,
|
808
857
|
:external_meeting_id,
|
809
858
|
:media_region,
|
810
|
-
:media_placement
|
859
|
+
:media_placement,
|
860
|
+
:meeting_features)
|
811
861
|
SENSITIVE = [:meeting_host_id, :external_meeting_id]
|
812
862
|
include Aws::Structure
|
813
863
|
end
|
814
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
|
+
|
815
889
|
# One or more of the resources in the request does not exist in the
|
816
890
|
# system.
|
817
891
|
#
|
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.
|
4
|
+
version: 1.6.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:
|
11
|
+
date: 2022-02-03 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.
|
22
|
+
version: 3.126.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.
|
32
|
+
version: 3.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|