aws-sdk-chimesdkmeetings 1.27.0 → 1.28.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 58a4a65b11460817a3c768e9799a3964c4e08c86f06000feaa7ac6c254a804c7
4
- data.tar.gz: 4cf216f8d8273aeb507b94097e94d46cb5b7d65ed719fe08a75d5d2426727b59
3
+ metadata.gz: 8e27d21634b48c3f937cf7afe4c0f8767fc9dc7909f16f1a9577d628efc372ab
4
+ data.tar.gz: d65578715db6ed1b1aa1395a7e199808f96b5009c98c74589a73199ade58d6d4
5
5
  SHA512:
6
- metadata.gz: fecab390eae9cf645d23092132989674169487c07f00e117bba61fe34fc911037f9352e12244d827622ef5cd4df30a368ef1d0554904a96720e725a900b86236
7
- data.tar.gz: 863f37ef925e2c1fbb3ab8debde892621bc0a9153947174dbccede6e3c7140b379acce92e89389fbfeb4768a5e2ff9e96ff6564496682ccf781c823cab8e2194
6
+ metadata.gz: 22ba34e49ae23acdf4f1085c240197898f7b6e4792f1ac94f5b6d152ca53d12a9c72ff509255a7f5bf6c7e96358f5bd2747ddb8a73e71ba8d1edbdb15b054a5f
7
+ data.tar.gz: 0ddd1dfd43a19bbd4de4efdb9ab66dc11b29656596361e760c8283607bd71d91278db1b8e94df4429088b6788f6381bad7bf60d0c6db1015cfa9fb59c946fbce
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.28.0 (2023-12-19)
5
+ ------------------
6
+
7
+ * Feature - Add meeting features to specify a maximum camera resolution, a maximum content sharing resolution, and a maximum number of attendees for a given meeting.
8
+
4
9
  1.27.0 (2023-11-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.27.0
1
+ 1.28.0
@@ -458,6 +458,16 @@ module Aws::ChimeSDKMeetings
458
458
  #
459
459
  # When using capabilities, be aware of these corner cases:
460
460
  #
461
+ # * If you specify `MeetingFeatures:Video:MaxResolution:None` when you
462
+ # create a meeting, all API requests that include `SendReceive`,
463
+ # `Send`, or `Receive` for `AttendeeCapabilities:Video` will be
464
+ # rejected with `ValidationError 400`.
465
+ #
466
+ # * If you specify `MeetingFeatures:Content:MaxResolution:None` when you
467
+ # create a meeting, all API requests that include `SendReceive`,
468
+ # `Send`, or `Receive` for `AttendeeCapabilities:Content` will be
469
+ # rejected with `ValidationError 400`.
470
+ #
461
471
  # * You can't set `content` capabilities to `SendReceive` or `Receive`
462
472
  # unless you also set `video` capabilities to `SendReceive` or
463
473
  # `Receive`. If you don't set the `video` capability to receive, the
@@ -547,6 +557,16 @@ module Aws::ChimeSDKMeetings
547
557
  #
548
558
  # When using capabilities, be aware of these corner cases:
549
559
  #
560
+ # * If you specify `MeetingFeatures:Video:MaxResolution:None` when you
561
+ # create a meeting, all API requests that include `SendReceive`,
562
+ # `Send`, or `Receive` for `AttendeeCapabilities:Video` will be
563
+ # rejected with `ValidationError 400`.
564
+ #
565
+ # * If you specify `MeetingFeatures:Content:MaxResolution:None` when you
566
+ # create a meeting, all API requests that include `SendReceive`,
567
+ # `Send`, or `Receive` for `AttendeeCapabilities:Content` will be
568
+ # rejected with `ValidationError 400`.
569
+ #
550
570
  # * You can't set `content` capabilities to `SendReceive` or `Receive`
551
571
  # unless you also set `video` capabilities to `SendReceive` or
552
572
  # `Receive`. If you don't set the `video` capability to receive, the
@@ -626,8 +646,8 @@ module Aws::ChimeSDKMeetings
626
646
  # `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`,
627
647
  # `us-west-2`.
628
648
  #
629
- # Available values in AWS GovCloud (US) Regions: `us-gov-east-1`,
630
- # `us-gov-west-1`.
649
+ # Available values in Amazon Web Services GovCloud (US) Regions:
650
+ # `us-gov-east-1`, `us-gov-west-1`.
631
651
  #
632
652
  # @option params [String] :meeting_host_id
633
653
  # Reserved.
@@ -670,8 +690,8 @@ module Aws::ChimeSDKMeetings
670
690
  # * Each resource can have up to 50 tags. For other limits, see [Tag
671
691
  # Naming and Usage Conventions][2] in the *AWS General Reference*.
672
692
  #
673
- # * You can only tag resources that are located in the specified AWS
674
- # Region for the AWS account.
693
+ # * You can only tag resources that are located in the specified Amazon
694
+ # Web Services Region for the Amazon Web Services account.
675
695
  #
676
696
  # * To add tags to a resource, you need the necessary permissions for
677
697
  # the service that the resource belongs to as well as permissions for
@@ -728,6 +748,15 @@ module Aws::ChimeSDKMeetings
728
748
  # audio: {
729
749
  # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
730
750
  # },
751
+ # video: {
752
+ # max_resolution: "None", # accepts None, HD, FHD
753
+ # },
754
+ # content: {
755
+ # max_resolution: "None", # accepts None, FHD, UHD
756
+ # },
757
+ # attendee: {
758
+ # max_count: 1,
759
+ # },
731
760
  # },
732
761
  # primary_meeting_id: "PrimaryMeetingId",
733
762
  # tenant_ids: ["TenantId"],
@@ -754,6 +783,9 @@ module Aws::ChimeSDKMeetings
754
783
  # resp.meeting.media_placement.screen_sharing_url #=> String
755
784
  # resp.meeting.media_placement.event_ingestion_url #=> String
756
785
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
786
+ # resp.meeting.meeting_features.video.max_resolution #=> String, one of "None", "HD", "FHD"
787
+ # resp.meeting.meeting_features.content.max_resolution #=> String, one of "None", "FHD", "UHD"
788
+ # resp.meeting.meeting_features.attendee.max_count #=> Integer
757
789
  # resp.meeting.primary_meeting_id #=> String
758
790
  # resp.meeting.tenant_ids #=> Array
759
791
  # resp.meeting.tenant_ids[0] #=> String
@@ -795,8 +827,8 @@ module Aws::ChimeSDKMeetings
795
827
  # `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`,
796
828
  # `us-west-2`.
797
829
  #
798
- # Available values in AWS GovCloud (US) Regions: `us-gov-east-1`,
799
- # `us-gov-west-1`.
830
+ # Available values in Amazon Web Services GovCloud (US) Regions:
831
+ # `us-gov-east-1`, `us-gov-west-1`.
800
832
  #
801
833
  # @option params [String] :meeting_host_id
802
834
  # Reserved.
@@ -848,6 +880,15 @@ module Aws::ChimeSDKMeetings
848
880
  # audio: {
849
881
  # echo_reduction: "AVAILABLE", # accepts AVAILABLE, UNAVAILABLE
850
882
  # },
883
+ # video: {
884
+ # max_resolution: "None", # accepts None, HD, FHD
885
+ # },
886
+ # content: {
887
+ # max_resolution: "None", # accepts None, FHD, UHD
888
+ # },
889
+ # attendee: {
890
+ # max_count: 1,
891
+ # },
851
892
  # },
852
893
  # notifications_configuration: {
853
894
  # lambda_function_arn: "Arn",
@@ -889,6 +930,9 @@ module Aws::ChimeSDKMeetings
889
930
  # resp.meeting.media_placement.screen_sharing_url #=> String
890
931
  # resp.meeting.media_placement.event_ingestion_url #=> String
891
932
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
933
+ # resp.meeting.meeting_features.video.max_resolution #=> String, one of "None", "HD", "FHD"
934
+ # resp.meeting.meeting_features.content.max_resolution #=> String, one of "None", "FHD", "UHD"
935
+ # resp.meeting.meeting_features.attendee.max_count #=> Integer
892
936
  # resp.meeting.primary_meeting_id #=> String
893
937
  # resp.meeting.tenant_ids #=> Array
894
938
  # resp.meeting.tenant_ids[0] #=> String
@@ -1057,6 +1101,9 @@ module Aws::ChimeSDKMeetings
1057
1101
  # resp.meeting.media_placement.screen_sharing_url #=> String
1058
1102
  # resp.meeting.media_placement.event_ingestion_url #=> String
1059
1103
  # resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
1104
+ # resp.meeting.meeting_features.video.max_resolution #=> String, one of "None", "HD", "FHD"
1105
+ # resp.meeting.meeting_features.content.max_resolution #=> String, one of "None", "FHD", "UHD"
1106
+ # resp.meeting.meeting_features.attendee.max_count #=> Integer
1060
1107
  # resp.meeting.primary_meeting_id #=> String
1061
1108
  # resp.meeting.tenant_ids #=> Array
1062
1109
  # resp.meeting.tenant_ids[0] #=> String
@@ -1163,10 +1210,21 @@ module Aws::ChimeSDKMeetings
1163
1210
  # combinations are valid, refer to the [StartStreamTranscription][2] API
1164
1211
  # in the *Amazon Transcribe Developer Guide*.
1165
1212
  #
1166
- # Amazon Chime SDK live transcription is powered by Amazon Transcribe.
1167
- # Use of Amazon Transcribe is subject to the [AWS Service Terms][3],
1168
- # including the terms specific to the AWS Machine Learning and
1169
- # Artificial Intelligence Services.
1213
+ # <note markdown="1"> By default, Amazon Transcribe may use and store audio content
1214
+ # processed by the service to develop and improve Amazon Web Services
1215
+ # AI/ML services as further described in section 50 of the [Amazon Web
1216
+ # Services Service Terms][3]. Using Amazon Transcribe may be subject to
1217
+ # federal and state laws or regulations regarding the recording or
1218
+ # interception of electronic communications. It is your and your end
1219
+ # users’ responsibility to comply with all applicable laws regarding the
1220
+ # recording, including properly notifying all participants in a recorded
1221
+ # session or communication that the session or communication is being
1222
+ # recorded, and obtaining all necessary consents. You can opt out from
1223
+ # Amazon Web Services using audio content to develop and improve AWS
1224
+ # AI/ML services by configuring an AI services opt out policy using
1225
+ # Amazon Web Services Organizations.
1226
+ #
1227
+ # </note>
1170
1228
  #
1171
1229
  #
1172
1230
  #
@@ -1231,10 +1289,19 @@ module Aws::ChimeSDKMeetings
1231
1289
  # information, refer to [ Using Amazon Chime SDK live transcription ][1]
1232
1290
  # in the *Amazon Chime SDK Developer Guide*.
1233
1291
  #
1234
- # Amazon Chime SDK live transcription is powered by Amazon Transcribe.
1235
- # Use of Amazon Transcribe is subject to the [AWS Service Terms][2],
1236
- # including the terms specific to the AWS Machine Learning and
1237
- # Artificial Intelligence Services.
1292
+ # By default, Amazon Transcribe may use and store audio content
1293
+ # processed by the service to develop and improve Amazon Web Services
1294
+ # AI/ML services as further described in section 50 of the [Amazon Web
1295
+ # Services Service Terms][2]. Using Amazon Transcribe may be subject to
1296
+ # federal and state laws or regulations regarding the recording or
1297
+ # interception of electronic communications. It is your and your end
1298
+ # users’ responsibility to comply with all applicable laws regarding the
1299
+ # recording, including properly notifying all participants in a recorded
1300
+ # session or communication that the session or communication is being
1301
+ # recorded, and obtaining all necessary consents. You can opt out from
1302
+ # Amazon Web Services using audio content to develop and improve Amazon
1303
+ # Web Services AI/ML services by configuring an AI services opt out
1304
+ # policy using Amazon Web Services Organizations.
1238
1305
  #
1239
1306
  #
1240
1307
  #
@@ -1302,8 +1369,8 @@ module Aws::ChimeSDKMeetings
1302
1369
  # for removing tags. For more information, see the documentation for
1303
1370
  # the service whose resource you want to untag.
1304
1371
  #
1305
- # * You can only tag resources that are located in the specified AWS
1306
- # Region for the calling AWS account.
1372
+ # * You can only tag resources that are located in the specified Amazon
1373
+ # Web Services Region for the calling Amazon Web Services account.
1307
1374
  #
1308
1375
  # **Minimum permissions**
1309
1376
  #
@@ -1351,6 +1418,16 @@ module Aws::ChimeSDKMeetings
1351
1418
  #
1352
1419
  # When using capabilities, be aware of these corner cases:
1353
1420
  #
1421
+ # * If you specify `MeetingFeatures:Video:MaxResolution:None` when you
1422
+ # create a meeting, all API requests that include `SendReceive`,
1423
+ # `Send`, or `Receive` for `AttendeeCapabilities:Video` will be
1424
+ # rejected with `ValidationError 400`.
1425
+ #
1426
+ # * If you specify `MeetingFeatures:Content:MaxResolution:None` when you
1427
+ # create a meeting, all API requests that include `SendReceive`,
1428
+ # `Send`, or `Receive` for `AttendeeCapabilities:Content` will be
1429
+ # rejected with `ValidationError 400`.
1430
+ #
1354
1431
  # * You can't set `content` capabilities to `SendReceive` or `Receive`
1355
1432
  # unless you also set `video` capabilities to `SendReceive` or
1356
1433
  # `Receive`. If you don't set the `video` capability to receive, the
@@ -1425,7 +1502,7 @@ module Aws::ChimeSDKMeetings
1425
1502
  params: params,
1426
1503
  config: config)
