aws-sdk-chimesdkmeetings 1.10.0 → 1.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f377fd267016dc2663cb31495b2d2638540e5a28ad4dad066696f7e415d5f50c
4
- data.tar.gz: 10d85bd64ff64001a9a4cf5fa5ec5a1013c9f602ee136d955550ad077584a0fa
3
+ metadata.gz: 85b3efca392b3878971c66acbed160044b2be41a5ee635d77583c57d248f7ee4
4
+ data.tar.gz: 13477388aa37024f694583ec306663ba663a21526cc630c99a549e9e491e26ee
5
5
  SHA512:
6
- metadata.gz: 19abc3d0cf4ff691d1577595d143619c05f4c5d9341971dd76f66e59a2214d334ae52bbbf77ef903b17be2a023cb9f362cd3706a2a8e3bf68369508630d7cd9f
7
- data.tar.gz: 4dbb9e03420b71be32baec51f3ce98d0f3db9531ae763f4ed97e82360f816217791c90c3073f14d8260864b9d6a850e75cbf2d42f4967dd3f90bc9860ccb006b
6
+ metadata.gz: f94710ac506780f72488cb37893cb6bd2b576aba9e6f1ff12fe813efb07f2dcf3bb3e1188cb9d560eed8c836881a19bc146fad77edcd8a6c7bd7160d518ac595
7
+ data.tar.gz: a564d3e757289486c3f251706cb1ed49401b3bc3973ed53d2fcdfde6a3ea62db90901667118e25f75b4357d38b6517d6be5b378a56c8914b8064536189ffc498
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.13.0 (2022-07-07)
5
+ ------------------
6
+
7
+ * Feature - Adds support for AppKeys and TenantIds in Amazon Chime SDK WebRTC sessions
8
+
9
+ 1.12.0 (2022-06-09)
10
+ ------------------
11
+
12
+ * Feature - Adds support for live transcription in AWS GovCloud (US) Regions.
13
+
14
+ 1.11.0 (2022-06-01)
15
+ ------------------
16
+
17
+ * 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.
18
+
4
19
  1.10.0 (2022-04-22)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.13.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,73 @@ 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
+ # <note markdown="1"> You use the capabilities with a set of values that control what the
417
+ # capabilities can do, such as `SendReceive` data. For more information
418
+ # about those values, see .
419
+ #
420
+ # </note>
421
+ #
422
+ # When using capabilities, be aware of these corner cases:
423
+ #
424
+ # * You can't set `content` capabilities to `SendReceive` or `Receive`
425
+ # unless you also set `video` capabilities to `SendReceive` or
426
+ # `Receive`. If you don't set the `video` capability to receive, the
427
+ # response will contain an HTTP 400 Bad Request status code. However,
428
+ # you can set your `video` capability to receive and you set your
429
+ # `content` capability to not receive.
430
+ #
431
+ # * When you change an `audio` capability from `None` or `Receive` to
432
+ # `Send` or `SendReceive` , and if the attendee left their microphone
433
+ # unmuted, audio will flow from the attendee to the other meeting
434
+ # participants.
435
+ #
436
+ # * When you change a `video` or `content` capability from `None` or
437
+ # `Receive` to `Send` or `SendReceive` , and if the attendee turned on
438
+ # their video or content streams, remote attendess can receive those
439
+ # streams, but only after media renegotiation between the client and
440
+ # the Amazon Chime back-end server.
441
+ #
442
+ # @option params [required, String] :meeting_id
443
+ # The ID of the meeting associated with the update request.
444
+ #
445
+ # @option params [required, Array<Types::AttendeeIdItem>] :excluded_attendee_ids
446
+ # The `AttendeeIDs` that you want to exclude from one or more
447
+ # capabilities.
448
+ #
449
+ # @option params [required, Types::AttendeeCapabilities] :capabilities
450
+ # The capabilities (`audio`, `video`, or `content`) that you want to
451
+ # update.
452
+ #
453
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
454
+ #
455
+ # @example Request syntax with placeholder values
456
+ #
457
+ # resp = client.batch_update_attendee_capabilities_except({
458
+ # meeting_id: "GuidString", # required
459
+ # excluded_attendee_ids: [ # required
460
+ # {
461
+ # attendee_id: "GuidString", # required
462
+ # },
463
+ # ],
464
+ # capabilities: { # required
465
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
466
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
467
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
468
+ # },
469
+ # })
470
+ #
471
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExcept AWS API Documentation
472
+ #
473
+ # @overload batch_update_attendee_capabilities_except(params = {})
474
+ # @param [Hash] params ({})
475
+ def batch_update_attendee_capabilities_except(params = {}, options = {})
476
+ req = build_request(:batch_update_attendee_capabilities_except, params)
477
+ req.send_request(options)
478
+ end
479
+
405
480
  # Creates a new attendee for an active Amazon Chime SDK meeting. For
406
481
  # more information about the Amazon Chime SDK, see [Using the Amazon
407
482
  # Chime SDK][1] in the *Amazon Chime Developer Guide*.
@@ -417,6 +492,37 @@ module Aws::ChimeSDKMeetings
417
492
  # The Amazon Chime SDK external user ID. An idempotency token. Links the
418
493
  # attendee to an identity managed by a builder application.
419
494
  #
