aws-sdk-chimesdkmeetings 1.2.0 → 1.3.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: a9443c349ee13ec312029ec683b8916eabd247c32557da4e07afb3f238b86b7a
4
- data.tar.gz: 0dd8432dc03263ca8cdfd965869490dc40dbd2a3eda26569f0a25d03d638f5c8
3
+ metadata.gz: 437379639b2940434abcc656b852a6e698c0150cd5f9129ec00f544aaf0db188
4
+ data.tar.gz: f2b9f3d0f0c7bf7c22f0b34c7200079fface97bc387e62942a0d9d73088d5b2e
5
5
  SHA512:
6
- metadata.gz: 305f91b9319f4aa197b1161e615d8c06d0e42aa3d9650175eada81def943c50cc2f01226f930f16fa248e1d83da71707dd2c5c6ba68abb335f873c023b38fff3
7
- data.tar.gz: b129bea9a7923340d4668b5fc1d3ff01507fc5275a6daa85c564bda0d6e73b2dcdd7f04457fab33198ab87ab270da8f143144a22fabdb1b4172fd804155bc534
6
+ metadata.gz: 687ac35b6817e092210ec84fed2ac68fe9686e20769cc6bd5a485fdf9d269dcbfbeefa629b1eaeab85b697cc0e8db94cc9932818c2333cb0f1d8db468b615f62
7
+ data.tar.gz: c8626b1807a3699ab48ea6369ee5563e40aff9114a9518836e0e8ded0808555183014e33f77d048184ab2360e30ceabbaaff54cd8ebf42ec03fa618f0bcb419d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2021-11-22)
5
+ ------------------
6
+
7
+ * Feature - Added new APIs for enabling Echo Reduction with Voice Focus.
8
+
4
9
  1.2.0 (2021-11-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.3.0
@@ -465,6 +465,10 @@ module Aws::ChimeSDKMeetings
465
465
  # The configuration for resource targets to receive notifications when
466
466
  # meeting and attendee events occur.
467
467
  #
468
+ # @option params [Types::MeetingFeaturesConfiguration] :meeting_features
469
+ # Lists the audio and video features enabled for a meeting, such as echo
470
+ # reduction.
471
+ #
468
472
  # @return [Types::CreateMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
469
473
  #
470
474
  # * {Types::CreateMeetingResponse#meeting #meeting} => Types::Meeting
@@ -481,6 +485,11 @@ module Aws::ChimeSDKMeetings
481
485
  # sns_topic_arn: "Arn",
482
486
  # sqs_queue_arn: "Arn",
483
487
  # },
488
+ # meeting_features: {
489
+ # audio: {
490
+ # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
491
+ # },
492
+ # },
484
493
  # })
485
494
  #
486
495
  # @example Response structure
@@ -497,6 +506,7 @@ module Aws::ChimeSDKMeetings
497
506
  # resp.meeting.media_placement.screen_viewing_url #=> String
498
507
  # resp.meeting.media_placement.screen_sharing_url #=> String
499
508
  # resp.meeting.media_placement.event_ingestion_url #=> String
509
+ # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
500
510
  #
501
511
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeeting AWS API Documentation
502
512
  #
@@ -534,6 +544,10 @@ module Aws::ChimeSDKMeetings
534
544
  # @option params [required, String] :external_meeting_id
535
545
  # The external meeting ID.
536
546
  #
547
+ # @option params [Types::MeetingFeaturesConfiguration] :meeting_features
548
+ # Lists the audio and video features enabled for a meeting, such as echo
549
+ # reduction.
550
+ #
537
551
  # @option params [Types::NotificationsConfiguration] :notifications_configuration
538
552
  # The configuration for resource targets to receive notifications when
539
553
  # meeting and attendee events occur.
@@ -554,6 +568,11 @@ module Aws::ChimeSDKMeetings
554
568
  # media_region: "MediaRegion", # required
555
569
  # meeting_host_id: "ExternalUserId",
556
570
  # external_meeting_id: "ExternalMeetingId", # required
571
+ # meeting_features: {
572
+ # audio: {
573
+ # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
574
+ # },
575
+ # },
557
576
  # notifications_configuration: {
558
577
  # lambda_function_arn: "Arn",
559
578
  # sns_topic_arn: "Arn",
@@ -580,6 +599,7 @@ module Aws::ChimeSDKMeetings
580
599
  # resp.meeting.media_placement.screen_viewing_url #=> String
581
600
  # resp.meeting.media_placement.screen_sharing_url #=> String
582
601
  # resp.meeting.media_placement.event_ingestion_url #=> String
602
+ # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
583
603
  # resp.attendees #=> Array
584
604
  # resp.attendees[0].external_user_id #=> String
585
605
  # resp.attendees[0].attendee_id #=> String
@@ -737,6 +757,7 @@ module Aws::ChimeSDKMeetings
737
757
  # resp.meeting.media_placement.screen_viewing_url #=> String
738
758
  # resp.meeting.media_placement.screen_sharing_url #=> String
739
759
  # resp.meeting.media_placement.event_ingestion_url #=> String
760
+ # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
740
761
  #
741
762
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetMeeting AWS API Documentation
742
763
  #
@@ -881,7 +902,7 @@ module Aws::ChimeSDKMeetings
881
902
  params: params,
882
903
  config: config)
883
904
  context[:gem_name] = 'aws-sdk-chimesdkmeetings'
884
- context[:gem_version] = '1.2.0'
905
+ context[:gem_version] = '1.3.0'
885
906
  Seahorse::Client::Request.new(handlers, context)
886
907
  end
887
908
 
@@ -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 personal health information in
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 both `ContentRedactionType` and
525
- # `ContentIdentificationType` in the same request. If you set both,
526
- # your request returns a `BadRequestException`.
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
- # `PIIEntityTypes` must be comma-separated. The available values are:
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
  #
@@ -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.2.0'
51
+ GEM_VERSION = '1.3.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.2.0
4
+ version: 1.3.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-18 00:00:00.000000000 Z
11
+ date: 2021-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core