1427
1504
  context[:gem_name] = 'aws-sdk-chimesdkmeetings'
1428
- context[:gem_version] = '1.27.0'
1505
+ context[:gem_version] = '1.28.0'
1429
1506
  Seahorse::Client::Request.new(handlers, context)
1430
1507
  end
1431
1508
 
@@ -17,9 +17,11 @@ module Aws::ChimeSDKMeetings
17
17
  Arn = Shapes::StringShape.new(name: 'Arn')
18
18
  Attendee = Shapes::StructureShape.new(name: 'Attendee')
19
19
  AttendeeCapabilities = Shapes::StructureShape.new(name: 'AttendeeCapabilities')
20
+ AttendeeFeatures = Shapes::StructureShape.new(name: 'AttendeeFeatures')
20
21
  AttendeeIdItem = Shapes::StructureShape.new(name: 'AttendeeIdItem')
21
22
  AttendeeIdsList = Shapes::ListShape.new(name: 'AttendeeIdsList')
22
23
  AttendeeList = Shapes::ListShape.new(name: 'AttendeeList')
24
+ AttendeeMax = Shapes::IntegerShape.new(name: 'AttendeeMax')
23
25
  AudioFeatures = Shapes::StructureShape.new(name: 'AudioFeatures')
24
26
  BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