495
+ # @option params [Types::AttendeeCapabilities] :capabilities
496
+ # The capabilities (`audio`, `video`, or `content`) that you want to
497
+ # grant an attendee. If you don't specify capabilities, all users have
498
+ # send and receive capabilities on all media channels by default.
499
+ #
500
+ # <note markdown="1"> You use the capabilities with a set of values that control what the
501
+ # capabilities can do, such as `SendReceive` data. For more information
502
+ # about those values, see .
503
+ #
504
+ # </note>
505
+ #
506
+ # When using capabilities, be aware of these corner cases:
507
+ #
508
+ # * You can't set `content` capabilities to `SendReceive` or `Receive`
509
+ # unless you also set `video` capabilities to `SendReceive` or
510
+ # `Receive`. If you don't set the `video` capability to receive, the
511
+ # response will contain an HTTP 400 Bad Request status code. However,
512
+ # you can set your `video` capability to receive and you set your
513
+ # `content` capability to not receive.
514
+ #
515
+ # * When you change an `audio` capability from `None` or `Receive` to
516
+ # `Send` or `SendReceive` , and if the attendee left their microphone
517
+ # unmuted, audio will flow from the attendee to the other meeting
518
+ # participants.
519
+ #
520
+ # * When you change a `video` or `content` capability from `None` or
521
+ # `Receive` to `Send` or `SendReceive` , and if the attendee turned on
522
+ # their video or content streams, remote attendess can receive those
523
+ # streams, but only after media renegotiation between the client and
524
+ # the Amazon Chime back-end server.
525
+ #
420
526
  # @return [Types::CreateAttendeeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
421
527
  #
422
528
  # * {Types::CreateAttendeeResponse#attendee #attendee} => Types::Attendee
@@ -426,6 +532,11 @@ module Aws::ChimeSDKMeetings
426
532
  # resp = client.create_attendee({
427
533
  # meeting_id: "GuidString", # required
428
534
  # external_user_id: "ExternalUserId", # required
535
+ # capabilities: {
536
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
537
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
538
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
539
+ # },
429
540
  # })
430
541
  #
431
542
  # @example Response structure
@@ -433,6 +544,9 @@ module Aws::ChimeSDKMeetings
433
544
  # resp.attendee.external_user_id #=> String
434
545
  # resp.attendee.attendee_id #=> String
435
546
  # resp.attendee.join_token #=> String
547
+ # resp.attendee.capabilities.audio #=> String, one of "SendReceive", "Send", "Receive", "None"
548
+ # resp.attendee.capabilities.video #=> String, one of "SendReceive", "Send", "Receive", "None"
549
+ # resp.attendee.capabilities.content #=> String, one of "SendReceive", "Send", "Receive", "None"
436
550
  #
437
551
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateAttendee AWS API Documentation
438
552
  #
@@ -491,6 +605,10 @@ module Aws::ChimeSDKMeetings
491
605
  # When specified, replicates the media from the primary meeting to the
492
606
  # new meeting.
493
607
  #
608
+ # @option params [Array<String>] :tenant_ids
609
+ # A consistent and opaque identifier, created and maintained by the
610
+ # builder to represent a segment of their users.
611
+ #
494
612
  # @return [Types::CreateMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
495
613
  #
496
614
  # * {Types::CreateMeetingResponse#meeting #meeting} => Types::Meeting
@@ -513,6 +631,7 @@ module Aws::ChimeSDKMeetings
513
631
  # },
514
632
  # },
515
633
  # primary_meeting_id: "PrimaryMeetingId",
634
+ # tenant_ids: ["TenantId"],
516
635
  # })
517
636
  #
518
637
  # @example Response structure
@@ -531,6 +650,8 @@ module Aws::ChimeSDKMeetings
531
650
  # resp.meeting.media_placement.event_ingestion_url #=> String
532
651
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
533
652
  # resp.meeting.primary_meeting_id #=> String
653
+ # resp.meeting.tenant_ids #=> Array
654
+ # resp.meeting.tenant_ids[0] #=> String
534
655
  #
535
656
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeeting AWS API Documentation
536
657
  #
@@ -592,6 +713,10 @@ module Aws::ChimeSDKMeetings
592
713
  # When specified, replicates the media from the primary meeting to the
593
714
  # new meeting.
594
715
  #
716
+ # @option params [Array<String>] :tenant_ids
717
+ # A consistent and opaque identifier, created and maintained by the
718
+ # builder to represent a segment of their users.
719
+ #
595
720
  # @return [Types::CreateMeetingWithAttendeesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
596
721
  #
597
722
  # * {Types::CreateMeetingWithAttendeesResponse#meeting #meeting} => Types::Meeting
@@ -618,9 +743,15 @@ module Aws::ChimeSDKMeetings
618
743
  # attendees: [ # required
619
744
  # {
620
745
  # external_user_id: "ExternalUserId", # required
746
+ # capabilities: {
747
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
748
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
749
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
750
+ # },
621
751
  # },
622
752
  # ],
623
753
  # primary_meeting_id: "PrimaryMeetingId",
754
+ # tenant_ids: ["TenantId"],
624
755
  # })
625
756
  #
626
757
  # @example Response structure
@@ -639,10 +770,15 @@ module Aws::ChimeSDKMeetings
639
770
  # resp.meeting.media_placement.event_ingestion_url #=> String
640
771
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
641
772
  # resp.meeting.primary_meeting_id #=> String
773
+ # resp.meeting.tenant_ids #=> Array
774
+ # resp.meeting.tenant_ids[0] #=> String
642
775
  # resp.attendees #=> Array
643
776
  # resp.attendees[0].external_user_id #=> String
644
777
  # resp.attendees[0].attendee_id #=> String
645
778
  # resp.attendees[0].join_token #=> String
779
+ # resp.attendees[0].capabilities.audio #=> String, one of "SendReceive", "Send", "Receive", "None"
780
+ # resp.attendees[0].capabilities.video #=> String, one of "SendReceive", "Send", "Receive", "None"
781
+ # resp.attendees[0].capabilities.content #=> String, one of "SendReceive", "Send", "Receive", "None"
646
782
  # resp.errors #=> Array
647
783
  # resp.errors[0].external_user_id #=> String
648
784
  # resp.errors[0].error_code #=> String
@@ -751,6 +887,9 @@ module Aws::ChimeSDKMeetings
751
887
  # resp.attendee.external_user_id #=> String
752
888
  # resp.attendee.attendee_id #=> String
753
889
  # resp.attendee.join_token #=> String
