aws-sdk-chimesdkmeetings 1.8.0 → 1.11.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: a7f7eb46a5cee5b9644b5348bd411382ff4a4d089021502add2ad469ec294531
4
+ data.tar.gz: 870ce92f4fbf5f61f0d6e6d082205a58c18ffd25a4d209d787f131b190cba64c
5
5
  SHA512:
6
- metadata.gz: 63043dd938ac361f681309a5a7cf1959dc107fdaa6e0c258b827114ab38dacda4df3190546a88523879205697a528dc4dd467a16c69ce1815ddae3d3c9321afe
7
- data.tar.gz: 0fd78e0f1ddf861b73d64d653d021a00c9084f6a39cf009954dce4aa1114b84863159126e90bdef9f1e2a278064a317759b952feee658786b0746c4af29b88f2
6
+ metadata.gz: 064d7bdc5afecd4653cf669d3d3c882ab078d8099be2ef119522fdcd83537d68a1b22c20925e8790e75ae33c47257117490e8d9a1410fa389c406671d53c1583
7
+ data.tar.gz: ba671298a994fd224b328789384994d66ff735702f1ceb2dffe1f53f86afe620bb80a372442ae2807506398297188eeb1f7f24179995f03b8d690ba5d2198ed2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2022-06-01)
5
+ ------------------
6
+
7
+ * Feature - Adds support for centrally controlling each participant's ability to send and receive audio, video and screen share within a WebRTC session. Attendee capabilities can be specified when the attendee is created and updated during the session with the new BatchUpdateAttendeeCapabilitiesExcept API.
8
+
9
+ 1.10.0 (2022-04-22)
10
+ ------------------
11
+
12
+ * Feature - Include additional exceptions types.
13
+
14
+ 1.9.0 (2022-03-21)
15
+ ------------------
16
+
17
+ * 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
18
+
4
19
  1.8.0 (2022-03-07)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.11.0
@@ -378,6 +378,11 @@ module Aws::ChimeSDKMeetings
378
378
  # attendees: [ # required
379
379
  # {
380
380
  # external_user_id: "ExternalUserId", # required
381
+ # capabilities: {
382
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
383
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
384
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
385
+ # },
381
386
  # },
382
387
  # ],
383
388
  # })
@@ -388,6 +393,9 @@ module Aws::ChimeSDKMeetings
388
393
  # resp.attendees[0].external_user_id #=> String
389
394
  # resp.attendees[0].attendee_id #=> String
390
395
  # resp.attendees[0].join_token #=> String
396
+ # resp.attendees[0].capabilities.audio #=> String, one of "SendReceive", "Send", "Receive", "None"
397
+ # resp.attendees[0].capabilities.video #=> String, one of "SendReceive", "Send", "Receive", "None"
398
+ # resp.attendees[0].capabilities.content #=> String, one of "SendReceive", "Send", "Receive", "None"
391
399
  # resp.errors #=> Array
392
400
  # resp.errors[0].external_user_id #=> String
393
401
  # resp.errors[0].error_code #=> String
@@ -402,6 +410,47 @@ module Aws::ChimeSDKMeetings
402
410
  req.send_request(options)
403
411
  end
404
412
 
413
+ # Updates `AttendeeCapabilities` except the capabilities listed in an
414
+ # `ExcludedAttendeeIds` table.
415
+ #
416
+ # @option params [required, String] :meeting_id
417
+ # The ID of the meeting associated with the update request.
418
+ #
419
+ # @option params [required, Array<Types::AttendeeIdItem>] :excluded_attendee_ids
420
+ # The `AttendeeIDs` that you want to exclude from one or more
421
+ # capabilities.
422
+ #
423
+ # @option params [required, Types::AttendeeCapabilities] :capabilities
424
+ # The capabilities (`audio`, `video`, or `content`) that you want to
425
+ # update.
426
+ #
427
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
428
+ #
429
+ # @example Request syntax with placeholder values
430
+ #
431
+ # resp = client.batch_update_attendee_capabilities_except({
432
+ # meeting_id: "GuidString", # required
433
+ # excluded_attendee_ids: [ # required
434
+ # {
435
+ # attendee_id: "GuidString", # required
436
+ # },
437
+ # ],
438
+ # capabilities: { # required
439
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
440
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
441
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
442
+ # },
443
+ # })
444
+ #
445
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExcept AWS API Documentation
446
+ #
447
+ # @overload batch_update_attendee_capabilities_except(params = {})
448
+ # @param [Hash] params ({})
449
+ def batch_update_attendee_capabilities_except(params = {}, options = {})
450
+ req = build_request(:batch_update_attendee_capabilities_except, params)
451
+ req.send_request(options)
452
+ end
453
+
405
454
  # Creates a new attendee for an active Amazon Chime SDK meeting. For
406
455
  # more information about the Amazon Chime SDK, see [Using the Amazon
407
456
  # Chime SDK][1] in the *Amazon Chime Developer Guide*.
@@ -417,6 +466,11 @@ module Aws::ChimeSDKMeetings
417
466
  # The Amazon Chime SDK external user ID. An idempotency token. Links the
418
467
  # attendee to an identity managed by a builder application.
419
468
  #
469
+ # @option params [Types::AttendeeCapabilities] :capabilities
470
+ # The capabilities (`audio`, `video`, or `content`) that you want to
471
+ # grant an attendee. If you don't specify capabilities, all users have
472
+ # send and receive capabilities on all media channels by default.
473
+ #
420
474
  # @return [Types::CreateAttendeeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
421
475
  #
422
476
  # * {Types::CreateAttendeeResponse#attendee #attendee} => Types::Attendee
@@ -426,6 +480,11 @@ module Aws::ChimeSDKMeetings
426
480
  # resp = client.create_attendee({
427
481
  # meeting_id: "GuidString", # required
428
482
  # external_user_id: "ExternalUserId", # required
483
+ # capabilities: {
484
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
485
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
486
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
487
+ # },
429
488
  # })
430
489
  #
431
490
  # @example Response structure
@@ -433,6 +492,9 @@ module Aws::ChimeSDKMeetings
433
492
  # resp.attendee.external_user_id #=> String
434
493
  # resp.attendee.attendee_id #=> String
435
494
  # resp.attendee.join_token #=> String
495
+ # resp.attendee.capabilities.audio #=> String, one of "SendReceive", "Send", "Receive", "None"
496
+ # resp.attendee.capabilities.video #=> String, one of "SendReceive", "Send", "Receive", "None"
497
+ # resp.attendee.capabilities.content #=> String, one of "SendReceive", "Send", "Receive", "None"
436
498
  #