25
27
  BatchCreateAttendeeErrorList = Shapes::ListShape.new(name: 'BatchCreateAttendeeErrorList')
@@ -29,6 +31,8 @@ module Aws::ChimeSDKMeetings
29
31
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
30
32
  ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
31
33
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
34
+ ContentFeatures = Shapes::StructureShape.new(name: 'ContentFeatures')
35
+ ContentResolution = Shapes::StringShape.new(name: 'ContentResolution')
32
36
  CreateAttendeeError = Shapes::StructureShape.new(name: 'CreateAttendeeError')
33
37
  CreateAttendeeRequest = Shapes::StructureShape.new(name: 'CreateAttendeeRequest')
34
38
  CreateAttendeeRequestItem = Shapes::StructureShape.new(name: 'CreateAttendeeRequestItem')
@@ -107,6 +111,8 @@ module Aws::ChimeSDKMeetings
107
111
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
108
112
  UpdateAttendeeCapabilitiesRequest = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesRequest')
109
113
  UpdateAttendeeCapabilitiesResponse = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesResponse')
114
+ VideoFeatures = Shapes::StructureShape.new(name: 'VideoFeatures')
115
+ VideoResolution = Shapes::StringShape.new(name: 'VideoResolution')
110
116
 
111
117
  Attendee.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "ExternalUserId"))