890
+ # resp.attendee.capabilities.audio #=> String, one of "SendReceive", "Send", "Receive", "None"
891
+ # resp.attendee.capabilities.video #=> String, one of "SendReceive", "Send", "Receive", "None"
892
+ # resp.attendee.capabilities.content #=> String, one of "SendReceive", "Send", "Receive", "None"
754
893
  #
755
894
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetAttendee AWS API Documentation
756
895
  #
@@ -798,6 +937,8 @@ module Aws::ChimeSDKMeetings
798
937
  # resp.meeting.media_placement.event_ingestion_url #=> String
799
938
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
800
939
  # resp.meeting.primary_meeting_id #=> String
940
+ # resp.meeting.tenant_ids #=> Array
941
+ # resp.meeting.tenant_ids[0] #=> String
801
942
  #
802
943
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetMeeting AWS API Documentation
803
944
  #
@@ -846,6 +987,9 @@ module Aws::ChimeSDKMeetings
846
987
  # resp.attendees[0].external_user_id #=> String
847
988
  # resp.attendees[0].attendee_id #=> String
848
989
  # resp.attendees[0].join_token #=> String
990
+ # resp.attendees[0].capabilities.audio #=> String, one of "SendReceive", "Send", "Receive", "None"
991
+ # resp.attendees[0].capabilities.video #=> String, one of "SendReceive", "Send", "Receive", "None"
992
+ # resp.attendees[0].capabilities.content #=> String, one of "SendReceive", "Send", "Receive", "None"
849
993
  # resp.next_token #=> String
850
994
  #
851
995
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ListAttendees AWS API Documentation
@@ -879,7 +1023,7 @@ module Aws::ChimeSDKMeetings
879
1023
  # vocabulary_filter_method: "remove", # accepts remove, mask, tag
880
1024
  # vocabulary_filter_name: "String",
881
1025
  # 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
1026
+ # 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
1027
  # enable_partial_results_stabilization: false,
884
1028
  # partial_results_stability: "low", # accepts low, medium, high
885
1029
  # content_identification_type: "PII", # accepts PII
@@ -932,6 +1076,77 @@ module Aws::ChimeSDKMeetings
932
1076
  req.send_request(options)
933
1077
  end
934
1078
 
1079
+ # The capabilties that you want to update.
1080
+ #
1081
+ # <note markdown="1"> You use the capabilities with a set of values that control what the
1082
+ # capabilities can do, such as `SendReceive` data. For more information
1083
+ # about those values, see .
1084
+ #
1085
+ # </note>
1086
+ #
1087
+ # When using capabilities, be aware of these corner cases:
1088
+ #
1089
+ # * You can't set `content` capabilities to `SendReceive` or `Receive`
1090
+ # unless you also set `video` capabilities to `SendReceive` or
1091
+ # `Receive`. If you don't set the `video` capability to receive, the
1092
+ # response will contain an HTTP 400 Bad Request status code. However,
1093
+ # you can set your `video` capability to receive and you set your
1094
+ # `content` capability to not receive.
1095
+ #
1096
+ # * When you change an `audio` capability from `None` or `Receive` to
1097
+ # `Send` or `SendReceive` , and if the attendee left their microphone
1098
+ # unmuted, audio will flow from the attendee to the other meeting
1099
+ # participants.
1100
+ #
1101
+ # * When you change a `video` or `content` capability from `None` or
1102
+ # `Receive` to `Send` or `SendReceive` , and if the attendee turned on
1103
+ # their video or content streams, remote attendess can receive those
1104
+ # streams, but only after media renegotiation between the client and
1105
+ # the Amazon Chime back-end server.
1106
+ #
1107
+ # @option params [required, String] :meeting_id
1108
+ # The ID of the meeting associated with the update request.
1109
+ #
1110
+ # @option params [required, String] :attendee_id
1111
+ # The ID of the attendee associated with the update request.
1112
+ #
1113
+ # @option params [required, Types::AttendeeCapabilities] :capabilities
1114
+ # The capabilties that you want to update.
1115
+ #
1116
+ # @return [Types::UpdateAttendeeCapabilitiesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1117
+ #
1118
+ # * {Types::UpdateAttendeeCapabilitiesResponse#attendee #attendee} => Types::Attendee
1119
+ #
1120
+ # @example Request syntax with placeholder values
1121
+ #
1122
+ # resp = client.update_attendee_capabilities({
1123
+ # meeting_id: "GuidString", # required
1124
+ # attendee_id: "GuidString", # required
1125
+ # capabilities: { # required
1126
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1127
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1128
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1129
+ # },
1130
+ # })
1131
+ #
1132
+ # @example Response structure
1133
+ #
1134
+ # resp.attendee.external_user_id #=> String
1135
+ # resp.attendee.attendee_id #=> String
1136
+ # resp.attendee.join_token #=> String
1137
+ # resp.attendee.capabilities.audio #=> String, one of "SendReceive", "Send", "Receive", "None"
1138
+ # resp.attendee.capabilities.video #=> String, one of "SendReceive", "Send", "Receive", "None"
1139
+ # resp.attendee.capabilities.content #=> String, one of "SendReceive", "Send", "Receive", "None"
1140
+ #
1141
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilities AWS API Documentation
1142
+ #
1143
+ # @overload update_attendee_capabilities(params = {})
1144
+ # @param [Hash] params ({})
1145
+ def update_attendee_capabilities(params = {}, options = {})
1146
+ req = build_request(:update_attendee_capabilities, params)
1147
+ req.send_request(options)
1148
+ end
1149
+
935
1150
  # @!endgroup
936
1151
 
937
1152
  # @param params ({})
@@ -945,7 +1160,7 @@ module Aws::ChimeSDKMeetings
945
1160
  params: params,
946
1161
  config: config)
947
1162
  context[:gem_name] = 'aws-sdk-chimesdkmeetings'
948
- context[:gem_version] = '1.10.0'
1163
+ context[:gem_version] = '1.13.0'
949
1164
  Seahorse::Client::Request.new(handlers, context)