437
499
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateAttendee AWS API Documentation
438
500
  #
@@ -487,6 +549,10 @@ module Aws::ChimeSDKMeetings
487
549
  # Lists the audio and video features enabled for a meeting, such as echo
488
550
  # reduction.
489
551
  #
552
+ # @option params [String] :primary_meeting_id
553
+ # When specified, replicates the media from the primary meeting to the
554
+ # new meeting.
555
+ #
490
556
  # @return [Types::CreateMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
491
557
  #
492
558
  # * {Types::CreateMeetingResponse#meeting #meeting} => Types::Meeting
@@ -508,6 +574,7 @@ module Aws::ChimeSDKMeetings
508
574
  # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
509
575
  # },
510
576
  # },
577
+ # primary_meeting_id: "PrimaryMeetingId",
511
578
  # })
512
579
  #
513
580
  # @example Response structure
@@ -525,6 +592,7 @@ module Aws::ChimeSDKMeetings
525
592
  # resp.meeting.media_placement.screen_sharing_url #=> String
526
593
  # resp.meeting.media_placement.event_ingestion_url #=> String
527
594
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
595
+ # resp.meeting.primary_meeting_id #=> String
528
596
  #
529
597
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeeting AWS API Documentation
530
598
  #
@@ -582,6 +650,10 @@ module Aws::ChimeSDKMeetings
582
650
  # @option params [required, Array<Types::CreateAttendeeRequestItem>] :attendees
583
651
  # The attendee information, including attendees' IDs and join tokens.
584
652
  #
653
+ # @option params [String] :primary_meeting_id
654
+ # When specified, replicates the media from the primary meeting to the
655
+ # new meeting.
656
+ #
585
657
  # @return [Types::CreateMeetingWithAttendeesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
586
658
  #
587
659
  # * {Types::CreateMeetingWithAttendeesResponse#meeting #meeting} => Types::Meeting
@@ -608,8 +680,14 @@ module Aws::ChimeSDKMeetings
608
680
  # attendees: [ # required
609
681
  # {
610
682
  # external_user_id: "ExternalUserId", # required
683
+ # capabilities: {
684
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
685
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
686
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
687
+ # },
611
688
  # },
612
689
  # ],
690
+ # primary_meeting_id: "PrimaryMeetingId",
613
691
  # })
614
692
  #
615
693
  # @example Response structure
@@ -627,10 +705,14 @@ module Aws::ChimeSDKMeetings
627
705
  # resp.meeting.media_placement.screen_sharing_url #=> String
628
706
  # resp.meeting.media_placement.event_ingestion_url #=> String
629
707
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
708
+ # resp.meeting.primary_meeting_id #=> String
630
709
  # resp.attendees #=> Array
631
710
  # resp.attendees[0].external_user_id #=> String
632
711
  # resp.attendees[0].attendee_id #=> String
633
712
  # resp.attendees[0].join_token #=> String
713
+ # resp.attendees[0].capabilities.audio #=> String, one of "SendReceive", "Send", "Receive", "None"
714
+ # resp.attendees[0].capabilities.video #=> String, one of "SendReceive", "Send", "Receive", "None"
715
+ # resp.attendees[0].capabilities.content #=> String, one of "SendReceive", "Send", "Receive", "None"
634
716
  # resp.errors #=> Array
635
717
  # resp.errors[0].external_user_id #=> String
636
718
  # resp.errors[0].error_code #=> String
@@ -739,6 +821,9 @@ module Aws::ChimeSDKMeetings
739
821
  # resp.attendee.external_user_id #=> String
740
822
  # resp.attendee.attendee_id #=> String
741
823
  # resp.attendee.join_token #=> String
824
+ # resp.attendee.capabilities.audio #=> String, one of "SendReceive", "Send", "Receive", "None"
825
+ # resp.attendee.capabilities.video #=> String, one of "SendReceive", "Send", "Receive", "None"
826
+ # resp.attendee.capabilities.content #=> String, one of "SendReceive", "Send", "Receive", "None"
742
827
  #
743
828
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetAttendee AWS API Documentation
744
829
  #
@@ -785,6 +870,7 @@ module Aws::ChimeSDKMeetings
785
870
  # resp.meeting.media_placement.screen_sharing_url #=> String
786
871
  # resp.meeting.media_placement.event_ingestion_url #=> String
787
872
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
873
+ # resp.meeting.primary_meeting_id #=> String
788
874
  #
789
875
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetMeeting AWS API Documentation
790
876
  #
@@ -833,6 +919,9 @@ module Aws::ChimeSDKMeetings
833
919
  # resp.attendees[0].external_user_id #=> String
834
920
  # resp.attendees[0].attendee_id #=> String
835
921
  # resp.attendees[0].join_token #=> String
922
+ # resp.attendees[0].capabilities.audio #=> String, one of "SendReceive", "Send", "Receive", "None"
923
+ # resp.attendees[0].capabilities.video #=> String, one of "SendReceive", "Send", "Receive", "None"
924
+ # resp.attendees[0].capabilities.content #=> String, one of "SendReceive", "Send", "Receive", "None"
836
925
  # resp.next_token #=> String
837
926
  #
838
927
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ListAttendees AWS API Documentation
@@ -919,6 +1008,51 @@ module Aws::ChimeSDKMeetings
919
1008
  req.send_request(options)
920
1009
  end
921
1010
 
