aws-sdk-chimesdkmeetings 1.13.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkmeetings/client.rb +181 -1
- data/lib/aws-sdk-chimesdkmeetings/client_api.rb +85 -0
- data/lib/aws-sdk-chimesdkmeetings/errors.rb +62 -0
- data/lib/aws-sdk-chimesdkmeetings/types.rb +257 -3
- 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
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.14.0
|
@@ -609,6 +609,58 @@ module Aws::ChimeSDKMeetings
|
|
609
609
|
# A consistent and opaque identifier, created and maintained by the
|
610
610
|
# builder to represent a segment of their users.
|
611
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
|
+
#
|
612
664
|
# @return [Types::CreateMeetingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
613
665
|
#
|
614
666
|
# * {Types::CreateMeetingResponse#meeting #meeting} => Types::Meeting
|
@@ -632,6 +684,12 @@ module Aws::ChimeSDKMeetings
|
|
632
684
|
# },
|
633
685
|
# primary_meeting_id: "PrimaryMeetingId",
|
634
686
|
# tenant_ids: ["TenantId"],
|
687
|
+
# tags: [
|
688
|
+
# {
|
689
|
+
# key: "TagKey", # required
|
690
|
+
# value: "TagValue", # required
|
691
|
+
# },
|
692
|
+
# ],
|
635
693
|
# })
|
636
694
|
#
|
637
695
|
# @example Response structure
|
@@ -652,6 +710,7 @@ module Aws::ChimeSDKMeetings
|
|
652
710
|
# resp.meeting.primary_meeting_id #=> String
|
653
711
|
# resp.meeting.tenant_ids #=> Array
|
654
712
|
# resp.meeting.tenant_ids[0] #=> String
|
713
|
+
# resp.meeting.meeting_arn #=> String
|
655
714
|
#
|
656
715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeeting AWS API Documentation
|
657
716
|
#
|
@@ -717,6 +776,9 @@ module Aws::ChimeSDKMeetings
|
|
717
776
|
# A consistent and opaque identifier, created and maintained by the
|
718
777
|
# builder to represent a segment of their users.
|
719
778
|
#
|
779
|
+
# @option params [Array<Types::Tag>] :tags
|
780
|
+
# The tags in the request.
|
781
|
+
#
|
720
782
|
# @return [Types::CreateMeetingWithAttendeesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
721
783
|
#
|
722
784
|
# * {Types::CreateMeetingWithAttendeesResponse#meeting #meeting} => Types::Meeting
|
@@ -752,6 +814,12 @@ module Aws::ChimeSDKMeetings
|
|
752
814
|
# ],
|
753
815
|
# primary_meeting_id: "PrimaryMeetingId",
|
754
816
|
# tenant_ids: ["TenantId"],
|
817
|
+
# tags: [
|
818
|
+
# {
|
819
|
+
# key: "TagKey", # required
|
820
|
+
# value: "TagValue", # required
|
821
|
+
# },
|
822
|
+
# ],
|
755
823
|
# })
|
756
824
|
#
|
757
825
|
# @example Response structure
|
@@ -772,6 +840,7 @@ module Aws::ChimeSDKMeetings
|
|
772
840
|
# resp.meeting.primary_meeting_id #=> String
|
773
841
|
# resp.meeting.tenant_ids #=> Array
|
774
842
|
# resp.meeting.tenant_ids[0] #=> String
|
843
|
+
# resp.meeting.meeting_arn #=> String
|
775
844
|
# resp.attendees #=> Array
|
776
845
|
# resp.attendees[0].external_user_id #=> String
|
777
846
|
# resp.attendees[0].attendee_id #=> String
|
@@ -939,6 +1008,7 @@ module Aws::ChimeSDKMeetings
|
|
939
1008
|
# resp.meeting.primary_meeting_id #=> String
|
940
1009
|
# resp.meeting.tenant_ids #=> Array
|
941
1010
|
# resp.meeting.tenant_ids[0] #=> String
|
1011
|
+
# resp.meeting.meeting_arn #=> String
|
942
1012
|
#
|
943
1013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/GetMeeting AWS API Documentation
|
944
1014
|
#
|
@@ -1001,6 +1071,36 @@ module Aws::ChimeSDKMeetings
|
|
1001
1071
|
req.send_request(options)
|
1002
1072
|
end
|
1003
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
|
+
|
1004
1104
|
# Starts transcription for the specified `meetingId`.
|
1005
1105
|
#
|
1006
1106
|
# @option params [required, String] :meeting_id
|
@@ -1076,6 +1176,86 @@ module Aws::ChimeSDKMeetings
|
|
1076
1176
|
req.send_request(options)
|
1077
1177
|
end
|
1078
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
|
+
|
1079
1259
|
# The capabilties that you want to update.
|
1080
1260
|
#
|
1081
1261
|
# <note markdown="1"> You use the capabilities with a set of values that control what the
|
@@ -1160,7 +1340,7 @@ module Aws::ChimeSDKMeetings
|
|
1160
1340
|
params: params,
|
1161
1341
|
config: config)
|
1162
1342
|
context[:gem_name] = 'aws-sdk-chimesdkmeetings'
|
1163
|
-
context[:gem_version] = '1.
|
1343
|
+
context[:gem_version] = '1.14.0'
|
1164
1344
|
Seahorse::Client::Request.new(handlers, context)
|
1165
1345
|
end
|
1166
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,9 +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')
|
73
84
|
TenantId = Shapes::StringShape.new(name: 'TenantId')
|
74
85
|
TenantIdList = Shapes::ListShape.new(name: 'TenantIdList')
|
75
86
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
87
|
+
TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
|
76
88
|
TranscribeContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeContentIdentificationType')
|
77
89
|
TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
|
78
90
|
TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
|
@@ -90,6 +102,8 @@ module Aws::ChimeSDKMeetings
|
|
90
102
|
TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
|
91
103
|
UnauthorizedException = Shapes::StructureShape.new(name: 'UnauthorizedException')
|
92
104
|
UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
|
105
|
+
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
106
|
+
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
93
107
|
UpdateAttendeeCapabilitiesRequest = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesRequest')
|
94
108
|
UpdateAttendeeCapabilitiesResponse = Shapes::StructureShape.new(name: 'UpdateAttendeeCapabilitiesResponse')
|
95
109
|
|
@@ -166,6 +180,7 @@ module Aws::ChimeSDKMeetings
|
|
166
180
|
CreateMeetingRequest.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
|
167
181
|
CreateMeetingRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
|
168
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"))
|
169
184
|
CreateMeetingRequest.struct_class = Types::CreateMeetingRequest
|
170
185
|
|
171
186
|
CreateMeetingResponse.add_member(:meeting, Shapes::ShapeRef.new(shape: Meeting, location_name: "Meeting"))
|
@@ -180,6 +195,7 @@ module Aws::ChimeSDKMeetings
|
|
180
195
|
CreateMeetingWithAttendeesRequest.add_member(:attendees, Shapes::ShapeRef.new(shape: CreateMeetingWithAttendeesRequestItemList, required: true, location_name: "Attendees"))
|
181
196
|
CreateMeetingWithAttendeesRequest.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
|
182
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"))
|
183
199
|
CreateMeetingWithAttendeesRequest.struct_class = Types::CreateMeetingWithAttendeesRequest
|
184
200
|
|
185
201
|
CreateMeetingWithAttendeesRequestItemList.member = Shapes::ShapeRef.new(shape: CreateAttendeeRequestItem)
|
@@ -252,6 +268,12 @@ module Aws::ChimeSDKMeetings
|
|
252
268
|
ListAttendeesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
253
269
|
ListAttendeesResponse.struct_class = Types::ListAttendeesResponse
|
254
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
|
+
|
255
277
|
MediaPlacement.add_member(:audio_host_url, Shapes::ShapeRef.new(shape: String, location_name: "AudioHostUrl"))
|
256
278
|
MediaPlacement.add_member(:audio_fallback_url, Shapes::ShapeRef.new(shape: String, location_name: "AudioFallbackUrl"))
|
257
279
|
MediaPlacement.add_member(:signaling_url, Shapes::ShapeRef.new(shape: String, location_name: "SignalingUrl"))
|
@@ -270,6 +292,7 @@ module Aws::ChimeSDKMeetings
|
|
270
292
|
Meeting.add_member(:meeting_features, Shapes::ShapeRef.new(shape: MeetingFeaturesConfiguration, location_name: "MeetingFeatures"))
|
271
293
|
Meeting.add_member(:primary_meeting_id, Shapes::ShapeRef.new(shape: PrimaryMeetingId, location_name: "PrimaryMeetingId"))
|
272
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"))
|
273
296
|
Meeting.struct_class = Types::Meeting
|
274
297
|
|
275
298
|
MeetingFeaturesConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioFeatures, location_name: "Audio"))
|
@@ -285,6 +308,12 @@ module Aws::ChimeSDKMeetings
|
|
285
308
|
NotificationsConfiguration.add_member(:sqs_queue_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SqsQueueArn"))
|
286
309
|
NotificationsConfiguration.struct_class = Types::NotificationsConfiguration
|
287
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
|
+
|
288
317
|
ServiceFailureException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
289
318
|
ServiceFailureException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
290
319
|
ServiceFailureException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
@@ -303,6 +332,20 @@ module Aws::ChimeSDKMeetings
|
|
303
332
|
StopMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
304
333
|
StopMeetingTranscriptionRequest.struct_class = Types::StopMeetingTranscriptionRequest
|
305
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
|
+
|
306
349
|
TenantIdList.member = Shapes::ShapeRef.new(shape: TenantId)
|
307
350
|
|
308
351
|
ThrottlingException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "Code"))
|
@@ -310,6 +353,12 @@ module Aws::ChimeSDKMeetings
|
|
310
353
|
ThrottlingException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
311
354
|
ThrottlingException.struct_class = Types::ThrottlingException
|
312
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
|
+
|
313
362
|
TranscriptionConfiguration.add_member(:engine_transcribe_settings, Shapes::ShapeRef.new(shape: EngineTranscribeSettings, location_name: "EngineTranscribeSettings"))
|
314
363
|
TranscriptionConfiguration.add_member(:engine_transcribe_medical_settings, Shapes::ShapeRef.new(shape: EngineTranscribeMedicalSettings, location_name: "EngineTranscribeMedicalSettings"))
|
315
364
|
TranscriptionConfiguration.struct_class = Types::TranscriptionConfiguration
|
@@ -324,6 +373,12 @@ module Aws::ChimeSDKMeetings
|
|
324
373
|
UnprocessableEntityException.add_member(:request_id, Shapes::ShapeRef.new(shape: String, location_name: "RequestId"))
|
325
374
|
UnprocessableEntityException.struct_class = Types::UnprocessableEntityException
|
326
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
|
+
|
327
382
|
UpdateAttendeeCapabilitiesRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "MeetingId"))
|
328
383
|
UpdateAttendeeCapabilitiesRequest.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "AttendeeId"))
|
329
384
|
UpdateAttendeeCapabilitiesRequest.add_member(:capabilities, Shapes::ShapeRef.new(shape: AttendeeCapabilities, required: true, location_name: "Capabilities"))
|
@@ -508,6 +563,15 @@ module Aws::ChimeSDKMeetings
|
|
508
563
|
)
|
509
564
|
end)
|
510
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
|
+
|
511
575
|
api.add_operation(:start_meeting_transcription, Seahorse::Model::Operation.new.tap do |o|
|
512
576
|
o.name = "StartMeetingTranscription"
|
513
577
|
o.http_method = "POST"
|
@@ -541,6 +605,27 @@ module Aws::ChimeSDKMeetings
|
|
541
605
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
542
606
|
end)
|
543
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
|
+
|
544
629
|
api.add_operation(:update_attendee_capabilities, Seahorse::Model::Operation.new.tap do |o|
|
545
630
|
o.name = "UpdateAttendeeCapabilities"
|
546
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
|
@@ -304,6 +304,7 @@ module Aws::ChimeSDKMeetings
|
|
304
304
|
# @return [String]
|
305
305
|
#
|
306
306
|
# @!attribute [rw] request_id
|
307
|
+
# The ID of the request involved in the conflict.
|
307
308
|
# @return [String]
|
308
309
|
#
|
309
310
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ConflictException AWS API Documentation
|
@@ -472,6 +473,12 @@ module Aws::ChimeSDKMeetings
|
|
472
473
|
# },
|
473
474
|
# primary_meeting_id: "PrimaryMeetingId",
|
474
475
|
# tenant_ids: ["TenantId"],
|
476
|
+
# tags: [
|
477
|
+
# {
|
478
|
+
# key: "TagKey", # required
|
479
|
+
# value: "TagValue", # required
|
480
|
+
# },
|
481
|
+
# ],
|
475
482
|
# }
|
476
483
|
#
|
477
484
|
# @!attribute [rw] client_request_token
|
@@ -523,6 +530,59 @@ module Aws::ChimeSDKMeetings
|
|
523
530
|
# builder to represent a segment of their users.
|
524
531
|
# @return [Array<String>]
|
525
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
|
+
#
|
526
586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingRequest AWS API Documentation
|
527
587
|
#
|
528
588
|
class CreateMeetingRequest < Struct.new(
|
@@ -533,7 +593,8 @@ module Aws::ChimeSDKMeetings
|
|
533
593
|
:notifications_configuration,
|
534
594
|
:meeting_features,
|
535
595
|
:primary_meeting_id,
|
536
|
-
:tenant_ids
|
596
|
+
:tenant_ids,
|
597
|
+
:tags)
|
537
598
|
SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
|
538
599
|
include Aws::Structure
|
539
600
|
end
|
@@ -581,6 +642,12 @@ module Aws::ChimeSDKMeetings
|
|
581
642
|
# ],
|
582
643
|
# primary_meeting_id: "PrimaryMeetingId",
|
583
644
|
# tenant_ids: ["TenantId"],
|
645
|
+
# tags: [
|
646
|
+
# {
|
647
|
+
# key: "TagKey", # required
|
648
|
+
# value: "TagValue", # required
|
649
|
+
# },
|
650
|
+
# ],
|
584
651
|
# }
|
585
652
|
#
|
586
653
|
# @!attribute [rw] client_request_token
|
@@ -636,6 +703,10 @@ module Aws::ChimeSDKMeetings
|
|
636
703
|
# builder to represent a segment of their users.
|
637
704
|
# @return [Array<String>]
|
638
705
|
#
|
706
|
+
# @!attribute [rw] tags
|
707
|
+
# The tags in the request.
|
708
|
+
# @return [Array<Types::Tag>]
|
709
|
+
#
|
639
710
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/CreateMeetingWithAttendeesRequest AWS API Documentation
|
640
711
|
#
|
641
712
|
class CreateMeetingWithAttendeesRequest < Struct.new(
|
@@ -647,7 +718,8 @@ module Aws::ChimeSDKMeetings
|
|
647
718
|
:notifications_configuration,
|
648
719
|
:attendees,
|
649
720
|
:primary_meeting_id,
|
650
|
-
:tenant_ids
|
721
|
+
:tenant_ids,
|
722
|
+
:tags)
|
651
723
|
SENSITIVE = [:client_request_token, :meeting_host_id, :external_meeting_id]
|
652
724
|
include Aws::Structure
|
653
725
|
end
|
@@ -1059,6 +1131,37 @@ module Aws::ChimeSDKMeetings
|
|
1059
1131
|
include Aws::Structure
|
1060
1132
|
end
|
1061
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
|
+
|
1062
1165
|
# A set of endpoints used by clients to connect to the media service
|
1063
1166
|
# group for an Amazon Chime SDK meeting.
|
1064
1167
|
#
|
@@ -1151,6 +1254,10 @@ module Aws::ChimeSDKMeetings
|
|
1151
1254
|
# Array of strings.
|
1152
1255
|
# @return [Array<String>]
|
1153
1256
|
#
|
1257
|
+
# @!attribute [rw] meeting_arn
|
1258
|
+
# The ARN of the meeting.
|
1259
|
+
# @return [String]
|
1260
|
+
#
|
1154
1261
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/Meeting AWS API Documentation
|
1155
1262
|
#
|
1156
1263
|
class Meeting < Struct.new(
|
@@ -1161,7 +1268,8 @@ module Aws::ChimeSDKMeetings
|
|
1161
1268
|
:media_placement,
|
1162
1269
|
:meeting_features,
|
1163
1270
|
:primary_meeting_id,
|
1164
|
-
:tenant_ids
|
1271
|
+
:tenant_ids,
|
1272
|
+
:meeting_arn)
|
1165
1273
|
SENSITIVE = [:meeting_host_id, :external_meeting_id]
|
1166
1274
|
include Aws::Structure
|
1167
1275
|
end
|
@@ -1249,6 +1357,33 @@ module Aws::ChimeSDKMeetings
|
|
1249
1357
|
include Aws::Structure
|
1250
1358
|
end
|
1251
1359
|
|
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
|
+
|
1252
1387
|
# The service encountered an unexpected error.
|
1253
1388
|
#
|
1254
1389
|
# @!attribute [rw] code
|
@@ -1258,6 +1393,7 @@ module Aws::ChimeSDKMeetings
|
|
1258
1393
|
# @return [String]
|
1259
1394
|
#
|
1260
1395
|
# @!attribute [rw] request_id
|
1396
|
+
# The ID of the failed request.
|
1261
1397
|
# @return [String]
|
1262
1398
|
#
|
1263
1399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ServiceFailureException AWS API Documentation
|
@@ -1369,6 +1505,67 @@ module Aws::ChimeSDKMeetings
|
|
1369
1505
|
include Aws::Structure
|
1370
1506
|
end
|
1371
1507
|
|
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
|
+
|
1372
1569
|
# The number of customer requests exceeds the request rate limit.
|
1373
1570
|
#
|
1374
1571
|
# @!attribute [rw] code
|
@@ -1378,6 +1575,7 @@ module Aws::ChimeSDKMeetings
|
|
1378
1575
|
# @return [String]
|
1379
1576
|
#
|
1380
1577
|
# @!attribute [rw] request_id
|
1578
|
+
# The ID of the request that exceeded the throttling limit.
|
1381
1579
|
# @return [String]
|
1382
1580
|
#
|
1383
1581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-meetings-2021-07-15/ThrottlingException AWS API Documentation
|
@@ -1390,6 +1588,33 @@ module Aws::ChimeSDKMeetings
|
|
1390
1588
|
include Aws::Structure
|
1391
1589
|
end
|
1392
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
|
+
|
1393
1618
|
# The configuration for the current transcription operation. Must
|
1394
1619
|
# contain `EngineTranscribeSettings` or
|
1395
1620
|
# `EngineTranscribeMedicalSettings`.
|
@@ -1490,6 +1715,35 @@ module Aws::ChimeSDKMeetings
|
|
1490
1715
|
include Aws::Structure
|
1491
1716
|
end
|
1492
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
|
+
|
1493
1747
|
# @note When making an API call, you may pass UpdateAttendeeCapabilitiesRequest
|
1494
1748
|
# data as a hash:
|
1495
1749
|
#
|
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
|