950
1165
  end
951
1166
 
@@ -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')
@@ -64,6 +70,8 @@ module Aws::ChimeSDKMeetings
64
70
  StartMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionRequest')
65
71
  StopMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StopMeetingTranscriptionRequest')
66
72
  String = Shapes::StringShape.new(name: 'String')
73
+ TenantId = Shapes::StringShape.new(name: 'TenantId')
74
+ TenantIdList = Shapes::ListShape.new(name: 'TenantIdList')
67
75
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
68
76
  TranscribeContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeContentIdentificationType')
69
77
  TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
@@ -82,12 +90,25 @@ module Aws::ChimeSDKMeetings
82
90
  TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
83
91
  UnauthorizedException = Shapes::StructureShape.new(name: 'UnauthorizedException')
84
92
  UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
93
+ UpdateAttendeeCapabilitiesRequest = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesRequest')
94
+ UpdateAttendeeCapabilitiesResponse = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesResponse')
85
95
 
86
96
  Attendee.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "ExternalUserId"))
87
97
  Attendee.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "AttendeeId"))
88
98
  Attendee.add_member(:join_token, Shapes::ShapeRef.new(shape: JoinTokenString, location_name: "JoinToken"))
99
+ Attendee.add_member(:capabilities, Shapes::ShapeRef.new(shape: AttendeeCapabilities, location_name: "Capabilities"))
89
100
  Attendee.struct_class = Types::Attendee
90
101
 
102
+ AttendeeCapabilities.add_member(:audio, Shapes::ShapeRef.new(shape: MediaCapabilities, required: true, location_name: "Audio"))
103
+ AttendeeCapabilities.add_member(:video, Shapes::ShapeRef.new(shape: MediaCapabilities, required: true, location_name: "Video"))
104
+ AttendeeCapabilities.add_member(:content, Shapes::ShapeRef.new(shape: MediaCapabilities, required: true, location_name: "Content"))
105
+ AttendeeCapabilities.struct_class = Types::AttendeeCapabilities
106
+
107
+ AttendeeIdItem.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location_name: "AttendeeId"))
108
+ AttendeeIdItem.struct_class = Types::AttendeeIdItem
109
+
110
+ AttendeeIdsList.member = Shapes::ShapeRef.new(shape: AttendeeIdItem)
111
+
91
112
  AttendeeList.member = Shapes::ShapeRef.new(shape: Attendee)
92
113
 
93
114
  AudioFeatures.add_member(:echo_reduction, Shapes::ShapeRef.new(shape: MeetingFeatureStatus, location_name: "EchoReduction"))
@@ -108,6 +129,16 @@ module Aws::ChimeSDKMeetings
108
129
  BatchCreateAttendeeResponse.add_member(:errors, Shapes::ShapeRef.new(shape: BatchCreateAttendeeErrorList, location_name: "Errors"))
109
130
  BatchCreateAttendeeResponse.struct_class = Types::BatchCreateAttendeeResponse
110
131
 
132
+ BatchUpdateAttendeeCapabilitiesExceptRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
133
+ BatchUpdateAttendeeCapabilitiesExceptRequest.add_member(:excluded_attendee_ids, Shapes::ShapeRef.new(shape: AttendeeIdsList, required: true, location_name: "ExcludedAttendeeIds"))
134
+ BatchUpdateAttendeeCapabilitiesExceptRequest.add_member(:capabilities, Shapes::ShapeRef.new(shape: AttendeeCapabilities, required: true, location_name: "Capabilities"))
135
+ BatchUpdateAttendeeCapabilitiesExceptRequest.struct_class = Types::BatchUpdateAttendeeCapabilitiesExceptRequest
136
+
137
+ ConflictException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
138
+ ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
139
+ ConflictException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
140
+ ConflictException.struct_class = Types::ConflictException
141
+
111
142
  CreateAttendeeError.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "ExternalUserId"))
112
143
  CreateAttendeeError.add_member(:error_code, Shapes::ShapeRef.new(shape: String, location_name: "ErrorCode"))
113
144
  CreateAttendeeError.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
@@ -115,9 +146,11 @@ module Aws::ChimeSDKMeetings
115
146
 
116
147
  CreateAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
117
148
  CreateAttendeeRequest.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, required: true, location_name: "ExternalUserId"))
149
+ CreateAttendeeRequest.add_member(:capabilities, Shapes::ShapeRef.new(shape: AttendeeCapabilities, location_name: "Capabilities"))
118
150
  CreateAttendeeRequest.struct_class = Types::CreateAttendeeRequest
119
151
 
120
152
  CreateAttendeeRequestItem.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, required: true, location_name: "ExternalUserId"))
153
+ CreateAttendeeRequestItem.add_member(:capabilities, Shapes::ShapeRef.new(shape: AttendeeCapabilities, location_name: "Capabilities"))
121
154
  CreateAttendeeRequestItem.struct_class = Types::CreateAttendeeRequestItem
122
155
 
123
156
  CreateAttendeeRequestItemList.member = Shapes::ShapeRef.new(shape: CreateAttendeeRequestItem)
@@ -132,6 +165,7 @@ module Aws::ChimeSDKMeetings
132
165
  CreateMeetingRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
133
166
  CreateMeetingRequest.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
134
167
  CreateMeetingRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
168
+ CreateMeetingRequest.add_member(:tenant_ids, Shapes::ShapeRef.new(shape: TenantIdList, location_name: "TenantIds"))
135
169
  CreateMeetingRequest.struct_class = Types::CreateMeetingRequest
136
170
 
137
171
  CreateMeetingResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
@@ -145,6 +179,7 @@ module Aws::ChimeSDKMeetings
145
179
  CreateMeetingWithAttendeesRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
146
180
  CreateMeetingWithAttendeesRequest.add_member(:attendees, Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesRequestItemList, required: true, location_name: "Attendees"))
147
181
  CreateMeetingWithAttendeesRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