112
118
  Attendee.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "AttendeeId"))
@@ -119,6 +125,9 @@ module Aws::ChimeSDKMeetings
119
125
  AttendeeCapabilities.add_member(:content, Shapes::ShapeRef.new(shape: MediaCapabilities, required: true, location_name: "Content"))
120
126
  AttendeeCapabilities.struct_class = Types::AttendeeCapabilities
121
127
 
128
+ AttendeeFeatures.add_member(:max_count, Shapes::ShapeRef.new(shape: AttendeeMax, location_name: "MaxCount"))
129
+ AttendeeFeatures.struct_class = Types::AttendeeFeatures
130
+
122
131
  AttendeeIdItem.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location_name: "AttendeeId"))
123
132
  AttendeeIdItem.struct_class = Types::AttendeeIdItem
124
133
 
@@ -154,6 +163,9 @@ module Aws::ChimeSDKMeetings
154
163
  ConflictException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
155
164
  ConflictException.struct_class = Types::ConflictException
156
165
 
166
+ ContentFeatures.add_member(:max_resolution, Shapes::ShapeRef.new(shape: ContentResolution, location_name: "MaxResolution"))
167
+ ContentFeatures.struct_class = Types::ContentFeatures
168
+
157
169
  CreateAttendeeError.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserId, location_name: "ExternalUserId"))