1011
+ # The capabilties that you want to update.
1012
+ #
1013
+ # @option params [required, String] :meeting_id
1014
+ # The ID of the meeting associated with the update request.
1015
+ #
1016
+ # @option params [required, String] :attendee_id
1017
+ # The ID of the attendee associated with the update request.
1018
+ #
1019
+ # @option params [required, Types::AttendeeCapabilities] :capabilities
1020
+ # The capabilties that you want to update.
1021
+ #
1022
+ # @return [Types::UpdateAttendeeCapabilitiesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1023
+ #
1024
+ # * {Types::UpdateAttendeeCapabilitiesResponse#attendee #attendee} => Types::Attendee
1025
+ #
1026
+ # @example Request syntax with placeholder values
1027
+ #
1028
+ # resp = client.update_attendee_capabilities({
1029
+ # meeting_id: "GuidString", # required
1030
+ # attendee_id: "GuidString", # required
1031
+ # capabilities: { # required
1032
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1033
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1034
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1035
+ # },
1036
+ # })
1037
+ #
1038
+ # @example Response structure
1039
+ #
1040
+ # resp.attendee.external_user_id #=> String
1041
+ # resp.attendee.attendee_id #=> String
1042
+ # resp.attendee.join_token #=> String
1043
+ # resp.attendee.capabilities.audio #=> String, one of "SendReceive", "Send", "Receive", "None"
1044
+ # resp.attendee.capabilities.video #=> String, one of "SendReceive", "Send", "Receive", "None"
1045
+ # resp.attendee.capabilities.content #=> String, one of "SendReceive", "Send", "Receive", "None"
1046
+ #
1047
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilities AWS API Documentation
1048
+ #
1049
+ # @overload update_attendee_capabilities(params = {})
1050
+ # @param [Hash] params ({})
1051
+ def update_attendee_capabilities(params = {}, options = {})
1052
+ req = build_request(:update_attendee_capabilities, params)
1053
+ req.send_request(options)
1054
+ end
1055
+
922
1056
  # @!endgroup
923
1057
 
924
1058
  # @param params ({})
@@ -932,7 +1066,7 @@ module Aws::ChimeSDKMeetings
932
1066
  params: params,
933
1067
  config: config)
934
1068
  context[:gem_name] = 'aws-sdk-chimesdkmeetings'
935
- context[:gem_version] = '1.8.0'
1069
+ context[:gem_version] = '1.11.0'
936
1070
  Seahorse::Client::Request.new(handlers, context)
937
1071
  end
938
1072
 
@@ -15,14 +15,19 @@ module Aws::ChimeSDKMeetings
15
15
 
16
16
  Arn = Shapes::StringShape.new(name: 'Arn')
17
17
  Attendee = Shapes::StructureShape.new(name: 'Attendee')
18
+ AttendeeCapabilities = Shapes::StructureShape.new(name: 'AttendeeCapabilities')
19
+ AttendeeIdItem = Shapes::StructureShape.new(name: 'AttendeeIdItem')
20
+ AttendeeIdsList = Shapes::ListShape.new(name: 'AttendeeIdsList')
18
21
  AttendeeList = Shapes::ListShape.new(name: 'AttendeeList')
19
22
  AudioFeatures = Shapes::StructureShape.new(name: 'AudioFeatures')
20
23
  BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
21
24
  BatchCreateAttendeeErrorList = Shapes::ListShape.new(name: 'BatchCreateAttendeeErrorList')
22
25
  BatchCreateAttendeeRequest = Shapes::StructureShape.new(name: 'BatchCreateAttendeeRequest')
23
26
  BatchCreateAttendeeResponse = Shapes::StructureShape.new(name: 'BatchCreateAttendeeResponse')
27
+ BatchUpdateAttendeeCapabilitiesExceptRequest = Shapes::StructureShape.new(name: 'BatchUpdateAttendeeCapabilitiesExceptRequest')
24
28
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
25
29
  ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
30
+ ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
26
31
  CreateAttendeeError = Shapes::StructureShape.new(name: 'CreateAttendeeError')
27
32
  CreateAttendeeRequest = Shapes::StructureShape.new(name: 'CreateAttendeeRequest')
28
33
  CreateAttendeeRequestItem = Shapes::StructureShape.new(name: 'CreateAttendeeRequestItem')
@@ -49,6 +54,7 @@ module Aws::ChimeSDKMeetings
49
54
  LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
50
55
  ListAttendeesRequest = Shapes::StructureShape.new(name: 'ListAttendeesRequest')
51
56
  ListAttendeesResponse = Shapes::StructureShape.new(name: 'ListAttendeesResponse')
57
+ MediaCapabilities = Shapes::StringShape.new(name: 'MediaCapabilities')
52
58
  MediaPlacement = Shapes::StructureShape.new(name: 'MediaPlacement')
53
59
  MediaRegion = Shapes::StringShape.new(name: 'MediaRegion')
54
60
  Meeting = Shapes::StructureShape.new(name: 'Meeting')
@@ -56,12 +62,15 @@ module Aws::ChimeSDKMeetings
56
62
  MeetingFeaturesConfiguration = Shapes::StructureShape.new(name: 'MeetingFeaturesConfiguration')
57
63
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
58
64
  NotificationsConfiguration = Shapes::StructureShape.new(name: 'NotificationsConfiguration')
65
+ PrimaryMeetingId = Shapes::StringShape.new(name: 'PrimaryMeetingId')
59
66
  ResultMax = Shapes::IntegerShape.new(name: 'ResultMax')
60
67
  RetryAfterSeconds = Shapes::StringShape.new(name: 'RetryAfterSeconds')
68
+ ServiceFailureException = Shapes::StructureShape.new(name: 'ServiceFailureException')
61
69
  ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
62
70
  StartMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionRequest')
63
71
  StopMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StopMeetingTranscriptionRequest')
64
72
  String = Shapes::StringShape.new(name: 'String')
73
+ ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
65
74
  TranscribeContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeContentIdentificationType')
66
75
  TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
67
76
  TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
@@ -79,12 +88,25 @@ module Aws::ChimeSDKMeetings
79
88
  TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
80
89
  UnauthorizedException = Shapes::StructureShape.new(name: 'UnauthorizedException')
81
90
  UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
91
+ UpdateAttendeeCapabilitiesRequest = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesRequest')
92
+ UpdateAttendeeCapabilitiesResponse = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesResponse')
82
93
 
83
94
  Attendee.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "ExternalUserId"))
84
95
  Attendee.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "AttendeeId"))
85
96
  Attendee.add_member(:join_token, Shapes::ShapeRef.new(shape: JoinTokenString, location_name: "JoinToken"))
97
+ Attendee.add_member(:capabilities, Shapes::ShapeRef.new(shape: AttendeeCapabilities, location_name: "Capabilities"))
86
98
  Attendee.struct_class = Types::Attendee
87
99
 
100
+ AttendeeCapabilities.add_member(:audio, Shapes::ShapeRef.new(shape: MediaCapabilities, required: true, location_name: "Audio"))
101
+ AttendeeCapabilities.add_member(:video, Shapes::ShapeRef.new(shape: MediaCapabilities, required: true, location_name: "Video"))
102
+ AttendeeCapabilities.add_member(:content, Shapes::ShapeRef.new(shape: MediaCapabilities, required: true, location_name: "Content"))
103
+ AttendeeCapabilities.struct_class = Types::AttendeeCapabilities
104
+
105
+ AttendeeIdItem.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location_name: "AttendeeId"))
106
+ AttendeeIdItem.struct_class = Types::AttendeeIdItem
107
+
108
+ AttendeeIdsList.member = Shapes::ShapeRef.new(shape: AttendeeIdItem)
109
+
88
110
  AttendeeList.member = Shapes::ShapeRef.new(shape: Attendee)