182
+ CreateMeetingWithAttendeesRequest.add_member(:tenant_ids, Shapes::ShapeRef.new(shape: TenantIdList, location_name: "TenantIds"))
148
183
  CreateMeetingWithAttendeesRequest.struct_class = Types::CreateMeetingWithAttendeesRequest
149
184
 
150
185
  CreateMeetingWithAttendeesRequestItemList.member = Shapes::ShapeRef.new(shape: CreateAttendeeRequestItem)
@@ -234,6 +269,7 @@ module Aws::ChimeSDKMeetings
234
269
  Meeting.add_member(:media_placement, Shapes::ShapeRef.new(shape: MediaPlacement, location_name: "MediaPlacement"))
235
270
  Meeting.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
236
271
  Meeting.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
272
+ Meeting.add_member(:tenant_ids, Shapes::ShapeRef.new(shape: TenantIdList, location_name: "TenantIds"))
237
273
  Meeting.struct_class = Types::Meeting
238
274
 
239
275
  MeetingFeaturesConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioFeatures, location_name: "Audio"))
@@ -267,6 +303,8 @@ module Aws::ChimeSDKMeetings
267
303
  StopMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
268
304
  StopMeetingTranscriptionRequest.struct_class = Types::StopMeetingTranscriptionRequest
269
305
 
306
+ TenantIdList.member = Shapes::ShapeRef.new(shape: TenantId)
307
+
270
308
  ThrottlingException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
271
309
  ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
272
310
  ThrottlingException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
@@ -286,6 +324,14 @@ module Aws::ChimeSDKMeetings
286
324
  UnprocessableEntityException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
287
325
  UnprocessableEntityException.struct_class = Types::UnprocessableEntityException
288
326
 
327
+ UpdateAttendeeCapabilitiesRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
328
+ UpdateAttendeeCapabilitiesRequest.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "AttendeeId"))
329
+ UpdateAttendeeCapabilitiesRequest.add_member(:capabilities, Shapes::ShapeRef.new(shape: AttendeeCapabilities, required: true, location_name: "Capabilities"))
330
+ UpdateAttendeeCapabilitiesRequest.struct_class = Types::UpdateAttendeeCapabilitiesRequest
331
+
332
+ UpdateAttendeeCapabilitiesResponse.add_member(:attendee, Shapes::ShapeRef.new(shape: Attendee, location_name: "Attendee"))
333
+ UpdateAttendeeCapabilitiesResponse.struct_class = Types::UpdateAttendeeCapabilitiesResponse
334
+
289
335
 
290
336
  # @api private
291
337
  API = Seahorse::Model::Api.new.tap do |api|
@@ -320,6 +366,20 @@ module Aws::ChimeSDKMeetings
320
366
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
321
367
  end)
322
368
 
369
+ api.add_operation(:batch_update_attendee_capabilities_except, Seahorse::Model::Operation.new.tap do |o|
370
+ o.name = "BatchUpdateAttendeeCapabilitiesExcept"
371
+ o.http_method = "PUT"
372
+ o.http_request_uri = "/meetings/{MeetingId}/attendees/capabilities?operation=batch-update-except"
373
+ o.input = Shapes::ShapeRef.new(shape: BatchUpdateAttendeeCapabilitiesExceptRequest)
374
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
375
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
376
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
377
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
378
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
379
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
380
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
381
+ end)
382
+
323
383
  api.add_operation(:create_attendee, Seahorse::Model::Operation.new.tap do |o|
324
384
  o.name = "CreateAttendee"
325
385
  o.http_method = "POST"
@@ -480,6 +540,20 @@ module Aws::ChimeSDKMeetings
480
540
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
481
541
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
482
542
  end)
543
+
544
+ api.add_operation(:update_attendee_capabilities, Seahorse::Model::Operation.new.tap do |o|
545
+ o.name = "UpdateAttendeeCapabilities"
546
+ o.http_method = "PUT"
547
+ o.http_request_uri = "/meetings/{MeetingId}/attendees/{AttendeeId}/capabilities"
548
+ o.input = Shapes::ShapeRef.new(shape: UpdateAttendeeCapabilitiesRequest)
549
+ o.output = Shapes::ShapeRef.new(shape: UpdateAttendeeCapabilitiesResponse)
550
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
551
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
552
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
553
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
554
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
555
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
556
+ end)
483
557
  end
484
558
 
485
559
  end
@@ -28,6 +28,7 @@ module Aws::ChimeSDKMeetings
28
28
  #
29
29
  # ## Error Classes
30
30
  # * {BadRequestException}
31
+ # * {ConflictException}
31
32
  # * {ForbiddenException}
32
33
  # * {LimitExceededException}
33
34
  # * {NotFoundException}
@@ -68,6 +69,31 @@ module Aws::ChimeSDKMeetings
68
69
  end
69
70
  end
70
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
+
71
97
  class ForbiddenException < ServiceError
72
98
 
73
99
  # @param [Seahorse::Client::RequestContext] context
@@ -33,16 +33,127 @@ 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 assigned to an attendee: audio, video, or content.
38
+ #
39
+ # <note markdown="1"> You use the capabilities with a set of values that control what the
40
+ # capabilities can do, such as `SendReceive` data. For more
41
+ # information about those values, see .
42
+ #
43
+ # </note>
44
+ #
45
+ # When using capabilities, be aware of these corner cases:
46
+ #
47
+ # * You can't set `content` capabilities to `SendReceive` or
48
+ # `Receive` unless you also set `video` capabilities to
49
+ # `SendReceive` or `Receive`. If you don't set the `video`
50
+ # capability to receive, the response will contain an HTTP 400 Bad
51
+ # Request status code. However, you can set your `video` capability
52
+ # to receive and you set your `content` capability to not receive.
53
+ #
54
+ # * When you change an `audio` capability from `None` or `Receive` to
55
+ # `Send` or `SendReceive` , and if the attendee left their
56
+ # microphone unmuted, audio will flow from the attendee to the other
57
+ # meeting participants.
58
+ #
59
+ # * When you change a `video` or `content` capability from `None` or
60
+ # `Receive` to `Send` or `SendReceive` , and if the attendee turned
61
+ # on their video or content streams, remote attendess can receive
62
+ # those streams, but only after media renegotiation between the
63
+ # client and the Amazon Chime back-end server.
64
+ # @return [Types::AttendeeCapabilities]
65
+ #
36
66
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Attendee AWS API Documentation
37
67
  #