158
170
  CreateAttendeeError.add_member(:error_code, Shapes::ShapeRef.new(shape: String, location_name: "ErrorCode"))
159
171
  CreateAttendeeError.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
@@ -299,6 +311,9 @@ module Aws::ChimeSDKMeetings
299
311
  Meeting.struct_class = Types::Meeting
300
312
 
301
313
  MeetingFeaturesConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioFeatures, location_name: "Audio"))
314
+ MeetingFeaturesConfiguration.add_member(:video, Shapes::ShapeRef.new(shape: VideoFeatures, location_name: "Video"))
315
+ MeetingFeaturesConfiguration.add_member(:content, Shapes::ShapeRef.new(shape: ContentFeatures, location_name: "Content"))
316
+ MeetingFeaturesConfiguration.add_member(:attendee, Shapes::ShapeRef.new(shape: AttendeeFeatures, location_name: "Attendee"))
302
317
  MeetingFeaturesConfiguration.struct_class = Types::MeetingFeaturesConfiguration
303
318
 
304
319
  NotFoundException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
@@ -390,6 +405,9 @@ module Aws::ChimeSDKMeetings
390
405
  UpdateAttendeeCapabilitiesResponse.add_member(:attendee, Shapes::ShapeRef.new(shape: Attendee, location_name: "Attendee"))
391
406
  UpdateAttendeeCapabilitiesResponse.struct_class = Types::UpdateAttendeeCapabilitiesResponse
392
407
 
408
+ VideoFeatures.add_member(:max_resolution, Shapes::ShapeRef.new(shape: VideoResolution, location_name: "MaxResolution"))
409
+ VideoFeatures.struct_class = Types::VideoFeatures
410
+
393
411
 
394
412
  # @api private
395
413
  API = Seahorse::Model::Api.new.tap do |api|
@@ -32,7 +32,7 @@ module Aws::ChimeSDKMeetings
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://meetings-chime-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -49,6 +49,16 @@ module Aws::ChimeSDKMeetings
49
49
  #
50
50
  # When using capabilities, be aware of these corner cases:
51
51
  #
52
+ # * If you specify `MeetingFeatures:Video:MaxResolution:None` when you
53
+ # create a meeting, all API requests that include `SendReceive`,
54
+ # `Send`, or `Receive` for `AttendeeCapabilities:Video` will be
55
+ # rejected with `ValidationError 400`.
56
+ #
57
+ # * If you specify `MeetingFeatures:Content:MaxResolution:None` when
58
+ # you create a meeting, all API requests that include `SendReceive`,
59
+ # `Send`, or `Receive` for `AttendeeCapabilities:Content` will be
60
+ # rejected with `ValidationError 400`.
61
+ #
52
62
  # * You can't set `content` capabilities to `SendReceive` or
53
63
  # `Receive` unless you also set `video` capabilities to
54
64
  # `SendReceive` or `Receive`. If you don't set the `video`
@@ -82,13 +92,23 @@ module Aws::ChimeSDKMeetings
82
92
  # The media capabilities of an attendee: audio, video, or content.
83
93
  #
84
94
  # <note markdown="1"> You use the capabilities with a set of values that control what the
85
- # capabilities can do, such as `SendReceive` data. For more information
86
- # about those values, see .
95
+ # capabilities can do, such as `SendReceive` data. For more information,
96
+ # refer to and .
87
97
  #
88
98
  # </note>
89
99
  #
90
100
  # When using capabilities, be aware of these corner cases:
91
101
  #
102
+ # * If you specify `MeetingFeatures:Video:MaxResolution:None` when you
103
+ # create a meeting, all API requests that include `SendReceive`,
104
+ # `Send`, or `Receive` for `AttendeeCapabilities:Video` will be
105
+ # rejected with `ValidationError 400`.
106
+ #
107
+ # * If you specify `MeetingFeatures:Content:MaxResolution:None` when you
108
+ # create a meeting, all API requests that include `SendReceive`,
109
+ # `Send`, or `Receive` for `AttendeeCapabilities:Content` will be
110
+ # rejected with `ValidationError 400`.
111
+ #
92
112
  # * You can't set `content` capabilities to `SendReceive` or `Receive`