89
111
 
90
112
  AudioFeatures.add_member(:echo_reduction, Shapes::ShapeRef.new(shape: MeetingFeatureStatus, location_name: "EchoReduction"))
@@ -105,6 +127,16 @@ module Aws::ChimeSDKMeetings
105
127
  BatchCreateAttendeeResponse.add_member(:errors, Shapes::ShapeRef.new(shape: BatchCreateAttendeeErrorList, location_name: "Errors"))
106
128
  BatchCreateAttendeeResponse.struct_class = Types::BatchCreateAttendeeResponse
107
129
 
130
+ BatchUpdateAttendeeCapabilitiesExceptRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
131
+ BatchUpdateAttendeeCapabilitiesExceptRequest.add_member(:excluded_attendee_ids, Shapes::ShapeRef.new(shape: AttendeeIdsList, required: true, location_name: "ExcludedAttendeeIds"))
132
+ BatchUpdateAttendeeCapabilitiesExceptRequest.add_member(:capabilities, Shapes::ShapeRef.new(shape: AttendeeCapabilities, required: true, location_name: "Capabilities"))
133
+ BatchUpdateAttendeeCapabilitiesExceptRequest.struct_class = Types::BatchUpdateAttendeeCapabilitiesExceptRequest
134
+
135
+ ConflictException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
136
+ ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
137
+ ConflictException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
138
+ ConflictException.struct_class = Types::ConflictException
139
+
108
140
  CreateAttendeeError.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "ExternalUserId"))
109
141
  CreateAttendeeError.add_member(:error_code, Shapes::ShapeRef.new(shape: String, location_name: "ErrorCode"))
110
142
  CreateAttendeeError.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
@@ -112,9 +144,11 @@ module Aws::ChimeSDKMeetings
112
144
 
113
145
  CreateAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
114
146
  CreateAttendeeRequest.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, required: true, location_name: "ExternalUserId"))
147
+ CreateAttendeeRequest.add_member(:capabilities, Shapes::ShapeRef.new(shape: AttendeeCapabilities, location_name: "Capabilities"))
115
148
  CreateAttendeeRequest.struct_class = Types::CreateAttendeeRequest
116
149
 
117
150
  CreateAttendeeRequestItem.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, required: true, location_name: "ExternalUserId"))
151
+ CreateAttendeeRequestItem.add_member(:capabilities, Shapes::ShapeRef.new(shape: AttendeeCapabilities, location_name: "Capabilities"))
118
152
  CreateAttendeeRequestItem.struct_class = Types::CreateAttendeeRequestItem
119
153
 
120
154
  CreateAttendeeRequestItemList.member = Shapes::ShapeRef.new(shape: CreateAttendeeRequestItem)
@@ -128,6 +162,7 @@ module Aws::ChimeSDKMeetings
128
162
  CreateMeetingRequest.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingId, required: true, location_name: "ExternalMeetingId"))
129
163
  CreateMeetingRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
130
164
  CreateMeetingRequest.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
165
+ CreateMeetingRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
131
166
  CreateMeetingRequest.struct_class = Types::CreateMeetingRequest
132
167
 
133
168
  CreateMeetingResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
@@ -140,6 +175,7 @@ module Aws::ChimeSDKMeetings
140
175
  CreateMeetingWithAttendeesRequest.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
141
176
  CreateMeetingWithAttendeesRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
142
177
  CreateMeetingWithAttendeesRequest.add_member(:attendees, Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesRequestItemList, required: true, location_name: "Attendees"))
178
+ CreateMeetingWithAttendeesRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
143
179
  CreateMeetingWithAttendeesRequest.struct_class = Types::CreateMeetingWithAttendeesRequest
144
180
 
145
181
  CreateMeetingWithAttendeesRequestItemList.member = Shapes::ShapeRef.new(shape: CreateAttendeeRequestItem)
@@ -228,6 +264,7 @@ module Aws::ChimeSDKMeetings
228
264
  Meeting.add_member(:media_region, Shapes::ShapeRef.new(shape: MediaRegion, location_name: "MediaRegion"))
229
265
  Meeting.add_member(:media_placement, Shapes::ShapeRef.new(shape: MediaPlacement, location_name: "MediaPlacement"))
230
266
  Meeting.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
267
+ Meeting.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
231
268
  Meeting.struct_class = Types::Meeting
232
269
 
233
270
  MeetingFeaturesConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioFeatures, location_name: "Audio"))
@@ -243,6 +280,11 @@ module Aws::ChimeSDKMeetings
243
280
  NotificationsConfiguration.add_member(:sqs_queue_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SqsQueueArn"))
244
281
  NotificationsConfiguration.struct_class = Types::NotificationsConfiguration
245
282
 
283
+ ServiceFailureException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
284
+ ServiceFailureException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
285
+ ServiceFailureException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
286
+ ServiceFailureException.struct_class = Types::ServiceFailureException
287
+
246
288
  ServiceUnavailableException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
247
289
  ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
248
290
  ServiceUnavailableException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
@@ -256,6 +298,11 @@ module Aws::ChimeSDKMeetings
256
298
  StopMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
257
299
  StopMeetingTranscriptionRequest.struct_class = Types::StopMeetingTranscriptionRequest
258
300
 
301
+ ThrottlingException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
302
+ ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
303
+ ThrottlingException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
304
+ ThrottlingException.struct_class = Types::ThrottlingException
305
+
259
306
  TranscriptionConfiguration.add_member(:engine_transcribe_settings, Shapes::ShapeRef.new(shape: EngineTranscribeSettings, location_name: "EngineTranscribeSettings"))
260
307
  TranscriptionConfiguration.add_member(:engine_transcribe_medical_settings, Shapes::ShapeRef.new(shape: EngineTranscribeMedicalSettings, location_name: "EngineTranscribeMedicalSettings"))
261
308
  TranscriptionConfiguration.struct_class = Types::TranscriptionConfiguration
@@ -270,6 +317,14 @@ module Aws::ChimeSDKMeetings
270
317
  UnprocessableEntityException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
271
318
  UnprocessableEntityException.struct_class = Types::UnprocessableEntityException
272
319
 
320
+ UpdateAttendeeCapabilitiesRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
321
+ UpdateAttendeeCapabilitiesRequest.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "AttendeeId"))
322
+ UpdateAttendeeCapabilitiesRequest.add_member(:capabilities, Shapes::ShapeRef.new(shape: AttendeeCapabilities, required: true, location_name: "Capabilities"))
323
+ UpdateAttendeeCapabilitiesRequest.struct_class = Types::UpdateAttendeeCapabilitiesRequest
324
+
325
+ UpdateAttendeeCapabilitiesResponse.add_member(:attendee, Shapes::ShapeRef.new(shape: Attendee, location_name: "Attendee"))
326
+ UpdateAttendeeCapabilitiesResponse.struct_class = Types::UpdateAttendeeCapabilitiesResponse
327
+
273
328
 