38
68
  class Attendee < Struct.new(
39
69
  :external_user_id,
40
70
  :attendee_id,
41
- :join_token)
71
+ :join_token,
72
+ :capabilities)
42
73
  SENSITIVE = [:external_user_id, :join_token]
43
74
  include Aws::Structure
44
75
  end
45
76
 
77
+ # The media capabilities of an attendee: audio, video, or content.
78
+ #
79
+ # <note markdown="1"> You use the capabilities with a set of values that control what the
80
+ # capabilities can do, such as `SendReceive` data. For more information
81
+ # about those values, see .
82
+ #
83
+ # </note>
84
+ #
85
+ # When using capabilities, be aware of these corner cases:
86
+ #
87
+ # * You can't set `content` capabilities to `SendReceive` or `Receive`
88
+ # unless you also set `video` capabilities to `SendReceive` or
89
+ # `Receive`. If you don't set the `video` capability to receive, the
90
+ # response will contain an HTTP 400 Bad Request status code. However,
91
+ # you can set your `video` capability to receive and you set your
92
+ # `content` capability to not receive.
93
+ #
94
+ # * When you change an `audio` capability from `None` or `Receive` to
95
+ # `Send` or `SendReceive` , and if the attendee left their microphone
96
+ # unmuted, audio will flow from the attendee to the other meeting
97
+ # participants.
98
+ #
99
+ # * When you change a `video` or `content` capability from `None` or
100
+ # `Receive` to `Send` or `SendReceive` , and if the attendee turned on
101
+ # their video or content streams, remote attendess can receive those
102
+ # streams, but only after media renegotiation between the client and
103
+ # the Amazon Chime back-end server.
104
+ #
105
+ # @note When making an API call, you may pass AttendeeCapabilities
106
+ # data as a hash:
107
+ #
108
+ # {
109
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
110
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
111
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
112
+ # }
113
+ #
114
+ # @!attribute [rw] audio
115
+ # The audio capability assigned to an attendee.
116
+ # @return [String]
117
+ #
118
+ # @!attribute [rw] video
119
+ # The video capability assigned to an attendee.
120
+ # @return [String]
121
+ #
122
+ # @!attribute [rw] content
123
+ # The content capability assigned to an attendee.
124
+ # @return [String]
125
+ #
126
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/AttendeeCapabilities AWS API Documentation
127
+ #
128
+ class AttendeeCapabilities < Struct.new(
129
+ :audio,
130
+ :video,
131
+ :content)
132
+ SENSITIVE = []
133
+ include Aws::Structure
134
+ end
135
+
136
+ # A structure that contains one or more attendee IDs.
137
+ #
138
+ # @note When making an API call, you may pass AttendeeIdItem
139
+ # data as a hash:
140
+ #
141
+ # {
142
+ # attendee_id: "GuidString", # required
143
+ # }
144
+ #
145
+ # @!attribute [rw] attendee_id
146
+ # A list of one or more attendee IDs.
147
+ # @return [String]
148
+ #
149
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/AttendeeIdItem AWS API Documentation
150
+ #
151
+ class AttendeeIdItem < Struct.new(
152
+ :attendee_id)
153
+ SENSITIVE = []
154
+ include Aws::Structure
155
+ end
156
+
46
157
  # An optional category of meeting features that contains audio-specific
47
158
  # configurations, such as operating parameters for Amazon Voice Focus.
48
159
  #
@@ -97,6 +208,11 @@ module Aws::ChimeSDKMeetings
97
208
  # attendees: [ # required
98
209
  # {
99
210
  # external_user_id: "ExternalUserId", # required
211
+ # capabilities: {
212
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
213
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
214
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
215
+ # },
100
216
  # },
101
217
  # ],
102
218
  # }
@@ -138,6 +254,68 @@ module Aws::ChimeSDKMeetings
138
254
  include Aws::Structure
139
255
  end
140
256
 
257
+ # @note When making an API call, you may pass BatchUpdateAttendeeCapabilitiesExceptRequest
258
+ # data as a hash:
259
+ #
260
+ # {
261
+ # meeting_id: "GuidString", # required
262
+ # excluded_attendee_ids: [ # required
263
+ # {
264
+ # attendee_id: "GuidString", # required
265
+ # },
266
+ # ],
267
+ # capabilities: { # required
268
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
269
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
270
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
271
+ # },
272
+ # }
273
+ #
274
+ # @!attribute [rw] meeting_id
275
+ # The ID of the meeting associated with the update request.
276
+ # @return [String]
277
+ #
278
+ # @!attribute [rw] excluded_attendee_ids
279
+ # The `AttendeeIDs` that you want to exclude from one or more
280
+ # capabilities.
281
+ # @return [Array<Types::AttendeeIdItem>]
282
+ #
283
+ # @!attribute [rw] capabilities
284
+ # The capabilities (`audio`, `video`, or `content`) that you want to
285
+ # update.
286
+ # @return [Types::AttendeeCapabilities]
287
+ #
288
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/BatchUpdateAttendeeCapabilitiesExceptRequest AWS API Documentation
289
+ #
290
+ class BatchUpdateAttendeeCapabilitiesExceptRequest < Struct.new(
291
+ :meeting_id,
292
+ :excluded_attendee_ids,
293
+ :capabilities)
294
+ SENSITIVE = []
295
+ include Aws::Structure
296
+ end
297
+
298
+ # Multiple instances of the same request have been made simultaneously.
299
+ #
300
+ # @!attribute [rw] code
301
+ # @return [String]
302
+ #
303
+ # @!attribute [rw] message
304
+ # @return [String]
305
+ #
306
+ # @!attribute [rw] request_id
307
+ # @return [String]
308
+ #
309
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ConflictException AWS API Documentation
310
+ #
311
+ class ConflictException < Struct.new(
312
+ :code,
313
+ :message,
314
+ :request_id)
315
+ SENSITIVE = []
316
+ include Aws::Structure
317
+ end
318
+
141
319
  # The list of errors returned when errors are encountered during the