93
113
  # unless you also set `video` capabilities to `SendReceive` or
94
114
  # `Receive`. If you don't set the `video` capability to receive, the
@@ -97,12 +117,11 @@ module Aws::ChimeSDKMeetings
97
117
  # `content` capability to not receive.
98
118
  #
99
119
  # * When you change an `audio` capability from `None` or `Receive` to
100
- # `Send` or `SendReceive` , and if the attendee left their microphone
101
- # unmuted, audio will flow from the attendee to the other meeting
102
- # participants.
120
+ # `Send` or `SendReceive` , and an attendee unmutes their microphone,
121
+ # audio flows from the attendee to the other meeting participants.
103
122
  #
104
123
  # * When you change a `video` or `content` capability from `None` or
105
- # `Receive` to `Send` or `SendReceive` , and if the attendee turned on
124
+ # `Receive` to `Send` or `SendReceive` , and the attendee turns on
106
125
  # their video or content streams, remote attendees can receive those
107
126
  # streams, but only after media renegotiation between the client and
108
127
  # the Amazon Chime back-end server.
@@ -129,6 +148,26 @@ module Aws::ChimeSDKMeetings
129
148
  include Aws::Structure
130
149
  end
131
150
 
151
+ # Lists the maximum number of attendees allowed into the meeting.
152
+ #
153
+ # <note markdown="1"> If you specify `FHD` for `MeetingFeatures:Video:MaxResolution`, or if
154
+ # you specify `UHD` for `MeetingFeatures:Content:MaxResolution`, the
155
+ # maximum number of attendees changes from the default of `250` to `25`.
156
+ #
157
+ # </note>
158
+ #
159
+ # @!attribute [rw] max_count
160
+ # The maximum number of attendees allowed into the meeting.
161
+ # @return [Integer]
162
+ #
163
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/AttendeeFeatures AWS API Documentation
164
+ #
165
+ class AttendeeFeatures < Struct.new(
166
+ :max_count)
167
+ SENSITIVE = []
168
+ include Aws::Structure
169
+ end
170
+
132
171
  # A structure that contains one or more attendee IDs.
133
172
  #
134
173
  # @!attribute [rw] attendee_id
@@ -265,6 +304,34 @@ module Aws::ChimeSDKMeetings
265
304
  include Aws::Structure
266
305
  end
267
306
 
307
+ # Lists the content (screen share) features for the meeting. Applies to
308
+ # all attendees.
309
+ #
310
+ # <note markdown="1"> If you specify `MeetingFeatures:Content:MaxResolution:None` when you
311
+ # create a meeting, all API requests that include `SendReceive`, `Send`,
312
+ # or `Receive` for `AttendeeCapabilities:Content` will be rejected with
313
+ # `ValidationError 400`.
314
+ #
315
+ # </note>
316
+ #
317
+ # @!attribute [rw] max_resolution
318
+ # The maximum resolution for the meeting content.
319
+ #
320
+ # <note markdown="1"> Defaults to `FHD`. To use `UHD`, you must also provide a
321
+ # `MeetingFeatures:Attendee:MaxCount` value and override the default
322
+ # size limit of 250 attendees.
323
+ #
324
+ # </note>
325
+ # @return [String]
326
+ #
327
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ContentFeatures AWS API Documentation
328
+ #
329
+ class ContentFeatures < Struct.new(
330
+ :max_resolution)
331
+ SENSITIVE = []
332
+ include Aws::Structure
333
+ end
334
+
268
335
  # The list of errors returned when errors are encountered during the
269
336
  # BatchCreateAttendee and CreateAttendee actions. This includes external
270
337
  # user IDs, error codes, and error messages.
@@ -324,6 +391,16 @@ module Aws::ChimeSDKMeetings
324
391
  #
325
392
  # When using capabilities, be aware of these corner cases:
326
393
  #
394
+ # * If you specify `MeetingFeatures:Video:MaxResolution:None` when you
395
+ # create a meeting, all API requests that include `SendReceive`,
396
+ # `Send`, or `Receive` for `AttendeeCapabilities:Video` will be
397
+ # rejected with `ValidationError 400`.
398
+ #
399
+ # * If you specify `MeetingFeatures:Content:MaxResolution:None` when
400
+ # you create a meeting, all API requests that include `SendReceive`,
401
+ # `Send`, or `Receive` for `AttendeeCapabilities:Content` will be
402
+ # rejected with `ValidationError 400`.
403
+ #
327
404
  # * You can't set `content` capabilities to `SendReceive` or
