aws-sdk-chimesdkmeetings 1.8.0 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cba8fe87430c30cfa3f9e9ad26e4fe9cd19a90e5a2ca3b8367ad944d488abf5b
4
- data.tar.gz: 39ce4aa0790b2c11ffef6a18b0ae06b8727d00b2c538978db8d0f79ece70d2c5
3
+ metadata.gz: 1b923167b39e0d188e4200a39840130509a53085146ee70ebe2d45c045579a10
4
+ data.tar.gz: 807029475b0b2ade0ed59f391addac6e63e420d669f27c5c8663720fb9cb2716
5
5
  SHA512:
6
- metadata.gz: 63043dd938ac361f681309a5a7cf1959dc107fdaa6e0c258b827114ab38dacda4df3190546a88523879205697a528dc4dd467a16c69ce1815ddae3d3c9321afe
7
- data.tar.gz: 0fd78e0f1ddf861b73d64d653d021a00c9084f6a39cf009954dce4aa1114b84863159126e90bdef9f1e2a278064a317759b952feee658786b0746c4af29b88f2
6
+ metadata.gz: f3cd521bd991633dd8b0b33a194fef93ab9499dde5b585c526b464e2bcb0e6a53c515c841a476fefbcd9ce7874627e4c7f04aab1c42759b8af08f9e95851ee79
7
+ data.tar.gz: 7d6dc8b90067c560fa44b24cc55c08710298daf62add61ab52a0d76b28f93f63c386af66b63a3f48169292c7d4a271e3ebcb9c79ff139aaca96661749215ee64
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.8.0 (2022-03-07)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.9.0
@@ -487,6 +487,10 @@ module Aws::ChimeSDKMeetings
487
487
  # Lists the audio and video features enabled for a meeting, such as echo
488
488
  # reduction.
489
489
  #
490
+ # @option params [String] :primary_meeting_id
491
+ # When specified, replicates the media from the primary meeting to the
492
+ # new meeting.
493
+ #
490
494
  # @return [Types::CreateMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
491
495
  #
492
496
  # * {Types::CreateMeetingResponse#meeting #meeting} => Types::Meeting
@@ -508,6 +512,7 @@ module Aws::ChimeSDKMeetings
508
512
  # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
509
513
  # },
510
514
  # },
515
+ # primary_meeting_id: "PrimaryMeetingId",
511
516
  # })
512
517
  #
513
518
  # @example Response structure
@@ -525,6 +530,7 @@ module Aws::ChimeSDKMeetings
525
530
  # resp.meeting.media_placement.screen_sharing_url #=> String
526
531
  # resp.meeting.media_placement.event_ingestion_url #=> String
527
532
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
533
+ # resp.meeting.primary_meeting_id #=> String
528
534
  #
529
535
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeeting AWS API Documentation
530
536
  #
@@ -582,6 +588,10 @@ module Aws::ChimeSDKMeetings
582
588
  # @option params [required, Array<Types::CreateAttendeeRequestItem>] :attendees
583
589
  # The attendee information, including attendees' IDs and join tokens.
584
590
  #
591
+ # @option params [String] :primary_meeting_id
592
+ # When specified, replicates the media from the primary meeting to the
593
+ # new meeting.
594
+ #
585
595
  # @return [Types::CreateMeetingWithAttendeesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
586
596
  #
587
597
  # * {Types::CreateMeetingWithAttendeesResponse#meeting #meeting} => Types::Meeting
@@ -610,6 +620,7 @@ module Aws::ChimeSDKMeetings
610
620
  # external_user_id: "ExternalUserId", # required
611
621
  # },
612
622
  # ],
623
+ # primary_meeting_id: "PrimaryMeetingId",
613
624
  # })
614
625
  #
615
626
  # @example Response structure
@@ -627,6 +638,7 @@ module Aws::ChimeSDKMeetings
627
638
  # resp.meeting.media_placement.screen_sharing_url #=> String
628
639
  # resp.meeting.media_placement.event_ingestion_url #=> String
629
640
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
641
+ # resp.meeting.primary_meeting_id #=> String
630
642
  # resp.attendees #=> Array
631
643
  # resp.attendees[0].external_user_id #=> String
632
644
  # resp.attendees[0].attendee_id #=> String
@@ -785,6 +797,7 @@ module Aws::ChimeSDKMeetings
785
797
  # resp.meeting.media_placement.screen_sharing_url #=> String
786
798
  # resp.meeting.media_placement.event_ingestion_url #=> String