142
320
  # BatchCreateAttendee and CreateAttendee actions. This includes external
143
321
  # user IDs, error codes, and error messages.
@@ -171,6 +349,11 @@ module Aws::ChimeSDKMeetings
171
349
  # {
172
350
  # meeting_id: "GuidString", # required
173
351
  # external_user_id: "ExternalUserId", # required
352
+ # capabilities: {
353
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
354
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
355
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
356
+ # },
174
357
  # }
175
358
  #
176
359
  # @!attribute [rw] meeting_id
@@ -182,11 +365,44 @@ module Aws::ChimeSDKMeetings
182
365
  # the attendee to an identity managed by a builder application.
183
366
  # @return [String]
184
367
  #
368
+ # @!attribute [rw] capabilities
369
+ # The capabilities (`audio`, `video`, or `content`) that you want to
370
+ # grant an attendee. If you don't specify capabilities, all users
371
+ # have send and receive capabilities on all media channels by default.
372
+ #
373
+ # <note markdown="1"> You use the capabilities with a set of values that control what the
374
+ # capabilities can do, such as `SendReceive` data. For more
375
+ # information about those values, see .
376
+ #
377
+ # </note>
378
+ #
379
+ # When using capabilities, be aware of these corner cases:
380
+ #
381
+ # * You can't set `content` capabilities to `SendReceive` or
382
+ # `Receive` unless you also set `video` capabilities to
383
+ # `SendReceive` or `Receive`. If you don't set the `video`
384
+ # capability to receive, the response will contain an HTTP 400 Bad
385
+ # Request status code. However, you can set your `video` capability
386
+ # to receive and you set your `content` capability to not receive.
387
+ #
388
+ # * When you change an `audio` capability from `None` or `Receive` to
389
+ # `Send` or `SendReceive` , and if the attendee left their
390
+ # microphone unmuted, audio will flow from the attendee to the other
391
+ # meeting participants.
392
+ #
393
+ # * When you change a `video` or `content` capability from `None` or
394
+ # `Receive` to `Send` or `SendReceive` , and if the attendee turned
395
+ # on their video or content streams, remote attendess can receive
396
+ # those streams, but only after media renegotiation between the
397
+ # client and the Amazon Chime back-end server.
398
+ # @return [Types::AttendeeCapabilities]
399
+ #
185
400
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateAttendeeRequest AWS API Documentation
186
401
  #
187
402
  class CreateAttendeeRequest < Struct.new(
188
403
  :meeting_id,
189
- :external_user_id)
404
+ :external_user_id,
405
+ :capabilities)
190
406
  SENSITIVE = [:external_user_id]
191
407
  include Aws::Structure
192
408
  end
@@ -199,6 +415,11 @@ module Aws::ChimeSDKMeetings
199
415
  #
200
416
  # {
201
417
  # external_user_id: "ExternalUserId", # required
418
+ # capabilities: {
419
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
420
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
421
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
422
+ # },
202
423
  # }
203
424
  #
204
425
  # @!attribute [rw] external_user_id
@@ -206,10 +427,15 @@ module Aws::ChimeSDKMeetings
206
427
  # the attendee to an identity managed by a builder application.
207
428
  # @return [String]
208
429
  #
430
+ # @!attribute [rw] capabilities
431
+ # A list of one or more capabilities.
432
+ # @return [Types::AttendeeCapabilities]
433
+ #
209
434
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateAttendeeRequestItem AWS API Documentation
210
435
  #
211
436
  class CreateAttendeeRequestItem < Struct.new(
212
- :external_user_id)
437
+ :external_user_id,
438
+ :capabilities)
213
439
  SENSITIVE = [:external_user_id]
214
440
  include Aws::Structure
215
441
  end
@@ -245,6 +471,7 @@ module Aws::ChimeSDKMeetings
245
471
  # },
246
472
  # },
247
473
  # primary_meeting_id: "PrimaryMeetingId",
474
+ # tenant_ids: ["TenantId"],
248
475
  # }
249
476
  #
250
477
  # @!attribute [rw] client_request_token
@@ -291,6 +518,11 @@ module Aws::ChimeSDKMeetings
291
518
  # new meeting.
292
519
  # @return [String]
293
520
  #
521
+ # @!attribute [rw] tenant_ids
522
+ # A consistent and opaque identifier, created and maintained by the
523
+ # builder to represent a segment of their users.
524
+ # @return [Array<String>]
525
+ #
294
526
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingRequest AWS API Documentation
295
527
  #
296
528
  class CreateMeetingRequest < Struct.new(
@@ -300,7 +532,8 @@ module Aws::ChimeSDKMeetings
300
532
  :external_meeting_id,
301
533
  :notifications_configuration,
302
534
  :meeting_features,
303
- :primary_meeting_id)
535
+ :primary_meeting_id,
536
+ :tenant_ids)
304
537
  SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
305
538
  include Aws::Structure
306
539
  end
@@ -339,9 +572,15 @@ module Aws::ChimeSDKMeetings
339
572
  # attendees: [ # required
340
573
  # {
341
574
  # external_user_id: "ExternalUserId", # required
575
+ # capabilities: {
576
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
577
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
578
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
579
+ # },
342
580
  # },
343
581
  # ],
344
582
  # primary_meeting_id: "PrimaryMeetingId",