328
405
  # `Receive` unless you also set `video` capabilities to
329
406
  # `SendReceive` or `Receive`. If you don't set the `video`
@@ -408,8 +485,8 @@ module Aws::ChimeSDKMeetings
408
485
  # `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`,
409
486
  # `us-west-1`, `us-west-2`.
410
487
  #
411
- # Available values in AWS GovCloud (US) Regions: `us-gov-east-1`,
412
- # `us-gov-west-1`.
488
+ # Available values in Amazon Web Services GovCloud (US) Regions:
489
+ # `us-gov-east-1`, `us-gov-west-1`.
413
490
  # @return [String]
414
491
  #
415
492
  # @!attribute [rw] meeting_host_id
@@ -459,8 +536,8 @@ module Aws::ChimeSDKMeetings
459
536
  # * Each resource can have up to 50 tags. For other limits, see [Tag
460
537
  # Naming and Usage Conventions][2] in the *AWS General Reference*.
461
538
  #
462
- # * You can only tag resources that are located in the specified AWS
463
- # Region for the AWS account.
539
+ # * You can only tag resources that are located in the specified
540
+ # Amazon Web Services Region for the Amazon Web Services account.
464
541
  #
465
542
  # * To add tags to a resource, you need the necessary permissions for
466
543
  # the service that the resource belongs to as well as permissions
@@ -544,8 +621,8 @@ module Aws::ChimeSDKMeetings
544
621
  # `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`,
545
622
  # `us-west-1`, `us-west-2`.
546
623
  #
547
- # Available values in AWS GovCloud (US) Regions: `us-gov-east-1`,
548
- # `us-gov-west-1`.
624
+ # Available values in Amazon Web Services GovCloud (US) Regions:
625
+ # `us-gov-east-1`, `us-gov-west-1`.
549
626
  # @return [String]
550
627
  #
551
628
  # @!attribute [rw] meeting_host_id
@@ -680,8 +757,9 @@ module Aws::ChimeSDKMeetings
680
757
  # @return [String]
681
758
  #
682
759
  # @!attribute [rw] region
683
- # The AWS Region passed to Amazon Transcribe Medical. If you don't
684
- # specify a Region, Amazon Chime uses the meeting's Region.
760
+ # The Amazon Web Services Region passed to Amazon Transcribe Medical.
761
+ # If you don't specify a Region, Amazon Chime uses the meeting's
762
+ # Region.
685
763
  # @return [String]
686
764
  #
687
765
  # @!attribute [rw] content_identification_type
@@ -762,7 +840,7 @@ module Aws::ChimeSDKMeetings
762
840
  # @return [String]
763
841
  #
764
842
  # @!attribute [rw] region
765
- # The AWS Region in which to use Amazon Transcribe.
843
+ # The Amazon Web Services Region in which to use Amazon Transcribe.
766
844
  #
767
845
  # If you don't specify a Region, then the [MediaRegion][1] of the
768
846
  # meeting is used. However, if Amazon Transcribe is not available in
@@ -1116,18 +1194,30 @@ module Aws::ChimeSDKMeetings
1116
1194
  #
1117
1195
  # @!attribute [rw] turn_control_url
1118
1196
  # The turn control URL.
1197
+ #
1198
+ # **This parameter is deprecated and no longer used by the Amazon
1199
+ # Chime SDK.**
1119
1200
  # @return [String]
1120
1201
  #
1121
1202
  # @!attribute [rw] screen_data_url
1122
1203
  # The screen data URL.
1204
+ #
1205
+ # **This parameter is deprecated and no longer used by the Amazon
1206
+ # Chime SDK.**
1123
1207
  # @return [String]
1124
1208
  #
1125
1209
  # @!attribute [rw] screen_viewing_url
1126
1210
  # The screen viewing URL.
1211
+ #
1212
+ # **This parameter is deprecated and no longer used by the Amazon
1213
+ # Chime SDK.**
1127
1214
  # @return [String]
1128
1215
  #
1129
1216
  # @!attribute [rw] screen_sharing_url
1130
1217
  # The screen sharing URL.