274
329
  # @api private
275
330
  API = Seahorse::Model::Api.new.tap do |api|
@@ -294,11 +349,28 @@ module Aws::ChimeSDKMeetings
294
349
  o.input = Shapes::ShapeRef.new(shape: BatchCreateAttendeeRequest)
295
350
  o.output = Shapes::ShapeRef.new(shape: BatchCreateAttendeeResponse)
296
351
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
352
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
353
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
297
354
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
355
+ o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
356
+ o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
298
357
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
358
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
359
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
360
+ end)
361
+
362
+ api.add_operation(:batch_update_attendee_capabilities_except, Seahorse::Model::Operation.new.tap do |o|
363
+ o.name = "BatchUpdateAttendeeCapabilitiesExcept"
364
+ o.http_method = "PUT"
365
+ o.http_request_uri = "/meetings/{MeetingId}/attendees/capabilities?operation=batch-update-except"
366
+ o.input = Shapes::ShapeRef.new(shape: BatchUpdateAttendeeCapabilitiesExceptRequest)
367
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
368
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
369
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
370
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
299
371
  o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
300
372
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
301
- o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
373
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
302
374
  end)
303
375
 
304
376
  api.add_operation(:create_attendee, Seahorse::Model::Operation.new.tap do |o|
@@ -309,11 +381,13 @@ module Aws::ChimeSDKMeetings
309
381
  o.output = Shapes::ShapeRef.new(shape: CreateAttendeeResponse)
310
382
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
311
383
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
384
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
312
385
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
313
386
  o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
314
- o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
315
- o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
316
387
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
388
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
389
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
390
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
317
391
  end)
318
392
 
319
393
  api.add_operation(:create_meeting, Seahorse::Model::Operation.new.tap do |o|
@@ -323,8 +397,11 @@ module Aws::ChimeSDKMeetings
323
397
  o.input = Shapes::ShapeRef.new(shape: CreateMeetingRequest)
324
398
  o.output = Shapes::ShapeRef.new(shape: CreateMeetingResponse)
325
399
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
326
- o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
400
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
327
401
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
402
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
403
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
404
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
328
405
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
329
406
  end)
330
407
 
@@ -335,8 +412,11 @@ module Aws::ChimeSDKMeetings
335
412
  o.input = Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesRequest)
336
413
  o.output = Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesResponse)
337
414
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
338
- o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
415
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
339
416
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
417
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
418
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
419
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
340
420
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
341
421
  end)
342
422
 
@@ -346,8 +426,13 @@ module Aws::ChimeSDKMeetings
346
426
  o.http_request_uri = "/meetings/{MeetingId}/attendees/{AttendeeId}"
347
427
  o.input = Shapes::ShapeRef.new(shape: DeleteAttendeeRequest)
348
428
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
429
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
349
430
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
350
431
  o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
432
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
433
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
434
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
435
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
351
436
  end)
352
437
 
353
438
  api.add_operation(:delete_meeting, Seahorse::Model::Operation.new.tap do |o|
@@ -358,6 +443,11 @@ module Aws::ChimeSDKMeetings
358
443
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
359
444
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
360
445
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
446
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
447
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
448
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
449
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
450
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
361
451
  end)
362
452
 
363
453
  api.add_operation(:get_attendee, Seahorse::Model::Operation.new.tap do |o|
@@ -367,8 +457,12 @@ module Aws::ChimeSDKMeetings
367
457
  o.input = Shapes::ShapeRef.new(shape: GetAttendeeRequest)
368
458
  o.output = Shapes::ShapeRef.new(shape: GetAttendeeResponse)
369
459
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
370
- o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
371
460
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
461
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
462
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
463
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
464
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
465
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
372
466
  end)
373
467
 
374
468
  api.add_operation(:get_meeting, Seahorse::Model::Operation.new.tap do |o|
@@ -380,6 +474,10 @@ module Aws::ChimeSDKMeetings
380
474
  o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
381
475
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
382
476
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
477
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
478
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
479
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
480
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
383
481
  end)
384
482
 
