aws-sdk-chimesdkmeetings 1.11.0 → 1.14.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 +276 -2
- data/lib/aws-sdk-chimesdkmeetings/client_api.rb +92 -0
- data/lib/aws-sdk-chimesdkmeetings/errors.rb +62 -0
- data/lib/aws-sdk-chimesdkmeetings/types.rb +362 -20
- 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: e992842bfeb6cb18ec300454d59bde082963a88e72cea446790726a2258d4b65
|
4
|
+
data.tar.gz: 3c68caf9343b549645fb664c5652968012e7bc0e5d9e86205f9bc9f54a028d38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9db645600c663202d892b885eabebeab677a8312b69176bcf84f9eaa63e73b4d5aa72baba9801b1535e5636abbaa47bd365939b4ff024f343234583b4a567a1f
|
7
|
+
data.tar.gz: a72693dbefa48a1f3e915d83265e0b1d7e5a17276ef829b6c24b2a1b7b176ad1500f3d6f3db4d6405b8ccd13642e556711275f5ded07232df0d86e91936a631f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.14.0 (2022-08-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds support for Tags on Amazon Chime SDK WebRTC sessions
|
8
|
+
|
9
|
+
1.13.0 (2022-07-07)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds support for AppKeys and TenantIds in Amazon Chime SDK WebRTC sessions
|
13
|
+
|
14
|
+
1.12.0 (2022-06-09)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Adds support for live transcription in AWS GovCloud (US) Regions.
|
18
|
+
|
4
19
|
1.11.0 (2022-06-01)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.14.0
|
@@ -413,6 +413,32 @@ module Aws::ChimeSDKMeetings
|
|
413
413
|
# Updates `AttendeeCapabilities` except the capabilities listed in an
|
414
414
|
# `ExcludedAttendeeIds` table.
|
415
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
|
+
#
|
416
442
|
# @option params [required, String] :meeting_id
|
417
443
|
# The ID of the meeting associated with the update request.
|
418
444
|
#
|
@@ -471,6 +497,32 @@ module Aws::ChimeSDKMeetings
|
|
471
497
|
# grant an attendee. If you don't specify capabilities, all users have
|
472
498
|
# send and receive capabilities on all media channels by default.
|
473
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
|
+
#
|
474
526
|
# @return [Types::CreateAttendeeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
475
527
|
#
|
476
528
|
# * {Types::CreateAttendeeResponse#attendee #attendee} => Types::Attendee
|
@@ -553,6 +605,62 @@ module Aws::ChimeSDKMeetings
|
|
553
605
|
# When specified, replicates the media from the primary meeting to the
|
554
606
|
# new meeting.
|
555
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
|
+
#
|
612
|
+
# @option params [Array<Types::Tag>] :tags
|
613
|
+
# Applies one or more tags to an Amazon Chime SDK meeting. Note the
|
614
|
+
# following:
|
615
|
+
#
|
616
|
+
# * Not all resources have tags. For a list of services with resources
|
617
|
+
# that support tagging using this operation, see [Services that
|
618
|
+
# support the Resource Groups Tagging API][1]. If the resource
|
619
|
+
# doesn't yet support this operation, the resource's service might
|
620
|
+
# support tagging using its own API operations. For more information,
|
621
|
+
# refer to the documentation for that service.
|
622
|
+
#
|
623
|
+
# * Each resource can have up to 50 tags. For other limits, see [Tag
|
624
|
+
# Naming and Usage Conventions][2] in the *AWS General Reference*.
|
625
|
+
#
|
626
|
+
# * You can only tag resources that are located in the specified AWS
|
627
|
+
# Region for the AWS account.
|
628
|
+
#
|
629
|
+
# * To add tags to a resource, you need the necessary permissions for
|
630
|
+
# the service that the resource belongs to as well as permissions for
|
631
|
+
# adding tags. For more information, see the documentation for each
|
632
|
+
# service.
|
633
|
+
#
|
634
|
+
# Do not store personally identifiable information (PII) or other
|
635
|
+
# confidential or sensitive information in tags. We use tags to provide
|
636
|
+
# you with billing and administration services. Tags are not intended to
|
637
|
+
# be used for private or sensitive data.
|
638
|
+
#
|
639
|
+
# **Minimum permissions**
|
640
|
+
#
|
641
|
+
# In addition to the `tag:TagResources `permission required by this
|
642
|
+
# operation, you must also have the tagging permission defined by the
|
643
|
+
# service that created the resource. For example, to tag a
|
644
|
+
# `ChimeSDKMeetings` instance using the `TagResources` operation, you
|
645
|
+
# must have both of the following permissions:
|
646
|
+
#
|
647
|
+
# `tag:TagResources`
|
648
|
+
#
|
649
|
+
# `ChimeSDKMeetings:CreateTags`
|
650
|
+
#
|
651
|
+
# <note markdown="1"> Some services might have specific requirements for tagging some
|
652
|
+
# resources. For example, to tag an Amazon S3 bucket, you must also have
|
653
|
+
# the `s3:GetBucketTagging` permission. If the expected minimum
|
654
|
+
# permissions don't work, check the documentation for that service's
|
655
|
+
# tagging APIs for more information.
|
656
|
+
#
|
657
|
+
# </note>
|
658
|
+
#
|
659
|
+
#
|
660
|
+
#
|
661
|
+
# [1]: https://docs.aws.amazon.com/resourcegroupstagging/latest/APIReference/supported-services.html
|
662
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html#tag-conventions
|
663
|
+
#
|
556
664
|
# @return [Types::CreateMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
557
665
|
#
|
558
666
|
# * {Types::CreateMeetingResponse#meeting #meeting} => Types::Meeting
|
@@ -575,6 +683,13 @@ module Aws::ChimeSDKMeetings
|
|
575
683
|
# },
|
576
684
|
# },
|
577
685
|
# primary_meeting_id: "PrimaryMeetingId",
|
686
|
+
# tenant_ids: ["TenantId"],
|
687
|
+
# tags: [
|
688
|
+
# {
|
689
|
+
# key: "TagKey", # required
|
690
|
+
# value: "TagValue", # required
|
691
|
+
# },
|
692
|
+
# ],
|
578
693
|
# })
|
579
694
|
#
|
580
695
|
# @example Response structure
|
@@ -593,6 +708,9 @@ module Aws::ChimeSDKMeetings
|
|
593
708
|
# resp.meeting.media_placement.event_ingestion_url #=> String
|
594
709
|
# resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
|
595
710
|
# resp.meeting.primary_meeting_id #=> String
|
711
|
+
# resp.meeting.tenant_ids #=> Array
|
712
|
+
# resp.meeting.tenant_ids[0] #=> String
|
713
|
+
# resp.meeting.meeting_arn #=> String
|
596
714
|
#
|
597
715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeeting AWS API Documentation
|
598
716
|
#
|
@@ -654,6 +772,13 @@ module Aws::ChimeSDKMeetings
|
|
654
772
|
# When specified, replicates the media from the primary meeting to the
|
655
773
|
# new meeting.
|
656
774
|
#
|
775
|
+
# @option params [Array<String>] :tenant_ids
|
776
|
+
# A consistent and opaque identifier, created and maintained by the
|
777
|
+
# builder to represent a segment of their users.
|
778
|
+
#
|
779
|
+
# @option params [Array<Types::Tag>] :tags
|
780
|
+
# The tags in the request.
|
781
|
+
#
|
657
782
|
# @return [Types::CreateMeetingWithAttendeesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
658
783
|
#
|
659
784
|
# * {Types::CreateMeetingWithAttendeesResponse#meeting #meeting} => Types::Meeting
|
@@ -688,6 +813,13 @@ module Aws::ChimeSDKMeetings
|
|
688
813
|
# },
|
689
814
|
# ],
|
690
815
|
# primary_meeting_id: "PrimaryMeetingId",
|
816
|
+
# tenant_ids: ["TenantId"],
|
817
|
+
# tags: [
|
818
|
+
# {
|
819
|
+
# key: "TagKey", # required
|
820
|
+
# value: "TagValue", # required
|
821
|
+
# },
|
822
|
+
# ],
|
691
823
|
# })
|
692
824
|
#
|
693
825
|
# @example Response structure
|
@@ -706,6 +838,9 @@ module Aws::ChimeSDKMeetings
|
|
706
838
|
# resp.meeting.media_placement.event_ingestion_url #=> String
|
707
839
|
# resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
|
708
840
|
# resp.meeting.primary_meeting_id #=> String
|
841
|
+
# resp.meeting.tenant_ids #=> Array
|
842
|
+
# resp.meeting.tenant_ids[0] #=> String
|
843
|
+
# resp.meeting.meeting_arn #=> String
|
709
844
|
# resp.attendees #=> Array
|
710
845
|
# resp.attendees[0].external_user_id #=> String
|
711
846
|
# resp.attendees[0].attendee_id #=> String
|
@@ -871,6 +1006,9 @@ module Aws::ChimeSDKMeetings
|
|
871
1006
|
# resp.meeting.media_placement.event_ingestion_url #=> String
|
872
1007
|
# resp.meeting.meeting_features.audio.echo_reduction #=> String, one of "AVAILABLE", "UNAVAILABLE"
|
873
1008
|
# resp.meeting.primary_meeting_id #=> String
|
1009
|
+
# resp.meeting.tenant_ids #=> Array
|
1010
|
+
# resp.meeting.tenant_ids[0] #=> String
|
1011
|
+
# resp.meeting.meeting_arn #=> String
|
874
1012
|
#
|
875
1013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetMeeting AWS API Documentation
|
876
1014
|
#
|
@@ -933,6 +1071,36 @@ module Aws::ChimeSDKMeetings
|
|
933
1071
|
req.send_request(options)
|
934
1072
|
end
|
935
1073
|
|
1074
|
+
# Returns a list of the tags available for the specified resource.
|
1075
|
+
#
|
1076
|
+
# @option params [required, String] :resource_arn
|
1077
|
+
# The ARN of the resource.
|
1078
|
+
#
|
1079
|
+
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1080
|
+
#
|
1081
|
+
# * {Types::ListTagsForResourceResponse#tags #tags} => Array<Types::Tag>
|
1082
|
+
#
|
1083
|
+
# @example Request syntax with placeholder values
|
1084
|
+
#
|
1085
|
+
# resp = client.list_tags_for_resource({
|
1086
|
+
# resource_arn: "AmazonResourceName", # required
|
1087
|
+
# })
|
1088
|
+
#
|
1089
|
+
# @example Response structure
|
1090
|
+
#
|
1091
|
+
# resp.tags #=> Array
|
1092
|
+
# resp.tags[0].key #=> String
|
1093
|
+
# resp.tags[0].value #=> String
|
1094
|
+
#
|
1095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ListTagsForResource AWS API Documentation
|
1096
|
+
#
|
1097
|
+
# @overload list_tags_for_resource(params = {})
|
1098
|
+
# @param [Hash] params ({})
|
1099
|
+
def list_tags_for_resource(params = {}, options = {})
|
1100
|
+
req = build_request(:list_tags_for_resource, params)
|
1101
|
+
req.send_request(options)
|
1102
|
+
end
|
1103
|
+
|
936
1104
|
# Starts transcription for the specified `meetingId`.
|
937
1105
|
#
|
938
1106
|
# @option params [required, String] :meeting_id
|
@@ -955,7 +1123,7 @@ module Aws::ChimeSDKMeetings
|
|
955
1123
|
# vocabulary_filter_method: "remove", # accepts remove, mask, tag
|
956
1124
|
# vocabulary_filter_name: "String",
|
957
1125
|
# vocabulary_name: "String",
|
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
|
1126
|
+
# 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
|
959
1127
|
# enable_partial_results_stabilization: false,
|
960
1128
|
# partial_results_stability: "low", # accepts low, medium, high
|
961
1129
|
# content_identification_type: "PII", # accepts PII
|
@@ -1008,8 +1176,114 @@ module Aws::ChimeSDKMeetings
|
|
1008
1176
|
req.send_request(options)
|
1009
1177
|
end
|
1010
1178
|
|
1179
|
+
# The resource that supports tags.
|
1180
|
+
#
|
1181
|
+
# @option params [required, String] :resource_arn
|
1182
|
+
# The ARN of the resource.
|
1183
|
+
#
|
1184
|
+
# @option params [required, Array<Types::Tag>] :tags
|
1185
|
+
# Lists the requested tags.
|
1186
|
+
#
|
1187
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1188
|
+
#
|
1189
|
+
# @example Request syntax with placeholder values
|
1190
|
+
#
|
1191
|
+
# resp = client.tag_resource({
|
1192
|
+
# resource_arn: "AmazonResourceName", # required
|
1193
|
+
# tags: [ # required
|
1194
|
+
# {
|
1195
|
+
# key: "TagKey", # required
|
1196
|
+
# value: "TagValue", # required
|
1197
|
+
# },
|
1198
|
+
# ],
|
1199
|
+
# })
|
1200
|
+
#
|
1201
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/TagResource AWS API Documentation
|
1202
|
+
#
|
1203
|
+
# @overload tag_resource(params = {})
|
1204
|
+
# @param [Hash] params ({})
|
1205
|
+
def tag_resource(params = {}, options = {})
|
1206
|
+
req = build_request(:tag_resource, params)
|
1207
|
+
req.send_request(options)
|
1208
|
+
end
|
1209
|
+
|
1210
|
+
# Removes the specified tags from the specified resources. When you
|
1211
|
+
# specify a tag key, the action removes both that key and its associated
|
1212
|
+
# value. The operation succeeds even if you attempt to remove tags from
|
1213
|
+
# a resource that were already removed. Note the following:
|
1214
|
+
#
|
1215
|
+
# * To remove tags from a resource, you need the necessary permissions
|
1216
|
+
# for the service that the resource belongs to as well as permissions
|
1217
|
+
# for removing tags. For more information, see the documentation for
|
1218
|
+
# the service whose resource you want to untag.
|
1219
|
+
#
|
1220
|
+
# * You can only tag resources that are located in the specified AWS
|
1221
|
+
# Region for the calling AWS account.
|
1222
|
+
#
|
1223
|
+
# **Minimum permissions**
|
1224
|
+
#
|
1225
|
+
# In addition to the `tag:UntagResources` permission required by this
|
1226
|
+
# operation, you must also have the remove tags permission defined by
|
1227
|
+
# the service that created the resource. For example, to remove the tags
|
1228
|
+
# from an Amazon EC2 instance using the `UntagResources` operation, you
|
1229
|
+
# must have both of the following permissions:
|
1230
|
+
#
|
1231
|
+
# `tag:UntagResource`
|
1232
|
+
#
|
1233
|
+
# `ChimeSDKMeetings:DeleteTags`
|
1234
|
+
#
|
1235
|
+
# @option params [required, String] :resource_arn
|
1236
|
+
# The ARN of the resource that you're removing tags from.
|
1237
|
+
#
|
1238
|
+
# @option params [required, Array<String>] :tag_keys
|
1239
|
+
# The tag keys being removed from the resources.
|
1240
|
+
#
|
1241
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1242
|
+
#
|
1243
|
+
# @example Request syntax with placeholder values
|
1244
|
+
#
|
1245
|
+
# resp = client.untag_resource({
|
1246
|
+
# resource_arn: "AmazonResourceName", # required
|
1247
|
+
# tag_keys: ["TagKey"], # required
|
1248
|
+
# })
|
1249
|
+
#
|
1250
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/UntagResource AWS API Documentation
|
1251
|
+
#
|
1252
|
+
# @overload untag_resource(params = {})
|
1253
|
+
# @param [Hash] params ({})
|
1254
|
+
def untag_resource(params = {}, options = {})
|
1255
|
+
req = build_request(:untag_resource, params)
|
1256
|
+
req.send_request(options)
|
1257
|
+
end
|
1258
|
+
|
1011
1259
|
# The capabilties that you want to update.
|
1012
1260
|
#
|
1261
|
+
# <note markdown="1"> You use the capabilities with a set of values that control what the
|
1262
|
+
# capabilities can do, such as `SendReceive` data. For more information
|
1263
|
+
# about those values, see .
|
1264
|
+
#
|
1265
|
+
# </note>
|
1266
|
+
#
|
1267
|
+
# When using capabilities, be aware of these corner cases:
|
1268
|
+
#
|
1269
|
+
# * You can't set `content` capabilities to `SendReceive` or `Receive`
|
1270
|
+
# unless you also set `video` capabilities to `SendReceive` or
|
1271
|
+
# `Receive`. If you don't set the `video` capability to receive, the
|
1272
|
+
# response will contain an HTTP 400 Bad Request status code. However,
|
1273
|
+
# you can set your `video` capability to receive and you set your
|
1274
|
+
# `content` capability to not receive.
|
1275
|
+
#
|
1276
|
+
# * When you change an `audio` capability from `None` or `Receive` to
|
1277
|
+
# `Send` or `SendReceive` , and if the attendee left their microphone
|
1278
|
+
# unmuted, audio will flow from the attendee to the other meeting
|
1279
|
+
# participants.
|
1280
|
+
#
|
1281
|
+
# * When you change a `video` or `content` capability from `None` or
|
1282
|
+
# `Receive` to `Send` or `SendReceive` , and if the attendee turned on
|
1283
|
+
# their video or content streams, remote attendess can receive those
|
1284
|
+
# streams, but only after media renegotiation between the client and
|
1285
|
+
# the Amazon Chime back-end server.
|
1286
|
+
#
|
1013
1287
|
# @option params [required, String] :meeting_id
|
1014
1288
|
# The ID of the meeting associated with the update request.
|
1015
1289
|
#
|
@@ -1066,7 +1340,7 @@ module Aws::ChimeSDKMeetings
|
|
1066
1340
|
params: params,
|
1067
1341
|
config: config)
|
1068
1342
|
context[:gem_name] = 'aws-sdk-chimesdkmeetings'
|
1069
|
-
context[:gem_version] = '1.
|
1343
|
+
context[:gem_version] = '1.14.0'
|
1070
1344
|
Seahorse::Client::Request.new(handlers, context)
|
1071
1345
|
end
|
1072
1346
|
|
@@ -13,6 +13,7 @@ module Aws::ChimeSDKMeetings
|
|
13
13
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
|
+
AmazonResourceName = Shapes::StringShape.new(name: 'AmazonResourceName')
|
16
17
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
17
18
|
Attendee = Shapes::StructureShape.new(name: 'Attendee')
|
18
19
|
AttendeeCapabilities = Shapes::StructureShape.new(name: 'AttendeeCapabilities')
|
@@ -54,6 +55,8 @@ module Aws::ChimeSDKMeetings
|
|
54
55
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
55
56
|
ListAttendeesRequest = Shapes::StructureShape.new(name: 'ListAttendeesRequest')
|
56
57
|
ListAttendeesResponse = Shapes::StructureShape.new(name: 'ListAttendeesResponse')
|
58
|
+
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
59
|
+
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
57
60
|
MediaCapabilities = Shapes::StringShape.new(name: 'MediaCapabilities')
|
58
61
|
MediaPlacement = Shapes::StructureShape.new(name: 'MediaPlacement')
|
59
62
|
MediaRegion = Shapes::StringShape.new(name: 'MediaRegion')
|
@@ -63,6 +66,7 @@ module Aws::ChimeSDKMeetings
|
|
63
66
|
NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
|
64
67
|
NotificationsConfiguration = Shapes::StructureShape.new(name: 'NotificationsConfiguration')
|
65
68
|
PrimaryMeetingId = Shapes::StringShape.new(name: 'PrimaryMeetingId')
|
69
|
+
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
66
70
|
ResultMax = Shapes::IntegerShape.new(name: 'ResultMax')
|
67
71
|
RetryAfterSeconds = Shapes::StringShape.new(name: 'RetryAfterSeconds')
|
68
72
|
ServiceFailureException = Shapes::StructureShape.new(name: 'ServiceFailureException')
|
@@ -70,7 +74,17 @@ module Aws::ChimeSDKMeetings
|
|
70
74
|
StartMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionRequest')
|
71
75
|
StopMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StopMeetingTranscriptionRequest')
|
72
76
|
String = Shapes::StringShape.new(name: 'String')
|
77
|
+
Tag = Shapes::StructureShape.new(name: 'Tag')
|
78
|
+
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
79
|
+
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
80
|
+
TagList = Shapes::ListShape.new(name: 'TagList')
|
81
|
+
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
82
|
+
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
83
|
+
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
84
|
+
TenantId = Shapes::StringShape.new(name: 'TenantId')
|
85
|
+
TenantIdList = Shapes::ListShape.new(name: 'TenantIdList')
|
73
86
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
87
|
+
TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
|
74
88
|
TranscribeContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeContentIdentificationType')
|
75
89
|
TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
|
76
90
|
TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
|
@@ -88,6 +102,8 @@ module Aws::ChimeSDKMeetings
|
|
88
102
|
TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
|
89
103
|
UnauthorizedException = Shapes::StructureShape.new(name: 'UnauthorizedException')
|
90
104
|
UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
|
105
|
+
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
106
|
+
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
91
107
|
UpdateAttendeeCapabilitiesRequest = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesRequest')
|
92
108
|
UpdateAttendeeCapabilitiesResponse = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesResponse')
|
93
109
|
|
@@ -163,6 +179,8 @@ module Aws::ChimeSDKMeetings
|
|
163
179
|
CreateMeetingRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
|
164
180
|
CreateMeetingRequest.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
|
165
181
|
CreateMeetingRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
|
182
|
+
CreateMeetingRequest.add_member(:tenant_ids, Shapes::ShapeRef.new(shape: TenantIdList, location_name: "TenantIds"))
|
183
|
+
CreateMeetingRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
166
184
|
CreateMeetingRequest.struct_class = Types::CreateMeetingRequest
|
167
185
|
|
168
186
|
CreateMeetingResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
|
@@ -176,6 +194,8 @@ module Aws::ChimeSDKMeetings
|
|
176
194
|
CreateMeetingWithAttendeesRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: NotificationsConfiguration, location_name: "NotificationsConfiguration"))
|
177
195
|
CreateMeetingWithAttendeesRequest.add_member(:attendees, Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesRequestItemList, required: true, location_name: "Attendees"))
|
178
196
|
CreateMeetingWithAttendeesRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
|
197
|
+
CreateMeetingWithAttendeesRequest.add_member(:tenant_ids, Shapes::ShapeRef.new(shape: TenantIdList, location_name: "TenantIds"))
|
198
|
+
CreateMeetingWithAttendeesRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
179
199
|
CreateMeetingWithAttendeesRequest.struct_class = Types::CreateMeetingWithAttendeesRequest
|
180
200
|
|
181
201
|
CreateMeetingWithAttendeesRequestItemList.member = Shapes::ShapeRef.new(shape: CreateAttendeeRequestItem)
|
@@ -248,6 +268,12 @@ module Aws::ChimeSDKMeetings
|
|
248
268
|
ListAttendeesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
249
269
|
ListAttendeesResponse.struct_class = Types::ListAttendeesResponse
|
250
270
|
|
271
|
+
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location: "querystring", location_name: "arn"))
|
272
|
+
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
273
|
+
|
274
|
+
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
275
|
+
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
276
|
+
|
251
277
|
MediaPlacement.add_member(:audio_host_url, Shapes::ShapeRef.new(shape: String, location_name: "AudioHostUrl"))
|
252
278
|
MediaPlacement.add_member(:audio_fallback_url, Shapes::ShapeRef.new(shape: String, location_name: "AudioFallbackUrl"))
|
253
279
|
MediaPlacement.add_member(:signaling_url, Shapes::ShapeRef.new(shape: String, location_name: "SignalingUrl"))
|
@@ -265,6 +291,8 @@ module Aws::ChimeSDKMeetings
|
|
265
291
|
Meeting.add_member(:media_placement, Shapes::ShapeRef.new(shape: MediaPlacement, location_name: "MediaPlacement"))
|
266
292
|
Meeting.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
|
267
293
|
Meeting.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
|
294
|
+
Meeting.add_member(:tenant_ids, Shapes::ShapeRef.new(shape: TenantIdList, location_name: "TenantIds"))
|
295
|
+
Meeting.add_member(:meeting_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "MeetingArn"))
|
268
296
|
Meeting.struct_class = Types::Meeting
|
269
297
|
|
270
298
|
MeetingFeaturesConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioFeatures, location_name: "Audio"))
|
@@ -280,6 +308,12 @@ module Aws::ChimeSDKMeetings
|
|
280
308
|
NotificationsConfiguration.add_member(:sqs_queue_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SqsQueueArn"))
|
281
309
|
NotificationsConfiguration.struct_class = Types::NotificationsConfiguration
|
282
310
|
|
311
|
+
ResourceNotFoundException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
312
|
+
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
313
|
+
ResourceNotFoundException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
314
|
+
ResourceNotFoundException.add_member(:resource_name, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "ResourceName"))
|
315
|
+
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
316
|
+
|
283
317
|
ServiceFailureException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
284
318
|
ServiceFailureException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
285
319
|
ServiceFailureException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
@@ -298,11 +332,33 @@ module Aws::ChimeSDKMeetings
|
|
298
332
|
StopMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
299
333
|
StopMeetingTranscriptionRequest.struct_class = Types::StopMeetingTranscriptionRequest
|
300
334
|
|
335
|
+
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
|
336
|
+
Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "Value"))
|
337
|
+
Tag.struct_class = Types::Tag
|
338
|
+
|
339
|
+
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
340
|
+
|
341
|
+
TagList.member = Shapes::ShapeRef.new(shape: Tag)
|
342
|
+
|
343
|
+
TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "ResourceARN"))
|
344
|
+
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "Tags"))
|
345
|
+
TagResourceRequest.struct_class = Types::TagResourceRequest
|
346
|
+
|
347
|
+
TagResourceResponse.struct_class = Types::TagResourceResponse
|
348
|
+
|
349
|
+
TenantIdList.member = Shapes::ShapeRef.new(shape: TenantId)
|
350
|
+
|
301
351
|
ThrottlingException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
302
352
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
303
353
|
ThrottlingException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
304
354
|
ThrottlingException.struct_class = Types::ThrottlingException
|
305
355
|
|
356
|
+
TooManyTagsException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
357
|
+
TooManyTagsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
358
|
+
TooManyTagsException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
359
|
+
TooManyTagsException.add_member(:resource_name, Shapes::ShapeRef.new(shape: AmazonResourceName, location_name: "ResourceName"))
|
360
|
+
TooManyTagsException.struct_class = Types::TooManyTagsException
|
361
|
+
|
306
362
|
TranscriptionConfiguration.add_member(:engine_transcribe_settings, Shapes::ShapeRef.new(shape: EngineTranscribeSettings, location_name: "EngineTranscribeSettings"))
|
307
363
|
TranscriptionConfiguration.add_member(:engine_transcribe_medical_settings, Shapes::ShapeRef.new(shape: EngineTranscribeMedicalSettings, location_name: "EngineTranscribeMedicalSettings"))
|
308
364
|
TranscriptionConfiguration.struct_class = Types::TranscriptionConfiguration
|
@@ -317,6 +373,12 @@ module Aws::ChimeSDKMeetings
|
|
317
373
|
UnprocessableEntityException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
318
374
|
UnprocessableEntityException.struct_class = Types::UnprocessableEntityException
|
319
375
|
|
376
|
+
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "ResourceARN"))
|
377
|
+
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
|
378
|
+
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
379
|
+
|
380
|
+
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
381
|
+
|
320
382
|
UpdateAttendeeCapabilitiesRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
321
383
|
UpdateAttendeeCapabilitiesRequest.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "AttendeeId"))
|
322
384
|
UpdateAttendeeCapabilitiesRequest.add_member(:capabilities, Shapes::ShapeRef.new(shape: AttendeeCapabilities, required: true, location_name: "Capabilities"))
|
@@ -501,6 +563,15 @@ module Aws::ChimeSDKMeetings
|
|
501
563
|
)
|
502
564
|
end)
|
503
565
|
|
566
|
+
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
567
|
+
o.name = "ListTagsForResource"
|
568
|
+
o.http_method = "GET"
|
569
|
+
o.http_request_uri = "/tags"
|
570
|
+
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
|
571
|
+
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
|
572
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
573
|
+
end)
|
574
|
+
|
504
575
|
api.add_operation(:start_meeting_transcription, Seahorse::Model::Operation.new.tap do |o|
|
505
576
|
o.name = "StartMeetingTranscription"
|
506
577
|
o.http_method = "POST"
|
@@ -534,6 +605,27 @@ module Aws::ChimeSDKMeetings
|
|
534
605
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
535
606
|
end)
|
536
607
|
|
608
|
+
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
609
|
+
o.name = "TagResource"
|
610
|
+
o.http_method = "POST"
|
611
|
+
o.http_request_uri = "/tags?operation=tag-resource"
|
612
|
+
o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
|
613
|
+
o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
|
614
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
615
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
616
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
|
617
|
+
end)
|
618
|
+
|
619
|
+
api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
|
620
|
+
o.name = "UntagResource"
|
621
|
+
o.http_method = "POST"
|
622
|
+
o.http_request_uri = "/tags?operation=untag-resource"
|
623
|
+
o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
|
624
|
+
o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
|
625
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
626
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
627
|
+
end)
|
628
|
+
|
537
629
|
api.add_operation(:update_attendee_capabilities, Seahorse::Model::Operation.new.tap do |o|
|
538
630
|
o.name = "UpdateAttendeeCapabilities"
|
539
631
|
o.http_method = "PUT"
|
@@ -32,9 +32,11 @@ module Aws::ChimeSDKMeetings
|
|
32
32
|
# * {ForbiddenException}
|
33
33
|
# * {LimitExceededException}
|
34
34
|
# * {NotFoundException}
|
35
|
+
# * {ResourceNotFoundException}
|
35
36
|
# * {ServiceFailureException}
|
36
37
|
# * {ServiceUnavailableException}
|
37
38
|
# * {ThrottlingException}
|
39
|
+
# * {TooManyTagsException}
|
38
40
|
# * {UnauthorizedException}
|
39
41
|
# * {UnprocessableEntityException}
|
40
42
|
#
|
@@ -169,6 +171,36 @@ module Aws::ChimeSDKMeetings
|
|
169
171
|
end
|
170
172
|
end
|
171
173
|
|
174
|
+
class ResourceNotFoundException < ServiceError
|
175
|
+
|
176
|
+
# @param [Seahorse::Client::RequestContext] context
|
177
|
+
# @param [String] message
|
178
|
+
# @param [Aws::ChimeSDKMeetings::Types::ResourceNotFoundException] data
|
179
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
180
|
+
super(context, message, data)
|
181
|
+
end
|
182
|
+
|
183
|
+
# @return [String]
|
184
|
+
def code
|
185
|
+
@code || @data[:code]
|
186
|
+
end
|
187
|
+
|
188
|
+
# @return [String]
|
189
|
+
def message
|
190
|
+
@message || @data[:message]
|
191
|
+
end
|
192
|
+
|
193
|
+
# @return [String]
|
194
|
+
def request_id
|
195
|
+
@data[:request_id]
|
196
|
+
end
|
197
|
+
|
198
|
+
# @return [String]
|
199
|
+
def resource_name
|
200
|
+
@data[:resource_name]
|
201
|
+
end
|
202
|
+
end
|
203
|
+
|
172
204
|
class ServiceFailureException < ServiceError
|
173
205
|
|
174
206
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -249,6 +281,36 @@ module Aws::ChimeSDKMeetings
|
|
249
281
|
end
|
250
282
|
end
|
251
283
|
|
284
|
+
class TooManyTagsException < ServiceError
|
285
|
+
|
286
|
+
# @param [Seahorse::Client::RequestContext] context
|
287
|
+
# @param [String] message
|
288
|
+
# @param [Aws::ChimeSDKMeetings::Types::TooManyTagsException] data
|
289
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
290
|
+
super(context, message, data)
|
291
|
+
end
|
292
|
+
|
293
|
+
# @return [String]
|
294
|
+
def code
|
295
|
+
@code || @data[:code]
|
296
|
+
end
|
297
|
+
|
298
|
+
# @return [String]
|
299
|
+
def message
|
300
|
+
@message || @data[:message]
|
301
|
+
end
|
302
|
+
|
303
|
+
# @return [String]
|
304
|
+
def request_id
|
305
|
+
@data[:request_id]
|
306
|
+
end
|
307
|
+
|
308
|
+
# @return [String]
|
309
|
+
def resource_name
|
310
|
+
@data[:resource_name]
|
311
|
+
end
|
312
|
+
end
|
313
|
+
|
252
314
|
class UnauthorizedException < ServiceError
|
253
315
|
|
254
316
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -34,7 +34,33 @@ module Aws::ChimeSDKMeetings
|
|
34
34
|
# @return [String]
|
35
35
|
#
|
36
36
|
# @!attribute [rw] capabilities
|
37
|
-
# The 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.
|
38
64
|
# @return [Types::AttendeeCapabilities]
|
39
65
|
#
|
40
66
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Attendee AWS API Documentation
|
@@ -48,8 +74,33 @@ module Aws::ChimeSDKMeetings
|
|
48
74
|
include Aws::Structure
|
49
75
|
end
|
50
76
|
|
51
|
-
# The media capabilities of an attendee
|
52
|
-
#
|
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.
|
53
104
|
#
|
54
105
|
# @note When making an API call, you may pass AttendeeCapabilities
|
55
106
|
# data as a hash:
|
@@ -253,6 +304,7 @@ module Aws::ChimeSDKMeetings
|
|
253
304
|
# @return [String]
|
254
305
|
#
|
255
306
|
# @!attribute [rw] request_id
|
307
|
+
# The ID of the request involved in the conflict.
|
256
308
|
# @return [String]
|
257
309
|
#
|
258
310
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ConflictException AWS API Documentation
|
@@ -318,6 +370,32 @@ module Aws::ChimeSDKMeetings
|
|
318
370
|
# The capabilities (`audio`, `video`, or `content`) that you want to
|
319
371
|
# grant an attendee. If you don't specify capabilities, all users
|
320
372
|
# have send and receive capabilities on all media channels by default.
|
373
|
+
#
|
374
|
+
# <note markdown="1"> You use the capabilities with a set of values that control what the
|
375
|
+
# capabilities can do, such as `SendReceive` data. For more
|
376
|
+
# information about those values, see .
|
377
|
+
#
|
378
|
+
# </note>
|
379
|
+
#
|
380
|
+
# When using capabilities, be aware of these corner cases:
|
381
|
+
#
|
382
|
+
# * You can't set `content` capabilities to `SendReceive` or
|
383
|
+
# `Receive` unless you also set `video` capabilities to
|
384
|
+
# `SendReceive` or `Receive`. If you don't set the `video`
|
385
|
+
# capability to receive, the response will contain an HTTP 400 Bad
|
386
|
+
# Request status code. However, you can set your `video` capability
|
387
|
+
# to receive and you set your `content` capability to not receive.
|
388
|
+
#
|
389
|
+
# * When you change an `audio` capability from `None` or `Receive` to
|
390
|
+
# `Send` or `SendReceive` , and if the attendee left their
|
391
|
+
# microphone unmuted, audio will flow from the attendee to the other
|
392
|
+
# meeting participants.
|
393
|
+
#
|
394
|
+
# * When you change a `video` or `content` capability from `None` or
|
395
|
+
# `Receive` to `Send` or `SendReceive` , and if the attendee turned
|
396
|
+
# on their video or content streams, remote attendess can receive
|
397
|
+
# those streams, but only after media renegotiation between the
|
398
|
+
# client and the Amazon Chime back-end server.
|
321
399
|
# @return [Types::AttendeeCapabilities]
|
322
400
|
#
|
323
401
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateAttendeeRequest AWS API Documentation
|
@@ -394,6 +472,13 @@ module Aws::ChimeSDKMeetings
|
|
394
472
|
# },
|
395
473
|
# },
|
396
474
|
# primary_meeting_id: "PrimaryMeetingId",
|
475
|
+
# tenant_ids: ["TenantId"],
|
476
|
+
# tags: [
|
477
|
+
# {
|
478
|
+
# key: "TagKey", # required
|
479
|
+
# value: "TagValue", # required
|
480
|
+
# },
|
481
|
+
# ],
|
397
482
|
# }
|
398
483
|
#
|
399
484
|
# @!attribute [rw] client_request_token
|
@@ -440,6 +525,64 @@ module Aws::ChimeSDKMeetings
|
|
440
525
|
# new meeting.
|
441
526
|
# @return [String]
|
442
527
|
#
|
528
|
+
# @!attribute [rw] tenant_ids
|
529
|
+
# A consistent and opaque identifier, created and maintained by the
|
530
|
+
# builder to represent a segment of their users.
|
531
|
+
# @return [Array<String>]
|
532
|
+
#
|
533
|
+
# @!attribute [rw] tags
|
534
|
+
# Applies one or more tags to an Amazon Chime SDK meeting. Note the
|
535
|
+
# following:
|
536
|
+
#
|
537
|
+
# * Not all resources have tags. For a list of services with resources
|
538
|
+
# that support tagging using this operation, see [Services that
|
539
|
+
# support the Resource Groups Tagging API][1]. If the resource
|
540
|
+
# doesn't yet support this operation, the resource's service might
|
541
|
+
# support tagging using its own API operations. For more
|
542
|
+
# information, refer to the documentation for that service.
|
543
|
+
#
|
544
|
+
# * Each resource can have up to 50 tags. For other limits, see [Tag
|
545
|
+
# Naming and Usage Conventions][2] in the *AWS General Reference*.
|
546
|
+
#
|
547
|
+
# * You can only tag resources that are located in the specified AWS
|
548
|
+
# Region for the AWS account.
|
549
|
+
#
|
550
|
+
# * To add tags to a resource, you need the necessary permissions for
|
551
|
+
# the service that the resource belongs to as well as permissions
|
552
|
+
# for adding tags. For more information, see the documentation for
|
553
|
+
# each service.
|
554
|
+
#
|
555
|
+
# Do not store personally identifiable information (PII) or other
|
556
|
+
# confidential or sensitive information in tags. We use tags to
|
557
|
+
# provide you with billing and administration services. Tags are not
|
558
|
+
# intended to be used for private or sensitive data.
|
559
|
+
#
|
560
|
+
# **Minimum permissions**
|
561
|
+
#
|
562
|
+
# In addition to the `tag:TagResources `permission required by this
|
563
|
+
# operation, you must also have the tagging permission defined by the
|
564
|
+
# service that created the resource. For example, to tag a
|
565
|
+
# `ChimeSDKMeetings` instance using the `TagResources` operation, you
|
566
|
+
# must have both of the following permissions:
|
567
|
+
#
|
568
|
+
# `tag:TagResources`
|
569
|
+
#
|
570
|
+
# `ChimeSDKMeetings:CreateTags`
|
571
|
+
#
|
572
|
+
# <note markdown="1"> Some services might have specific requirements for tagging some
|
573
|
+
# resources. For example, to tag an Amazon S3 bucket, you must also
|
574
|
+
# have the `s3:GetBucketTagging` permission. If the expected minimum
|
575
|
+
# permissions don't work, check the documentation for that service's
|
576
|
+
# tagging APIs for more information.
|
577
|
+
#
|
578
|
+
# </note>
|
579
|
+
#
|
580
|
+
#
|
581
|
+
#
|
582
|
+
# [1]: https://docs.aws.amazon.com/resourcegroupstagging/latest/APIReference/supported-services.html
|
583
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html#tag-conventions
|
584
|
+
# @return [Array<Types::Tag>]
|
585
|
+
#
|
443
586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingRequest AWS API Documentation
|
444
587
|
#
|
445
588
|
class CreateMeetingRequest < Struct.new(
|
@@ -449,7 +592,9 @@ module Aws::ChimeSDKMeetings
|
|
449
592
|
:external_meeting_id,
|
450
593
|
:notifications_configuration,
|
451
594
|
:meeting_features,
|
452
|
-
:primary_meeting_id
|
595
|
+
:primary_meeting_id,
|
596
|
+
:tenant_ids,
|
597
|
+
:tags)
|
453
598
|
SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
|
454
599
|
include Aws::Structure
|
455
600
|
end
|
@@ -496,6 +641,13 @@ module Aws::ChimeSDKMeetings
|
|
496
641
|
# },
|
497
642
|
# ],
|
498
643
|
# primary_meeting_id: "PrimaryMeetingId",
|
644
|
+
# tenant_ids: ["TenantId"],
|
645
|
+
# tags: [
|
646
|
+
# {
|
647
|
+
# key: "TagKey", # required
|
648
|
+
# value: "TagValue", # required
|
649
|
+
# },
|
650
|
+
# ],
|
499
651
|
# }
|
500
652
|
#
|
501
653
|
# @!attribute [rw] client_request_token
|
@@ -546,6 +698,15 @@ module Aws::ChimeSDKMeetings
|
|
546
698
|
# new meeting.
|
547
699
|
# @return [String]
|
548
700
|
#
|
701
|
+
# @!attribute [rw] tenant_ids
|
702
|
+
# A consistent and opaque identifier, created and maintained by the
|
703
|
+
# builder to represent a segment of their users.
|
704
|
+
# @return [Array<String>]
|
705
|
+
#
|
706
|
+
# @!attribute [rw] tags
|
707
|
+
# The tags in the request.
|
708
|
+
# @return [Array<Types::Tag>]
|
709
|
+
#
|
549
710
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendeesRequest AWS API Documentation
|
550
711
|
#
|
551
712
|
class CreateMeetingWithAttendeesRequest < Struct.new(
|
@@ -556,7 +717,9 @@ module Aws::ChimeSDKMeetings
|
|
556
717
|
:meeting_features,
|
557
718
|
:notifications_configuration,
|
558
719
|
:attendees,
|
559
|
-
:primary_meeting_id
|
720
|
+
:primary_meeting_id,
|
721
|
+
:tenant_ids,
|
722
|
+
:tags)
|
560
723
|
SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
|
561
724
|
include Aws::Structure
|
562
725
|
end
|
@@ -694,7 +857,7 @@ module Aws::ChimeSDKMeetings
|
|
694
857
|
# vocabulary_filter_method: "remove", # accepts remove, mask, tag
|
695
858
|
# vocabulary_filter_name: "String",
|
696
859
|
# vocabulary_name: "String",
|
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
|
860
|
+
# 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
|
698
861
|
# enable_partial_results_stabilization: false,
|
699
862
|
# partial_results_stability: "low", # accepts low, medium, high
|
700
863
|
# content_identification_type: "PII", # accepts PII
|
@@ -968,6 +1131,37 @@ module Aws::ChimeSDKMeetings
|
|
968
1131
|
include Aws::Structure
|
969
1132
|
end
|
970
1133
|
|
1134
|
+
# @note When making an API call, you may pass ListTagsForResourceRequest
|
1135
|
+
# data as a hash:
|
1136
|
+
#
|
1137
|
+
# {
|
1138
|
+
# resource_arn: "AmazonResourceName", # required
|
1139
|
+
# }
|
1140
|
+
#
|
1141
|
+
# @!attribute [rw] resource_arn
|
1142
|
+
# The ARN of the resource.
|
1143
|
+
# @return [String]
|
1144
|
+
#
|
1145
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ListTagsForResourceRequest AWS API Documentation
|
1146
|
+
#
|
1147
|
+
class ListTagsForResourceRequest < Struct.new(
|
1148
|
+
:resource_arn)
|
1149
|
+
SENSITIVE = []
|
1150
|
+
include Aws::Structure
|
1151
|
+
end
|
1152
|
+
|
1153
|
+
# @!attribute [rw] tags
|
1154
|
+
# The tags requested for the specified resource.
|
1155
|
+
# @return [Array<Types::Tag>]
|
1156
|
+
#
|
1157
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ListTagsForResourceResponse AWS API Documentation
|
1158
|
+
#
|
1159
|
+
class ListTagsForResourceResponse < Struct.new(
|
1160
|
+
:tags)
|
1161
|
+
SENSITIVE = []
|
1162
|
+
include Aws::Structure
|
1163
|
+
end
|
1164
|
+
|
971
1165
|
# A set of endpoints used by clients to connect to the media service
|
972
1166
|
# group for an Amazon Chime SDK meeting.
|
973
1167
|
#
|
@@ -1056,6 +1250,14 @@ module Aws::ChimeSDKMeetings
|
|
1056
1250
|
# this meeting.
|
1057
1251
|
# @return [String]
|
1058
1252
|
#
|
1253
|
+
# @!attribute [rw] tenant_ids
|
1254
|
+
# Array of strings.
|
1255
|
+
# @return [Array<String>]
|
1256
|
+
#
|
1257
|
+
# @!attribute [rw] meeting_arn
|
1258
|
+
# The ARN of the meeting.
|
1259
|
+
# @return [String]
|
1260
|
+
#
|
1059
1261
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Meeting AWS API Documentation
|
1060
1262
|
#
|
1061
1263
|
class Meeting < Struct.new(
|
@@ -1065,7 +1267,9 @@ module Aws::ChimeSDKMeetings
|
|
1065
1267
|
:media_region,
|
1066
1268
|
:media_placement,
|
1067
1269
|
:meeting_features,
|
1068
|
-
:primary_meeting_id
|
1270
|
+
:primary_meeting_id,
|
1271
|
+
:tenant_ids,
|
1272
|
+
:meeting_arn)
|
1069
1273
|
SENSITIVE = [:meeting_host_id, :external_meeting_id]
|
1070
1274
|
include Aws::Structure
|
1071
1275
|
end
|
@@ -1153,7 +1357,34 @@ module Aws::ChimeSDKMeetings
|
|
1153
1357
|
include Aws::Structure
|
1154
1358
|
end
|
1155
1359
|
|
1156
|
-
# The
|
1360
|
+
# The resource that you want to tag couldn't be found.
|
1361
|
+
#
|
1362
|
+
# @!attribute [rw] code
|
1363
|
+
# @return [String]
|
1364
|
+
#
|
1365
|
+
# @!attribute [rw] message
|
1366
|
+
# @return [String]
|
1367
|
+
#
|
1368
|
+
# @!attribute [rw] request_id
|
1369
|
+
# The ID of the resource that couldn't be found.
|
1370
|
+
# @return [String]
|
1371
|
+
#
|
1372
|
+
# @!attribute [rw] resource_name
|
1373
|
+
# The name of the resource that couldn't be found.
|
1374
|
+
# @return [String]
|
1375
|
+
#
|
1376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ResourceNotFoundException AWS API Documentation
|
1377
|
+
#
|
1378
|
+
class ResourceNotFoundException < Struct.new(
|
1379
|
+
:code,
|
1380
|
+
:message,
|
1381
|
+
:request_id,
|
1382
|
+
:resource_name)
|
1383
|
+
SENSITIVE = []
|
1384
|
+
include Aws::Structure
|
1385
|
+
end
|
1386
|
+
|
1387
|
+
# The service encountered an unexpected error.
|
1157
1388
|
#
|
1158
1389
|
# @!attribute [rw] code
|
1159
1390
|
# @return [String]
|
@@ -1162,6 +1393,7 @@ module Aws::ChimeSDKMeetings
|
|
1162
1393
|
# @return [String]
|
1163
1394
|
#
|
1164
1395
|
# @!attribute [rw] request_id
|
1396
|
+
# The ID of the failed request.
|
1165
1397
|
# @return [String]
|
1166
1398
|
#
|
1167
1399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ServiceFailureException AWS API Documentation
|
@@ -1213,7 +1445,7 @@ module Aws::ChimeSDKMeetings
|
|
1213
1445
|
# vocabulary_filter_method: "remove", # accepts remove, mask, tag
|
1214
1446
|
# vocabulary_filter_name: "String",
|
1215
1447
|
# vocabulary_name: "String",
|
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
|
1448
|
+
# 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
|
1217
1449
|
# enable_partial_results_stabilization: false,
|
1218
1450
|
# partial_results_stability: "low", # accepts low, medium, high
|
1219
1451
|
# content_identification_type: "PII", # accepts PII
|
@@ -1273,7 +1505,68 @@ module Aws::ChimeSDKMeetings
|
|
1273
1505
|
include Aws::Structure
|
1274
1506
|
end
|
1275
1507
|
|
1276
|
-
#
|
1508
|
+
# A key-value pair that you define.
|
1509
|
+
#
|
1510
|
+
# @note When making an API call, you may pass Tag
|
1511
|
+
# data as a hash:
|
1512
|
+
#
|
1513
|
+
# {
|
1514
|
+
# key: "TagKey", # required
|
1515
|
+
# value: "TagValue", # required
|
1516
|
+
# }
|
1517
|
+
#
|
1518
|
+
# @!attribute [rw] key
|
1519
|
+
# The tag's key.
|
1520
|
+
# @return [String]
|
1521
|
+
#
|
1522
|
+
# @!attribute [rw] value
|
1523
|
+
# The tag's value.
|
1524
|
+
# @return [String]
|
1525
|
+
#
|
1526
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Tag AWS API Documentation
|
1527
|
+
#
|
1528
|
+
class Tag < Struct.new(
|
1529
|
+
:key,
|
1530
|
+
:value)
|
1531
|
+
SENSITIVE = []
|
1532
|
+
include Aws::Structure
|
1533
|
+
end
|
1534
|
+
|
1535
|
+
# @note When making an API call, you may pass TagResourceRequest
|
1536
|
+
# data as a hash:
|
1537
|
+
#
|
1538
|
+
# {
|
1539
|
+
# resource_arn: "AmazonResourceName", # required
|
1540
|
+
# tags: [ # required
|
1541
|
+
# {
|
1542
|
+
# key: "TagKey", # required
|
1543
|
+
# value: "TagValue", # required
|
1544
|
+
# },
|
1545
|
+
# ],
|
1546
|
+
# }
|
1547
|
+
#
|
1548
|
+
# @!attribute [rw] resource_arn
|
1549
|
+
# The ARN of the resource.
|
1550
|
+
# @return [String]
|
1551
|
+
#
|
1552
|
+
# @!attribute [rw] tags
|
1553
|
+
# Lists the requested tags.
|
1554
|
+
# @return [Array<Types::Tag>]
|
1555
|
+
#
|
1556
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/TagResourceRequest AWS API Documentation
|
1557
|
+
#
|
1558
|
+
class TagResourceRequest < Struct.new(
|
1559
|
+
:resource_arn,
|
1560
|
+
:tags)
|
1561
|
+
SENSITIVE = []
|
1562
|
+
include Aws::Structure
|
1563
|
+
end
|
1564
|
+
|
1565
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/TagResourceResponse AWS API Documentation
|
1566
|
+
#
|
1567
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
1568
|
+
|
1569
|
+
# The number of customer requests exceeds the request rate limit.
|
1277
1570
|
#
|
1278
1571
|
# @!attribute [rw] code
|
1279
1572
|
# @return [String]
|
@@ -1282,6 +1575,7 @@ module Aws::ChimeSDKMeetings
|
|
1282
1575
|
# @return [String]
|
1283
1576
|
#
|
1284
1577
|
# @!attribute [rw] request_id
|
1578
|
+
# The ID of the request that exceeded the throttling limit.
|
1285
1579
|
# @return [String]
|
1286
1580
|
#
|
1287
1581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ThrottlingException AWS API Documentation
|
@@ -1294,6 +1588,33 @@ module Aws::ChimeSDKMeetings
|
|
1294
1588
|
include Aws::Structure
|
1295
1589
|
end
|
1296
1590
|
|
1591
|
+
# Too many tags were added to the specified resource.
|
1592
|
+
#
|
1593
|
+
# @!attribute [rw] code
|
1594
|
+
# @return [String]
|
1595
|
+
#
|
1596
|
+
# @!attribute [rw] message
|
1597
|
+
# @return [String]
|
1598
|
+
#
|
1599
|
+
# @!attribute [rw] request_id
|
1600
|
+
# The ID of the request that contains too many tags.
|
1601
|
+
# @return [String]
|
1602
|
+
#
|
1603
|
+
# @!attribute [rw] resource_name
|
1604
|
+
# The name of the resource that received too many tags.
|
1605
|
+
# @return [String]
|
1606
|
+
#
|
1607
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/TooManyTagsException AWS API Documentation
|
1608
|
+
#
|
1609
|
+
class TooManyTagsException < Struct.new(
|
1610
|
+
:code,
|
1611
|
+
:message,
|
1612
|
+
:request_id,
|
1613
|
+
:resource_name)
|
1614
|
+
SENSITIVE = []
|
1615
|
+
include Aws::Structure
|
1616
|
+
end
|
1617
|
+
|
1297
1618
|
# The configuration for the current transcription operation. Must
|
1298
1619
|
# contain `EngineTranscribeSettings` or
|
1299
1620
|
# `EngineTranscribeMedicalSettings`.
|
@@ -1307,7 +1628,7 @@ module Aws::ChimeSDKMeetings
|
|
1307
1628
|
# vocabulary_filter_method: "remove", # accepts remove, mask, tag
|
1308
1629
|
# vocabulary_filter_name: "String",
|
1309
1630
|
# vocabulary_name: "String",
|
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
|
1631
|
+
# 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
|
1311
1632
|
# enable_partial_results_stabilization: false,
|
1312
1633
|
# partial_results_stability: "low", # accepts low, medium, high
|
1313
1634
|
# content_identification_type: "PII", # accepts PII
|
@@ -1394,6 +1715,35 @@ module Aws::ChimeSDKMeetings
|
|
1394
1715
|
include Aws::Structure
|
1395
1716
|
end
|
1396
1717
|
|
1718
|
+
# @note When making an API call, you may pass UntagResourceRequest
|
1719
|
+
# data as a hash:
|
1720
|
+
#
|
1721
|
+
# {
|
1722
|
+
# resource_arn: "AmazonResourceName", # required
|
1723
|
+
# tag_keys: ["TagKey"], # required
|
1724
|
+
# }
|
1725
|
+
#
|
1726
|
+
# @!attribute [rw] resource_arn
|
1727
|
+
# The ARN of the resource that you're removing tags from.
|
1728
|
+
# @return [String]
|
1729
|
+
#
|
1730
|
+
# @!attribute [rw] tag_keys
|
1731
|
+
# The tag keys being removed from the resources.
|
1732
|
+
# @return [Array<String>]
|
1733
|
+
#
|
1734
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/UntagResourceRequest AWS API Documentation
|
1735
|
+
#
|
1736
|
+
class UntagResourceRequest < Struct.new(
|
1737
|
+
:resource_arn,
|
1738
|
+
:tag_keys)
|
1739
|
+
SENSITIVE = []
|
1740
|
+
include Aws::Structure
|
1741
|
+
end
|
1742
|
+
|
1743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/UntagResourceResponse AWS API Documentation
|
1744
|
+
#
|
1745
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
1746
|
+
|
1397
1747
|
# @note When making an API call, you may pass UpdateAttendeeCapabilitiesRequest
|
1398
1748
|
# data as a hash:
|
1399
1749
|
#
|
@@ -1430,15 +1780,7 @@ module Aws::ChimeSDKMeetings
|
|
1430
1780
|
end
|
1431
1781
|
|
1432
1782
|
# @!attribute [rw] attendee
|
1433
|
-
#
|
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.
|
1783
|
+
# The updated attendee data.
|
1442
1784
|
# @return [Types::Attendee]
|
1443
1785
|
#
|
1444
1786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/UpdateAttendeeCapabilitiesResponse AWS API Documentation
|
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.14.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-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|