1218
+ #
1219
+ # **This parameter is deprecated and no longer used by the Amazon
1220
+ # Chime SDK.**
1131
1221
  # @return [String]
1132
1222
  #
1133
1223
  # @!attribute [rw] event_ingestion_url
@@ -1175,8 +1265,8 @@ module Aws::ChimeSDKMeetings
1175
1265
  # `eu-north-1`, `eu-south-1`, `eu-west-1`, `eu-west-2`, `eu-west-3`,
1176
1266
  # `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`, `us-west-2`.
1177
1267
  #
1178
- # Available values in AWS GovCloud (US) Regions: `us-gov-east-1`,
1179
- # `us-gov-west-1`.
1268
+ # Available values in Amazon Web Services GovCloud (US) Regions:
1269
+ # `us-gov-east-1`, `us-gov-west-1`.
1180
1270
  # @return [String]
1181
1271
  #
1182
1272
  # @!attribute [rw] media_placement
@@ -1223,10 +1313,28 @@ module Aws::ChimeSDKMeetings
1223
1313
  # meeting.
1224
1314
  # @return [Types::AudioFeatures]
1225
1315
  #
1316
+ # @!attribute [rw] video
1317
+ # The configuration settings for the video features available to a
1318
+ # meeting.
1319
+ # @return [Types::VideoFeatures]
1320
+ #
1321
+ # @!attribute [rw] content
1322
+ # The configuration settings for the content features available to a
1323
+ # meeting.
1324
+ # @return [Types::ContentFeatures]
1325
+ #
1326
+ # @!attribute [rw] attendee
1327
+ # The configuration settings for the attendee features available to a
1328
+ # meeting.
1329
+ # @return [Types::AttendeeFeatures]
1330
+ #
1226
1331
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/MeetingFeaturesConfiguration AWS API Documentation
1227
1332
  #
1228
1333
  class MeetingFeaturesConfiguration < Struct.new(
1229
- :audio)
1334
+ :audio,
1335
+ :video,
1336
+ :content,
1337
+ :attendee)
1230
1338
  SENSITIVE = []
1231
1339
  include Aws::Structure
1232
1340
  end
@@ -1259,8 +1367,8 @@ module Aws::ChimeSDKMeetings
1259
1367
  # meeting and attendee events occur.
1260
1368
  #
1261
1369
  # @!attribute [rw] lambda_function_arn
1262
- # The ARN of the AWS Lambda function in the notifications
1263
- # configuration.
1370
+ # The ARN of the Amazon Web Services Lambda function in the
1371
+ # notifications configuration.
1264
1372
  # @return [String]
1265
1373
  #
1266
1374
  # @!attribute [rw] sns_topic_arn
@@ -1603,5 +1711,33 @@ module Aws::ChimeSDKMeetings
1603
1711
  include Aws::Structure
1604
1712
  end
1605
1713
 
1714
+ # The video features set for the meeting. Applies to all attendees.
1715
+ #
1716
+ # <note markdown="1"> If you specify `MeetingFeatures:Video:MaxResolution:None` when you
1717
+ # create a meeting, all API requests that include `SendReceive`, `Send`,
1718
+ # or `Receive` for `AttendeeCapabilities:Video` will be rejected with
1719
+ # `ValidationError 400`.
1720
+ #
1721
+ # </note>
1722
+ #
1723
+ # @!attribute [rw] max_resolution
1724
+ # The maximum video resolution for the meeting. Applies to all
1725
+ # attendees.
1726
+ #
1727
+ # <note markdown="1"> Defaults to `HD`. To use `FHD`, you must also provide a
1728
+ # `MeetingFeatures:Attendee:MaxCount` value and override the default
1729
+ # size limit of 250 attendees.
1730
+ #
1731
+ # </note>
1732
+ # @return [String]
1733
+ #
1734
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/VideoFeatures AWS API Documentation
1735
+ #
1736
+ class VideoFeatures < Struct.new(
1737
+ :max_resolution)
1738
+ SENSITIVE = []
1739
+ include Aws::Structure
1740
+ end
1741
+
1606
1742
  end
1607
1743
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-chimesdkmeetings/customizations'
52
52
  # @!group service
53
53
  module Aws::ChimeSDKMeetings
54
54
 
55
- GEM_VERSION = '1.27.0'
55
+ GEM_VERSION = '1.28.0'
56
56
 
57
57
  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.27.0
4
+ version: 1.28.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: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2023-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core