385
483
  api.add_operation(:list_attendees, Seahorse::Model::Operation.new.tap do |o|
@@ -389,8 +487,12 @@ module Aws::ChimeSDKMeetings
389
487
  o.input = Shapes::ShapeRef.new(shape: ListAttendeesRequest)
390
488
  o.output = Shapes::ShapeRef.new(shape: ListAttendeesResponse)
391
489
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
392
- o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
393
490
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
491
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
492
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
493
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
494
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
495
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
394
496
  o[:pager] = Aws::Pager.new(
395
497
  limit_key: "max_results",
396
498
  tokens: {
@@ -411,7 +513,9 @@ module Aws::ChimeSDKMeetings
411
513
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
412
514
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
413
515
  o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
516
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
414
517
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
518
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
415
519
  end)
416
520
 
417
521
  api.add_operation(:stop_meeting_transcription, Seahorse::Model::Operation.new.tap do |o|
@@ -425,6 +529,22 @@ module Aws::ChimeSDKMeetings
425
529
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
426
530
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
427
531
  o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
532
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
533
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
534
+ o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
535
+ end)
536
+
537
+ api.add_operation(:update_attendee_capabilities, Seahorse::Model::Operation.new.tap do |o|
538
+ o.name = "UpdateAttendeeCapabilities"
539
+ o.http_method = "PUT"
540
+ o.http_request_uri = "/meetings/{MeetingId}/attendees/{AttendeeId}/capabilities"
541
+ o.input = Shapes::ShapeRef.new(shape: UpdateAttendeeCapabilitiesRequest)
542
+ o.output = Shapes::ShapeRef.new(shape: UpdateAttendeeCapabilitiesResponse)
543
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
544
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
545
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
546
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
547
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
428
548
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
429
549
  end)
430
550
  end
@@ -28,10 +28,13 @@ module Aws::ChimeSDKMeetings
28
28
  #
29
29
  # ## Error Classes
30
30
  # * {BadRequestException}
31
+ # * {ConflictException}
31
32
  # * {ForbiddenException}
32
33
  # * {LimitExceededException}
33
34
  # * {NotFoundException}
35
+ # * {ServiceFailureException}
34
36
  # * {ServiceUnavailableException}
37
+ # * {ThrottlingException}
35
38
  # * {UnauthorizedException}
36
39
  # * {UnprocessableEntityException}
37
40
  #
@@ -66,6 +69,31 @@ module Aws::ChimeSDKMeetings
66
69
  end
67
70
  end
68
71
 
72
+ class ConflictException < ServiceError
73
+
74
+ # @param [Seahorse::Client::RequestContext] context
75
+ # @param [String] message
76
+ # @param [Aws::ChimeSDKMeetings::Types::ConflictException] data
77
+ def initialize(context, message, data = Aws::EmptyStructure.new)
78
+ super(context, message, data)
79
+ end
80
+
81
+ # @return [String]
82
+ def code
83
+ @code || @data[:code]
84
+ end
85
+
86
+ # @return [String]
87
+ def message
88
+ @message || @data[:message]
89
+ end
90
+
91
+ # @return [String]
92
+ def request_id
93
+ @data[:request_id]
94
+ end
95
+ end
96
+
69
97
  class ForbiddenException < ServiceError
70
98
 
71
99
  # @param [Seahorse::Client::RequestContext] context
@@ -141,6 +169,31 @@ module Aws::ChimeSDKMeetings
141
169
  end
142
170
  end
143
171
 
172
+ class ServiceFailureException < ServiceError
173
+
174
+ # @param [Seahorse::Client::RequestContext] context
175
+ # @param [String] message
176
+ # @param [Aws::ChimeSDKMeetings::Types::ServiceFailureException] data
177
+ def initialize(context, message, data = Aws::EmptyStructure.new)
178
+ super(context, message, data)
179
+ end
180
+
181
+ # @return [String]
182
+ def code
183
+ @code || @data[:code]
184
+ end
185
+
186
+ # @return [String]
187
+ def message
188
+ @message || @data[:message]
189
+ end
190
+
191
+ # @return [String]
192
+ def request_id
193
+ @data[:request_id]
194
+ end
195
+ end
196
+
144
197
  class ServiceUnavailableException < ServiceError
145
198
 
146
199
  # @param [Seahorse::Client::RequestContext] context
@@ -171,6 +224,31 @@ module Aws::ChimeSDKMeetings
171
224
  end
172
225
  end
173
226
 
227
+ class ThrottlingException < ServiceError
228
+
229
+ # @param [Seahorse::Client::RequestContext] context
230
+ # @param [String] message
231
+ # @param [Aws::ChimeSDKMeetings::Types::ThrottlingException] data
232
+ def initialize(context, message, data = Aws::EmptyStructure.new)
233
+ super(context, message, data)
234
+ end
235
+
236
+ # @return [String]
237
+ def code
238
+ @code || @data[:code]
239
+ end
240
+
241
+ # @return [String]
242
+ def message
243
+ @message || @data[:message]
244
+ end
245
+
246
+ # @return [String]
247
+ def request_id
248
+ @data[:request_id]
249
+ end
250
+ end
251
+
174
252
  class UnauthorizedException < ServiceError
175
253
 
176
254
  # @param [Seahorse::Client::RequestContext] context
@@ -33,16 +33,76 @@ module Aws::ChimeSDKMeetings
33
33
  # The join token used by the Amazon Chime SDK attendee.
34
34
  # @return [String]
35
35
  #
36
+ # @!attribute [rw] capabilities
37
+ # The capabilities (audio, video, or content) assigned to an attendee.
38
+ # @return [Types::AttendeeCapabilities]
39
+ #
36
40
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Attendee AWS API Documentation
37
41
  #
38
42
  class Attendee < Struct.new(
39
43
  :external_user_id,
40
44
  :attendee_id,
41
- :join_token)
45
+ :join_token,
46
+ :capabilities)
42
47
  SENSITIVE = [:external_user_id, :join_token]
43
48
  include Aws::Structure
44
49
  end
45
50
 
51
+ # The media capabilities of an attendee, including audio, video and
52
+ # content.
53
+ #
54
+ # @note When making an API call, you may pass AttendeeCapabilities
55
+ # data as a hash:
56
+ #
57
+ # {
58
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
59
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
60
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
61
+ # }
62
+ #
63
+ # @!attribute [rw] audio
64
+ # The audio capability assigned to an attendee.
65
+ # @return [String]
66
+ #
67
+ # @!attribute [rw] video
68
+ # The video capability assigned to an attendee.
69
+ # @return [String]
70
+ #
71
+ # @!attribute [rw] content
72
+ # The content capability assigned to an attendee.
73
+ # @return [String]
74
+ #
75
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/AttendeeCapabilities AWS API Documentation
76
+ #
77
+ class AttendeeCapabilities < Struct.new(
78
+ :audio,
79
+ :video,
80
+ :content)
81
+ SENSITIVE = []
82
+ include Aws::Structure
83
+ end
84
+
85
+ # A structure that contains one or more attendee IDs.
86
+ #
87
+ # @note When making an API call, you may pass AttendeeIdItem
88
+ # data as a hash:
89
+ #
90
+ # {
91
+ # attendee_id: "GuidString", # required
92
+ # }
93
+ #
94
+ # @!attribute [rw] attendee_id
95
+ # A list of one or more attendee IDs.
96
+ # @return [String]
97
+ #
98
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/AttendeeIdItem AWS API Documentation
99
+ #
100
+ class AttendeeIdItem < Struct.new(
101
+ :attendee_id)
102
+ SENSITIVE = []
103
+ include Aws::Structure
104
+ end
105
+
46
106
  # An optional category of meeting features that contains audio-specific
47
107
  # configurations, such as operating parameters for Amazon Voice Focus.
48
108
  #
@@ -97,6 +157,11 @@ module Aws::ChimeSDKMeetings
97
157
  # attendees: [ # required
98
158
  # {
99
159
  # external_user_id: "ExternalUserId", # required
160
+ # capabilities: {
161
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
162
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
163
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
164
+ # },
100
165
  # },
101
166
  # ],
102
167
  # }
@@ -138,6 +203,68 @@ module Aws::ChimeSDKMeetings
138
203
  include Aws::Structure
139
204
  end
140
205
 
206
+ # @note When making an API call, you may pass BatchUpdateAttendeeCapabilitiesExceptRequest
207
+ # data as a hash:
208
+ #
209
+ # {
210
+ # meeting_id: "GuidString", # required
211
+ # excluded_attendee_ids: [ # required
212
+ # {
213
+ # attendee_id: "GuidString", # required
214
+ # },
215
+ # ],
216
+ # capabilities: { # required
217
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
218
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
219
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
220
+ # },
221
+ # }
222
+ #
223
+ # @!attribute [rw] meeting_id
224
+ # The ID of the meeting associated with the update request.
225
+ # @return [String]
226
+ #
227
+ # @!attribute [rw] excluded_attendee_ids
228
+ # The `AttendeeIDs` that you want to exclude from one or more
229
+ # capabilities.
230
+ # @return [Array<Types::AttendeeIdItem>]
231
+ #
232
+ # @!attribute [rw] capabilities
233
+ # The capabilities (`audio`, `video`, or `content`) that you want to
234
+ # update.
235
+ # @return [Types::AttendeeCapabilities]
236
+ #
237
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExceptRequest AWS API Documentation
238
+ #
239
+ class BatchUpdateAttendeeCapabilitiesExceptRequest < Struct.new(
240
+ :meeting_id,
241
+ :excluded_attendee_ids,
242
+ :capabilities)
243
+ SENSITIVE = []
244
+ include Aws::Structure
245
+ end
246
+
247
+ # Multiple instances of the same request have been made simultaneously.
248
+ #
249
+ # @!attribute [rw] code
250
+ # @return [String]
251
+ #
252
+ # @!attribute [rw] message
253
+ # @return [String]
254
+ #
255
+ # @!attribute [rw] request_id
256
+ # @return [String]
257
+ #
258
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ConflictException AWS API Documentation
259
+ #
260
+ class ConflictException < Struct.new(
261
+ :code,
262
+ :message,
263
+ :request_id)
264
+ SENSITIVE = []
265
+ include Aws::Structure
266
+ end
267
+
141
268
  # The list of errors returned when errors are encountered during the
142
269
  # BatchCreateAttendee and CreateAttendee actions. This includes external
143
270
  # user IDs, error codes, and error messages.
@@ -171,6 +298,11 @@ module Aws::ChimeSDKMeetings
171
298
  # {
172
299
  # meeting_id: "GuidString", # required
173
300
  # external_user_id: "ExternalUserId", # required
301
+ # capabilities: {
302
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
303
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
304
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
305
+ # },
174
306
  # }
175
307
  #
176
308
  # @!attribute [rw] meeting_id
@@ -182,11 +314,18 @@ module Aws::ChimeSDKMeetings
182
314
  # the attendee to an identity managed by a builder application.
183
315
  # @return [String]
184
316
  #
317
+ # @!attribute [rw] capabilities
318
+ # The capabilities (`audio`, `video`, or `content`) that you want to
319
+ # grant an attendee. If you don't specify capabilities, all users
320
+ # have send and receive capabilities on all media channels by default.
321
+ # @return [Types::AttendeeCapabilities]
322
+ #
185
323
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateAttendeeRequest AWS API Documentation
186
324
  #
187
325
  class CreateAttendeeRequest < Struct.new(
188
326
  :meeting_id,
189
- :external_user_id)
327
+ :external_user_id,
328
+ :capabilities)
190
329
  SENSITIVE = [:external_user_id]