583
+ # tenant_ids: ["TenantId"],
345
584
  # }
346
585
  #
347
586
  # @!attribute [rw] client_request_token
@@ -392,6 +631,11 @@ module Aws::ChimeSDKMeetings
392
631
  # new meeting.
393
632
  # @return [String]
394
633
  #
634
+ # @!attribute [rw] tenant_ids
635
+ # A consistent and opaque identifier, created and maintained by the
636
+ # builder to represent a segment of their users.
637
+ # @return [Array<String>]
638
+ #
395
639
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendeesRequest AWS API Documentation
396
640
  #
397
641
  class CreateMeetingWithAttendeesRequest < Struct.new(
@@ -402,7 +646,8 @@ module Aws::ChimeSDKMeetings
402
646
  :meeting_features,
403
647
  :notifications_configuration,
404
648
  :attendees,
405
- :primary_meeting_id)
649
+ :primary_meeting_id,
650
+ :tenant_ids)
406
651
  SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
407
652
  include Aws::Structure
408
653
  end
@@ -540,7 +785,7 @@ module Aws::ChimeSDKMeetings
540
785
  # vocabulary_filter_method: "remove", # accepts remove, mask, tag
541
786
  # vocabulary_filter_name: "String",
542
787
  # 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
788
+ # 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
789
  # enable_partial_results_stabilization: false,
545
790
  # partial_results_stability: "low", # accepts low, medium, high
546
791
  # content_identification_type: "PII", # accepts PII
@@ -902,6 +1147,10 @@ module Aws::ChimeSDKMeetings
902
1147
  # this meeting.
903
1148
  # @return [String]
904
1149
  #
1150
+ # @!attribute [rw] tenant_ids
1151
+ # Array of strings.
1152
+ # @return [Array<String>]
1153
+ #
905
1154
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Meeting AWS API Documentation
906
1155
  #
907
1156
  class Meeting < Struct.new(
@@ -911,7 +1160,8 @@ module Aws::ChimeSDKMeetings
911
1160
  :media_region,
912
1161
  :media_placement,
913
1162
  :meeting_features,
914
- :primary_meeting_id)
1163
+ :primary_meeting_id,
1164
+ :tenant_ids)
915
1165
  SENSITIVE = [:meeting_host_id, :external_meeting_id]
916
1166
  include Aws::Structure
917
1167
  end
@@ -950,7 +1200,7 @@ module Aws::ChimeSDKMeetings
950
1200
  # @return [String]
951
1201
  #
952
1202
  # @!attribute [rw] request_id
953
- # The request id associated with the call responsible for the
1203
+ # The request ID associated with the call responsible for the
954
1204
  # exception.
955
1205
  # @return [String]
956
1206
  #
@@ -1059,7 +1309,7 @@ module Aws::ChimeSDKMeetings
1059
1309
  # vocabulary_filter_method: "remove", # accepts remove, mask, tag
1060
1310
  # vocabulary_filter_name: "String",
1061
1311
  # vocabulary_name: "String",
1062
- # 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
1312
+ # 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
1063
1313
  # enable_partial_results_stabilization: false,
1064
1314
  # partial_results_stability: "low", # accepts low, medium, high
1065
1315
  # content_identification_type: "PII", # accepts PII
@@ -1153,7 +1403,7 @@ module Aws::ChimeSDKMeetings
1153
1403
  # vocabulary_filter_method: "remove", # accepts remove, mask, tag
1154
1404
  # vocabulary_filter_name: "String",
1155
1405
  # vocabulary_name: "String",
1156
- # 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
1406
+ # 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
1157
1407
  # enable_partial_results_stabilization: false,
1158
1408
  # partial_results_stability: "low", # accepts low, medium, high
1159
1409
  # content_identification_type: "PII", # accepts PII
@@ -1240,5 +1490,52 @@ module Aws::ChimeSDKMeetings
1240
1490
  include Aws::Structure
1241
1491
  end
1242
1492
 
1493
+ # @note When making an API call, you may pass UpdateAttendeeCapabilitiesRequest
1494
+ # data as a hash:
1495
+ #
1496
+ # {
1497
+ # meeting_id: "GuidString", # required
1498
+ # attendee_id: "GuidString", # required
1499
+ # capabilities: { # required
1500
+ # audio: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1501
+ # video: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1502
+ # content: "SendReceive", # required, accepts SendReceive, Send, Receive, None
1503
+ # },
1504
+ # }
1505
+ #
1506
+ # @!attribute [rw] meeting_id
1507
+ # The ID of the meeting associated with the update request.
1508
+ # @return [String]
1509
+ #
1510
+ # @!attribute [rw] attendee_id
1511
+ # The ID of the attendee associated with the update request.
1512
+ # @return [String]
1513
+ #
1514
+ # @!attribute [rw] capabilities
1515
+ # The capabilties that you want to update.
1516
+ # @return [Types::AttendeeCapabilities]
1517
+ #
1518
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilitiesRequest AWS API Documentation
1519
+ #
1520
+ class UpdateAttendeeCapabilitiesRequest < Struct.new(
1521
+ :meeting_id,
1522
+ :attendee_id,
1523
+ :capabilities)
1524
+ SENSITIVE = []
1525
+ include Aws::Structure
1526
+ end
1527
+
1528
+ # @!attribute [rw] attendee
1529
+ # The updated attendee data.
1530
+ # @return [Types::Attendee]
1531
+ #
1532
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilitiesResponse AWS API Documentation
1533
+ #
1534
+ class UpdateAttendeeCapabilitiesResponse < Struct.new(
1535
+ :attendee)
1536
+ SENSITIVE = []
1537
+ include Aws::Structure
1538
+ end
1539
+
1243
1540
  end
1244
1541
  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.10.0'
51
+ GEM_VERSION = '1.13.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.10.0
4
+ version: 1.13.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-04-22 00:00:00.000000000 Z
11
+ date: 2022-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core