787
799
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
800
+ # resp.meeting.primary_meeting_id #=> String
788
801
  #
789
802
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetMeeting AWS API Documentation
790
803
  #
@@ -932,7 +945,7 @@ module Aws::ChimeSDKMeetings
932
945
  params: params,
933
946
  config: config)
934
947
  context[:gem_name] = 'aws-sdk-chimesdkmeetings'
935
- context[:gem_version] = '1.8.0'
948
+ context[:gem_version] = '1.9.0'
936
949
  Seahorse::Client::Request.new(handlers, context)
937
950
  end
938
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')
@@ -128,6 +129,7 @@ module Aws::ChimeSDKMeetings
128
129
  CreateMeetingRequest.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingId, required: true, location_name: "ExternalMeetingId"))
129
130
  CreateMeetingRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
130
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"))
131
133
  CreateMeetingRequest.struct_class = Types::CreateMeetingRequest
132
134
 
133
135
  CreateMeetingResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
@@ -140,6 +142,7 @@ module Aws::ChimeSDKMeetings
140
142
  CreateMeetingWithAttendeesRequest.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
141
143
  CreateMeetingWithAttendeesRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
142
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"))
143
146
  CreateMeetingWithAttendeesRequest.struct_class = Types::CreateMeetingWithAttendeesRequest
144
147
 
145
148
  CreateMeetingWithAttendeesRequestItemList.member = Shapes::ShapeRef.new(shape: CreateAttendeeRequestItem)
@@ -228,6 +231,7 @@ module Aws::ChimeSDKMeetings
228
231
  Meeting.add_member(:media_region, Shapes::ShapeRef.new(shape: MediaRegion, location_name: "MediaRegion"))
229
232
  Meeting.add_member(:media_placement, Shapes::ShapeRef.new(shape: MediaPlacement, location_name: "MediaPlacement"))
230
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"))
231
235
  Meeting.struct_class = Types::Meeting
232
236
 
233
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
@@ -285,6 +286,11 @@ module Aws::ChimeSDKMeetings
285
286
  # echo reduction.
286
287
  # @return [Types::MeetingFeaturesConfiguration]
287
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
+ #
288
294
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingRequest AWS API Documentation
289
295
  #
290
296
  class CreateMeetingRequest < Struct.new(
@@ -293,7 +299,8 @@ module Aws::ChimeSDKMeetings
293
299
  :meeting_host_id,
294
300
  :external_meeting_id,
295
301
  :notifications_configuration,
296
- :meeting_features)
302
+ :meeting_features,
303
+ :primary_meeting_id)
297
304
  SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
298
305
  include Aws::Structure
299
306
  end
@@ -334,6 +341,7 @@ module Aws::ChimeSDKMeetings
334
341
  # external_user_id: "ExternalUserId", # required
335
342
  # },
336
343
  # ],
344
+ # primary_meeting_id: "PrimaryMeetingId",
337
345
  # }
338
346
  #
339
347
  # @!attribute [rw] client_request_token
@@ -379,6 +387,11 @@ module Aws::ChimeSDKMeetings
379
387
  # The attendee information, including attendees' IDs and join tokens.
380
388
  # @return [Array<Types::CreateAttendeeRequestItem>]
381
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
+ #
382
395
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendeesRequest AWS API Documentation
383
396
  #
384
397
  class CreateMeetingWithAttendeesRequest < Struct.new(
@@ -388,7 +401,8 @@ module Aws::ChimeSDKMeetings
388
401
  :external_meeting_id,
389
402
  :meeting_features,
390
403
  :notifications_configuration,
391
- :attendees)
404
+ :attendees,
405
+ :primary_meeting_id)
392
406
  SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
393
407
  include Aws::Structure
394
408
  end
@@ -883,6 +897,11 @@ module Aws::ChimeSDKMeetings
883
897
  # The features available to a meeting, such as Amazon Voice Focus.
884
898
  # @return [Types::MeetingFeaturesConfiguration]
885
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
+ #
886
905
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Meeting AWS API Documentation
887
906
  #
888
907
  class Meeting < Struct.new(
@@ -891,7 +910,8 @@ module Aws::ChimeSDKMeetings
891
910
  :external_meeting_id,
892
911
  :media_region,
893
912
  :media_placement,
894
- :meeting_features)
913
+ :meeting_features,
914
+ :primary_meeting_id)
895
915
  SENSITIVE = [:meeting_host_id, :external_meeting_id]
896
916
  include Aws::Structure
897
917
  end
@@ -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.8.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.8.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-03-07 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