191
330
  include Aws::Structure
192
331
  end
@@ -199,6 +338,11 @@ module Aws::ChimeSDKMeetings
199
338
  #
200
339
  # {
201
340
  # external_user_id: "ExternalUserId", # required
341
+ # capabilities: {
342
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
343
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
344
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
345
+ # },
202
346
  # }
203
347
  #
204
348
  # @!attribute [rw] external_user_id
@@ -206,10 +350,15 @@ module Aws::ChimeSDKMeetings
206
350
  # the attendee to an identity managed by a builder application.
207
351
  # @return [String]
208
352
  #
353
+ # @!attribute [rw] capabilities
354
+ # A list of one or more capabilities.
355
+ # @return [Types::AttendeeCapabilities]
356
+ #
209
357
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateAttendeeRequestItem AWS API Documentation
210
358
  #
211
359
  class CreateAttendeeRequestItem < Struct.new(
212
- :external_user_id)
360
+ :external_user_id,
361
+ :capabilities)
213
362
  SENSITIVE = [:external_user_id]
214
363
  include Aws::Structure
215
364
  end
@@ -244,6 +393,7 @@ module Aws::ChimeSDKMeetings
244
393
  # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
245
394
  # },
246
395
  # },
396
+ # primary_meeting_id: "PrimaryMeetingId",
247
397
  # }
248
398
  #
249
399
  # @!attribute [rw] client_request_token
@@ -285,6 +435,11 @@ module Aws::ChimeSDKMeetings
285
435
  # echo reduction.
286
436
  # @return [Types::MeetingFeaturesConfiguration]
287
437
  #
438
+ # @!attribute [rw] primary_meeting_id
439
+ # When specified, replicates the media from the primary meeting to the
440
+ # new meeting.
441
+ # @return [String]
442
+ #
288
443
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingRequest AWS API Documentation
289
444
  #
290
445
  class CreateMeetingRequest < Struct.new(
@@ -293,7 +448,8 @@ module Aws::ChimeSDKMeetings
293
448
  :meeting_host_id,
294
449
  :external_meeting_id,
295
450
  :notifications_configuration,
296
- :meeting_features)
451
+ :meeting_features,
452
+ :primary_meeting_id)
297
453
  SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
298
454
  include Aws::Structure
299
455
  end
@@ -332,8 +488,14 @@ module Aws::ChimeSDKMeetings
332
488
  # attendees: [ # required
333
489
  # {
334
490
  # external_user_id: "ExternalUserId", # required
491
+ # capabilities: {
492
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
493
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
494
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
495
+ # },
335
496
  # },
336
497
  # ],
498
+ # primary_meeting_id: "PrimaryMeetingId",
337
499
  # }
338
500
  #
339
501
  # @!attribute [rw] client_request_token
@@ -379,6 +541,11 @@ module Aws::ChimeSDKMeetings
379
541
  # The attendee information, including attendees' IDs and join tokens.
