aws-sdk-chimesdkmeetings 1.9.0 → 1.12.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkmeetings/client.rb +123 -2
- data/lib/aws-sdk-chimesdkmeetings/client_api.rb +123 -7
- data/lib/aws-sdk-chimesdkmeetings/errors.rb +78 -0
- data/lib/aws-sdk-chimesdkmeetings/types.rb +258 -7
- data/lib/aws-sdk-chimesdkmeetings.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da0c2b46505d73c3c5f5bdab051d523a7ce60a6172aefa3ded6323b0772ba8e1
|
4
|
+
data.tar.gz: f6a608ce7c9074590d82aa3422fe989f25c48ea9dcd1135ea4677153916a3f3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 721ec5a39f42d9515831fc64391840f3e51b82cb012a7992b1c500e0892917beffb649df145fe4574bf1e17653b0f344b7f45d5513ffc7e7bcc86c1118b4a2ee
|
7
|
+
data.tar.gz: d80801783e05543713e95ee3e2cbf2a9adebed521f8313c412cf677db3ef9ae1dbdee1ca106a0a5c9e76e18e04d9b9e8ab5fb3533a6d7a1ed566a9d277644818
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.12.0 (2022-06-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds support for live transcription in AWS GovCloud (US) Regions.
|
8
|
+
|
9
|
+
1.11.0 (2022-06-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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.
|
13
|
+
|
14
|
+
1.10.0 (2022-04-22)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Include additional exceptions types.
|
18
|
+
|
4
19
|
1.9.0 (2022-03-21)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.12.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
|
#
|
@@ -618,6 +680,11 @@ module Aws::ChimeSDKMeetings
|
|
618
680
|
# attendees: [ # required
|
619
681
|
# {
|
620
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
|
+
# },
|
621
688
|
# },
|
622
689
|
# ],
|
623
690
|
# primary_meeting_id: "PrimaryMeetingId",
|
@@ -643,6 +710,9 @@ module Aws::ChimeSDKMeetings
|
|
643
710
|
# resp.attendees[0].external_user_id #=> String
|
644
711
|
# resp.attendees[0].attendee_id #=> String
|
645
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"
|
646
716
|
# resp.errors #=> Array
|
647
717
|
# resp.errors[0].external_user_id #=> String
|
648
718
|
# resp.errors[0].error_code #=> String
|
@@ -751,6 +821,9 @@ module Aws::ChimeSDKMeetings
|
|
751
821
|
# resp.attendee.external_user_id #=> String
|
752
822
|
# resp.attendee.attendee_id #=> String
|
753
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"
|
754
827
|
#
|
755
828
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetAttendee AWS API Documentation
|
756
829
|
#
|
@@ -846,6 +919,9 @@ module Aws::ChimeSDKMeetings
|
|
846
919
|
# resp.attendees[0].external_user_id #=> String
|
847
920
|
# resp.attendees[0].attendee_id #=> String
|
848
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"
|
849
925
|
# resp.next_token #=> String
|
850
926
|
#
|
851
927
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ListAttendees AWS API Documentation
|
@@ -879,7 +955,7 @@ module Aws::ChimeSDKMeetings
|
|
879
955
|
# vocabulary_filter_method: "remove", # accepts remove, mask, tag
|
880
956
|
# vocabulary_filter_name: "String",
|
881
957
|
# vocabulary_name: "String",
|
882
|
-
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
958
|
+
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto, us-gov-west-1
|
883
959
|
# enable_partial_results_stabilization: false,
|
884
960
|
# partial_results_stability: "low", # accepts low, medium, high
|
885
961
|
# content_identification_type: "PII", # accepts PII
|
@@ -932,6 +1008,51 @@ module Aws::ChimeSDKMeetings
|
|
932
1008
|
req.send_request(options)
|
933
1009
|
end
|
934
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
|
+
|
935
1056
|
# @!endgroup
|
936
1057
|
|
937
1058
|
# @param params ({})
|
@@ -945,7 +1066,7 @@ module Aws::ChimeSDKMeetings
|
|
945
1066
|
params: params,
|
946
1067
|
config: config)
|
947
1068
|
context[:gem_name] = 'aws-sdk-chimesdkmeetings'
|
948
|
-
context[:gem_version] = '1.
|
1069
|
+
context[:gem_version] = '1.12.0'
|
949
1070
|
Seahorse::Client::Request.new(handlers, context)
|
950
1071
|
end
|
951
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')
|
@@ -59,10 +65,12 @@ module Aws::ChimeSDKMeetings
|
|
59
65
|
PrimaryMeetingId = Shapes::StringShape.new(name: 'PrimaryMeetingId')
|
60
66
|
ResultMax = Shapes::IntegerShape.new(name: 'ResultMax')
|
61
67
|
RetryAfterSeconds = Shapes::StringShape.new(name: 'RetryAfterSeconds')
|
68
|
+
ServiceFailureException = Shapes::StructureShape.new(name: 'ServiceFailureException')
|
62
69
|
ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
|
63
70
|
StartMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionRequest')
|
64
71
|
StopMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StopMeetingTranscriptionRequest')
|
65
72
|
String = Shapes::StringShape.new(name: 'String')
|
73
|
+
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
66
74
|
TranscribeContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeContentIdentificationType')
|
67
75
|
TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
|
68
76
|
TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
|
@@ -80,12 +88,25 @@ module Aws::ChimeSDKMeetings
|
|
80
88
|
TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
|
81
89
|
UnauthorizedException = Shapes::StructureShape.new(name: 'UnauthorizedException')
|
82
90
|
UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
|
91
|
+
UpdateAttendeeCapabilitiesRequest = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesRequest')
|
92
|
+
UpdateAttendeeCapabilitiesResponse = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesResponse')
|
83
93
|
|
84
94
|
Attendee.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "ExternalUserId"))
|
85
95
|
Attendee.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "AttendeeId"))
|
86
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"))
|
87
98
|
Attendee.struct_class = Types::Attendee
|
88
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
|
+
|
89
110
|
AttendeeList.member = Shapes::ShapeRef.new(shape: Attendee)
|
90
111
|
|
91
112
|
AudioFeatures.add_member(:echo_reduction, Shapes::ShapeRef.new(shape: MeetingFeatureStatus, location_name: "EchoReduction"))
|
@@ -106,6 +127,16 @@ module Aws::ChimeSDKMeetings
|
|
106
127
|
BatchCreateAttendeeResponse.add_member(:errors, Shapes::ShapeRef.new(shape: BatchCreateAttendeeErrorList, location_name: "Errors"))
|
107
128
|
BatchCreateAttendeeResponse.struct_class = Types::BatchCreateAttendeeResponse
|
108
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
|
+
|
109
140
|
CreateAttendeeError.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "ExternalUserId"))
|
110
141
|
CreateAttendeeError.add_member(:error_code, Shapes::ShapeRef.new(shape: String, location_name: "ErrorCode"))
|
111
142
|
CreateAttendeeError.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
|
@@ -113,9 +144,11 @@ module Aws::ChimeSDKMeetings
|
|
113
144
|
|
114
145
|
CreateAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
115
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"))
|
116
148
|
CreateAttendeeRequest.struct_class = Types::CreateAttendeeRequest
|
117
149
|
|
118
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"))
|
119
152
|
CreateAttendeeRequestItem.struct_class = Types::CreateAttendeeRequestItem
|
120
153
|
|
121
154
|
CreateAttendeeRequestItemList.member = Shapes::ShapeRef.new(shape: CreateAttendeeRequestItem)
|
@@ -247,6 +280,11 @@ module Aws::ChimeSDKMeetings
|
|
247
280
|
NotificationsConfiguration.add_member(:sqs_queue_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SqsQueueArn"))
|
248
281
|
NotificationsConfiguration.struct_class = Types::NotificationsConfiguration
|
249
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
|
+
|
250
288
|
ServiceUnavailableException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
251
289
|
ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
252
290
|
ServiceUnavailableException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
@@ -260,6 +298,11 @@ module Aws::ChimeSDKMeetings
|
|
260
298
|
StopMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
261
299
|
StopMeetingTranscriptionRequest.struct_class = Types::StopMeetingTranscriptionRequest
|
262
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
|
+
|
263
306
|
TranscriptionConfiguration.add_member(:engine_transcribe_settings, Shapes::ShapeRef.new(shape: EngineTranscribeSettings, location_name: "EngineTranscribeSettings"))
|
264
307
|
TranscriptionConfiguration.add_member(:engine_transcribe_medical_settings, Shapes::ShapeRef.new(shape: EngineTranscribeMedicalSettings, location_name: "EngineTranscribeMedicalSettings"))
|
265
308
|
TranscriptionConfiguration.struct_class = Types::TranscriptionConfiguration
|
@@ -274,6 +317,14 @@ module Aws::ChimeSDKMeetings
|
|
274
317
|
UnprocessableEntityException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
275
318
|
UnprocessableEntityException.struct_class = Types::UnprocessableEntityException
|
276
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
|
+
|
277
328
|
|
278
329
|
# @api private
|
279
330
|
API = Seahorse::Model::Api.new.tap do |api|
|
@@ -298,11 +349,28 @@ module Aws::ChimeSDKMeetings
|
|
298
349
|
o.input = Shapes::ShapeRef.new(shape: BatchCreateAttendeeRequest)
|
299
350
|
o.output = Shapes::ShapeRef.new(shape: BatchCreateAttendeeResponse)
|
300
351
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
352
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
353
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
301
354
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
355
|
+
o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
|
356
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
302
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)
|
303
371
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
304
372
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
305
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
373
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
306
374
|
end)
|
307
375
|
|
308
376
|
api.add_operation(:create_attendee, Seahorse::Model::Operation.new.tap do |o|
|
@@ -313,11 +381,13 @@ module Aws::ChimeSDKMeetings
|
|
313
381
|
o.output = Shapes::ShapeRef.new(shape: CreateAttendeeResponse)
|
314
382
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
315
383
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
384
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
316
385
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
317
386
|
o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
|
318
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
319
|
-
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
320
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)
|
321
391
|
end)
|
322
392
|
|
323
393
|
api.add_operation(:create_meeting, Seahorse::Model::Operation.new.tap do |o|
|
@@ -327,8 +397,11 @@ module Aws::ChimeSDKMeetings
|
|
327
397
|
o.input = Shapes::ShapeRef.new(shape: CreateMeetingRequest)
|
328
398
|
o.output = Shapes::ShapeRef.new(shape: CreateMeetingResponse)
|
329
399
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
330
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
400
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
331
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)
|
332
405
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
333
406
|
end)
|
334
407
|
|
@@ -339,8 +412,11 @@ module Aws::ChimeSDKMeetings
|
|
339
412
|
o.input = Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesRequest)
|
340
413
|
o.output = Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesResponse)
|
341
414
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
342
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
415
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
343
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)
|
344
420
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
345
421
|
end)
|
346
422
|
|
@@ -350,8 +426,13 @@ module Aws::ChimeSDKMeetings
|
|
350
426
|
o.http_request_uri = "/meetings/{MeetingId}/attendees/{AttendeeId}"
|
351
427
|
o.input = Shapes::ShapeRef.new(shape: DeleteAttendeeRequest)
|
352
428
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
429
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
353
430
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
354
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)
|
355
436
|
end)
|
356
437
|
|
357
438
|
api.add_operation(:delete_meeting, Seahorse::Model::Operation.new.tap do |o|
|
@@ -362,6 +443,11 @@ module Aws::ChimeSDKMeetings
|
|
362
443
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
363
444
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
364
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)
|
365
451
|
end)
|
366
452
|
|
367
453
|
api.add_operation(:get_attendee, Seahorse::Model::Operation.new.tap do |o|
|
@@ -371,8 +457,12 @@ module Aws::ChimeSDKMeetings
|
|
371
457
|
o.input = Shapes::ShapeRef.new(shape: GetAttendeeRequest)
|
372
458
|
o.output = Shapes::ShapeRef.new(shape: GetAttendeeResponse)
|
373
459
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
374
|
-
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
375
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)
|
376
466
|
end)
|
377
467
|
|
378
468
|
api.add_operation(:get_meeting, Seahorse::Model::Operation.new.tap do |o|
|
@@ -384,6 +474,10 @@ module Aws::ChimeSDKMeetings
|
|
384
474
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
385
475
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
386
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)
|
387
481
|
end)
|
388
482
|
|
389
483
|
api.add_operation(:list_attendees, Seahorse::Model::Operation.new.tap do |o|
|
@@ -393,8 +487,12 @@ module Aws::ChimeSDKMeetings
|
|
393
487
|
o.input = Shapes::ShapeRef.new(shape: ListAttendeesRequest)
|
394
488
|
o.output = Shapes::ShapeRef.new(shape: ListAttendeesResponse)
|
395
489
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
396
|
-
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
397
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)
|
398
496
|
o[:pager] = Aws::Pager.new(
|
399
497
|
limit_key: "max_results",
|
400
498
|
tokens: {
|
@@ -415,7 +513,9 @@ module Aws::ChimeSDKMeetings
|
|
415
513
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
416
514
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
417
515
|
o.errors << Shapes::ShapeRef.new(shape: UnprocessableEntityException)
|
516
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
418
517
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
518
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
419
519
|
end)
|
420
520
|
|
421
521
|
api.add_operation(:stop_meeting_transcription, Seahorse::Model::Operation.new.tap do |o|
|
@@ -429,6 +529,22 @@ module Aws::ChimeSDKMeetings
|
|
429
529
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
430
530
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
431
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)
|
432
548
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
433
549
|
end)
|
434
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
|
@@ -339,6 +488,11 @@ module Aws::ChimeSDKMeetings
|
|
339
488
|
# attendees: [ # required
|
340
489
|
# {
|
341
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
|
+
# },
|
342
496
|
# },
|
343
497
|
# ],
|
344
498
|
# primary_meeting_id: "PrimaryMeetingId",
|
@@ -540,7 +694,7 @@ module Aws::ChimeSDKMeetings
|
|
540
694
|
# vocabulary_filter_method: "remove", # accepts remove, mask, tag
|
541
695
|
# vocabulary_filter_name: "String",
|
542
696
|
# vocabulary_name: "String",
|
543
|
-
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
697
|
+
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto, us-gov-west-1
|
544
698
|
# enable_partial_results_stabilization: false,
|
545
699
|
# partial_results_stability: "low", # accepts low, medium, high
|
546
700
|
# content_identification_type: "PII", # accepts PII
|
@@ -950,7 +1104,7 @@ module Aws::ChimeSDKMeetings
|
|
950
1104
|
# @return [String]
|
951
1105
|
#
|
952
1106
|
# @!attribute [rw] request_id
|
953
|
-
# The request
|
1107
|
+
# The request ID associated with the call responsible for the
|
954
1108
|
# exception.
|
955
1109
|
# @return [String]
|
956
1110
|
#
|
@@ -999,6 +1153,27 @@ module Aws::ChimeSDKMeetings
|
|
999
1153
|
include Aws::Structure
|
1000
1154
|
end
|
1001
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
|
+
|
1002
1177
|
# The service is currently unavailable.
|
1003
1178
|
#
|
1004
1179
|
# @!attribute [rw] code
|
@@ -1038,7 +1213,7 @@ module Aws::ChimeSDKMeetings
|
|
1038
1213
|
# vocabulary_filter_method: "remove", # accepts remove, mask, tag
|
1039
1214
|
# vocabulary_filter_name: "String",
|
1040
1215
|
# vocabulary_name: "String",
|
1041
|
-
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
1216
|
+
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto, us-gov-west-1
|
1042
1217
|
# enable_partial_results_stabilization: false,
|
1043
1218
|
# partial_results_stability: "low", # accepts low, medium, high
|
1044
1219
|
# content_identification_type: "PII", # accepts PII
|
@@ -1098,6 +1273,27 @@ module Aws::ChimeSDKMeetings
|
|
1098
1273
|
include Aws::Structure
|
1099
1274
|
end
|
1100
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
|
+
|
1101
1297
|
# The configuration for the current transcription operation. Must
|
1102
1298
|
# contain `EngineTranscribeSettings` or
|
1103
1299
|
# `EngineTranscribeMedicalSettings`.
|
@@ -1111,7 +1307,7 @@ module Aws::ChimeSDKMeetings
|
|
1111
1307
|
# vocabulary_filter_method: "remove", # accepts remove, mask, tag
|
1112
1308
|
# vocabulary_filter_name: "String",
|
1113
1309
|
# vocabulary_name: "String",
|
1114
|
-
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
1310
|
+
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto, us-gov-west-1
|
1115
1311
|
# enable_partial_results_stabilization: false,
|
1116
1312
|
# partial_results_stability: "low", # accepts low, medium, high
|
1117
1313
|
# content_identification_type: "PII", # accepts PII
|
@@ -1198,5 +1394,60 @@ module Aws::ChimeSDKMeetings
|
|
1198
1394
|
include Aws::Structure
|
1199
1395
|
end
|
1200
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
|
+
|
1201
1452
|
end
|
1202
1453
|
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.
|
4
|
+
version: 1.12.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-
|
11
|
+
date: 2022-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|