380
542
  # @return [Array<Types::CreateAttendeeRequestItem>]
381
543
  #
544
+ # @!attribute [rw] primary_meeting_id
545
+ # When specified, replicates the media from the primary meeting to the
546
+ # new meeting.
547
+ # @return [String]
548
+ #
382
549
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendeesRequest AWS API Documentation
383
550
  #
384
551
  class CreateMeetingWithAttendeesRequest < Struct.new(
@@ -388,7 +555,8 @@ module Aws::ChimeSDKMeetings
388
555
  :external_meeting_id,
389
556
  :meeting_features,
390
557
  :notifications_configuration,
391
- :attendees)
558
+ :attendees,
559
+ :primary_meeting_id)
392
560
  SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
393
561
  include Aws::Structure
394
562
  end
@@ -883,6 +1051,11 @@ module Aws::ChimeSDKMeetings
883
1051
  # The features available to a meeting, such as Amazon Voice Focus.
884
1052
  # @return [Types::MeetingFeaturesConfiguration]
885
1053
  #
1054
+ # @!attribute [rw] primary_meeting_id
1055
+ # When specified, replicates the media from the primary meeting to
1056
+ # this meeting.
1057
+ # @return [String]
1058
+ #
886
1059
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Meeting AWS API Documentation
887
1060
  #
888
1061
  class Meeting < Struct.new(
@@ -891,7 +1064,8 @@ module Aws::ChimeSDKMeetings
891
1064
  :external_meeting_id,
892
1065
  :media_region,
893
1066
  :media_placement,
894
- :meeting_features)
1067
+ :meeting_features,
1068
+ :primary_meeting_id)
895
1069
  SENSITIVE = [:meeting_host_id, :external_meeting_id]
896
1070
  include Aws::Structure
897
1071
  end
@@ -930,7 +1104,7 @@ module Aws::ChimeSDKMeetings
930
1104
  # @return [String]
931
1105
  #
932
1106
  # @!attribute [rw] request_id
933
- # The request id associated with the call responsible for the
1107
+ # The request ID associated with the call responsible for the
934
1108
  # exception.
935
1109
  # @return [String]
936
1110
  #
@@ -979,6 +1153,27 @@ module Aws::ChimeSDKMeetings
979
1153
  include Aws::Structure
980
1154
  end
981
1155
 
1156
+ # The service is currently unavailable.
1157
+ #
1158
+ # @!attribute [rw] code
1159
+ # @return [String]
1160
+ #
1161
+ # @!attribute [rw] message
1162
+ # @return [String]
1163
+ #
1164
+ # @!attribute [rw] request_id
1165
+ # @return [String]
1166
+ #
1167
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ServiceFailureException AWS API Documentation
1168
+ #
1169
+ class ServiceFailureException < Struct.new(
1170
+ :code,
1171
+ :message,
1172
+ :request_id)
1173
+ SENSITIVE = []
1174
+ include Aws::Structure
1175
+ end
1176
+
982
1177
  # The service is currently unavailable.
983
1178
  #
984
1179
  # @!attribute [rw] code
@@ -1078,6 +1273,27 @@ module Aws::ChimeSDKMeetings
1078
1273
  include Aws::Structure
1079
1274
  end
1080
1275
 
1276
+ # The number of requests exceeds the limit.
1277
+ #
1278
+ # @!attribute [rw] code
1279
+ # @return [String]
1280
+ #
1281
+ # @!attribute [rw] message
1282
+ # @return [String]
1283
+ #
1284
+ # @!attribute [rw] request_id
1285
+ # @return [String]
1286
+ #
1287
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ThrottlingException AWS API Documentation
1288
+ #
1289
+ class ThrottlingException < Struct.new(
1290
+ :code,
1291
+ :message,
1292
+ :request_id)
1293
+ SENSITIVE = []
1294
+ include Aws::Structure
1295
+ end
1296
+
1081
1297
  # The configuration for the current transcription operation. Must
1082
1298
  # contain `EngineTranscribeSettings` or
1083
1299
  # `EngineTranscribeMedicalSettings`.
@@ -1178,5 +1394,60 @@ module Aws::ChimeSDKMeetings
1178
1394
  include Aws::Structure
1179
1395
  end
1180
1396
 
1397
+ # @note When making an API call, you may pass UpdateAttendeeCapabilitiesRequest
1398
+ # data as a hash:
1399
+ #
1400
+ # {
1401
+ # meeting_id: "GuidString", # required
1402
+ # attendee_id: "GuidString", # required
1403
+ # capabilities: { # required
1404
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1405
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1406
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1407
+ # },
1408
+ # }
1409
+ #
1410
+ # @!attribute [rw] meeting_id
1411
+ # The ID of the meeting associated with the update request.
1412
+ # @return [String]
1413
+ #
1414
+ # @!attribute [rw] attendee_id
1415
+ # The ID of the attendee associated with the update request.
1416
+ # @return [String]
1417
+ #
1418
+ # @!attribute [rw] capabilities
1419
+ # The capabilties that you want to update.
1420
+ # @return [Types::AttendeeCapabilities]
1421
+ #
1422
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilitiesRequest AWS API Documentation
1423
+ #
1424
+ class UpdateAttendeeCapabilitiesRequest < Struct.new(
1425
+ :meeting_id,
1426
+ :attendee_id,
1427
+ :capabilities)
1428
+ SENSITIVE = []
1429
+ include Aws::Structure
1430
+ end
1431
+
1432
+ # @!attribute [rw] attendee
1433
+ # An Amazon Chime SDK meeting attendee. Includes a unique `AttendeeId`
1434
+ # and `JoinToken`. The `JoinToken` allows a client to authenticate and
1435
+ # join as the specified attendee. The `JoinToken` expires when the
1436
+ # meeting ends, or when DeleteAttendee is called. After that, the
1437
+ # attendee is unable to join the meeting.
1438
+ #
1439
+ # We recommend securely transferring each `JoinToken` from your server
1440
+ # application to the client so that no other client has access to the
1441
+ # token except for the one authorized to represent the attendee.
1442
+ # @return [Types::Attendee]
1443
+ #
1444
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilitiesResponse AWS API Documentation
1445
+ #
1446
+ class UpdateAttendeeCapabilitiesResponse < Struct.new(
1447
+ :attendee)
1448
+ SENSITIVE = []
1449
+ include Aws::Structure
1450
+ end
1451
+
1181
1452
  end
1182
1453
  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.11.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.11.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-06-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core