aws-sdk-chime 1.22.0 → 1.23.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 +5 -5
- data/lib/aws-sdk-chime.rb +1 -1
- data/lib/aws-sdk-chime/client.rb +362 -1
- data/lib/aws-sdk-chime/client_api.rb +222 -0
- data/lib/aws-sdk-chime/types.rb +413 -2
- metadata +3 -3
@@ -30,6 +30,8 @@ module Aws::Chime
|
|
30
30
|
AssociateSigninDelegateGroupsWithAccountResponse = Shapes::StructureShape.new(name: 'AssociateSigninDelegateGroupsWithAccountResponse')
|
31
31
|
Attendee = Shapes::StructureShape.new(name: 'Attendee')
|
32
32
|
AttendeeList = Shapes::ListShape.new(name: 'AttendeeList')
|
33
|
+
AttendeeTagKeyList = Shapes::ListShape.new(name: 'AttendeeTagKeyList')
|
34
|
+
AttendeeTagList = Shapes::ListShape.new(name: 'AttendeeTagList')
|
33
35
|
BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
|
34
36
|
BatchCreateAttendeeErrorList = Shapes::ListShape.new(name: 'BatchCreateAttendeeErrorList')
|
35
37
|
BatchCreateAttendeeRequest = Shapes::StructureShape.new(name: 'BatchCreateAttendeeRequest')
|
@@ -120,6 +122,7 @@ module Aws::Chime
|
|
120
122
|
EmailStatus = Shapes::StringShape.new(name: 'EmailStatus')
|
121
123
|
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
122
124
|
EventsConfiguration = Shapes::StructureShape.new(name: 'EventsConfiguration')
|
125
|
+
ExternalMeetingIdType = Shapes::StringShape.new(name: 'ExternalMeetingIdType')
|
123
126
|
ExternalUserIdType = Shapes::StringShape.new(name: 'ExternalUserIdType')
|
124
127
|
ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
|
125
128
|
GeoMatchLevel = Shapes::StringShape.new(name: 'GeoMatchLevel')
|
@@ -179,10 +182,14 @@ module Aws::Chime
|
|
179
182
|
LicenseList = Shapes::ListShape.new(name: 'LicenseList')
|
180
183
|
ListAccountsRequest = Shapes::StructureShape.new(name: 'ListAccountsRequest')
|
181
184
|
ListAccountsResponse = Shapes::StructureShape.new(name: 'ListAccountsResponse')
|
185
|
+
ListAttendeeTagsRequest = Shapes::StructureShape.new(name: 'ListAttendeeTagsRequest')
|
186
|
+
ListAttendeeTagsResponse = Shapes::StructureShape.new(name: 'ListAttendeeTagsResponse')
|
182
187
|
ListAttendeesRequest = Shapes::StructureShape.new(name: 'ListAttendeesRequest')
|
183
188
|
ListAttendeesResponse = Shapes::StructureShape.new(name: 'ListAttendeesResponse')
|
184
189
|
ListBotsRequest = Shapes::StructureShape.new(name: 'ListBotsRequest')
|
185
190
|
ListBotsResponse = Shapes::StructureShape.new(name: 'ListBotsResponse')
|
191
|
+
ListMeetingTagsRequest = Shapes::StructureShape.new(name: 'ListMeetingTagsRequest')
|
192
|
+
ListMeetingTagsResponse = Shapes::StructureShape.new(name: 'ListMeetingTagsResponse')
|
186
193
|
ListMeetingsRequest = Shapes::StructureShape.new(name: 'ListMeetingsRequest')
|
187
194
|
ListMeetingsResponse = Shapes::StructureShape.new(name: 'ListMeetingsResponse')
|
188
195
|
ListPhoneNumberOrdersRequest = Shapes::StructureShape.new(name: 'ListPhoneNumberOrdersRequest')
|
@@ -195,6 +202,8 @@ module Aws::Chime
|
|
195
202
|
ListRoomMembershipsResponse = Shapes::StructureShape.new(name: 'ListRoomMembershipsResponse')
|
196
203
|
ListRoomsRequest = Shapes::StructureShape.new(name: 'ListRoomsRequest')
|
197
204
|
ListRoomsResponse = Shapes::StructureShape.new(name: 'ListRoomsResponse')
|
205
|
+
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
206
|
+
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
198
207
|
ListUsersRequest = Shapes::StructureShape.new(name: 'ListUsersRequest')
|
199
208
|
ListUsersResponse = Shapes::StructureShape.new(name: 'ListUsersResponse')
|
200
209
|
ListVoiceConnectorGroupsRequest = Shapes::StructureShape.new(name: 'ListVoiceConnectorGroupsRequest')
|
@@ -210,6 +219,8 @@ module Aws::Chime
|
|
210
219
|
Meeting = Shapes::StructureShape.new(name: 'Meeting')
|
211
220
|
MeetingList = Shapes::ListShape.new(name: 'MeetingList')
|
212
221
|
MeetingNotificationConfiguration = Shapes::StructureShape.new(name: 'MeetingNotificationConfiguration')
|
222
|
+
MeetingTagKeyList = Shapes::ListShape.new(name: 'MeetingTagKeyList')
|
223
|
+
MeetingTagList = Shapes::ListShape.new(name: 'MeetingTagList')
|
213
224
|
Member = Shapes::StructureShape.new(name: 'Member')
|
214
225
|
MemberError = Shapes::StructureShape.new(name: 'MemberError')
|
215
226
|
MemberErrorList = Shapes::ListShape.new(name: 'MemberErrorList')
|
@@ -297,6 +308,14 @@ module Aws::Chime
|
|
297
308
|
String = Shapes::StringShape.new(name: 'String')
|
298
309
|
String128 = Shapes::StringShape.new(name: 'String128')
|
299
310
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
311
|
+
Tag = Shapes::StructureShape.new(name: 'Tag')
|
312
|
+
TagAttendeeRequest = Shapes::StructureShape.new(name: 'TagAttendeeRequest')
|
313
|
+
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
314
|
+
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
315
|
+
TagList = Shapes::ListShape.new(name: 'TagList')
|
316
|
+
TagMeetingRequest = Shapes::StructureShape.new(name: 'TagMeetingRequest')
|
317
|
+
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
318
|
+
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
300
319
|
TelephonySettings = Shapes::StructureShape.new(name: 'TelephonySettings')
|
301
320
|
Termination = Shapes::StructureShape.new(name: 'Termination')
|
302
321
|
TerminationHealth = Shapes::StructureShape.new(name: 'TerminationHealth')
|
@@ -304,6 +323,9 @@ module Aws::Chime
|
|
304
323
|
TollFreePrefix = Shapes::StringShape.new(name: 'TollFreePrefix')
|
305
324
|
UnauthorizedClientException = Shapes::StructureShape.new(name: 'UnauthorizedClientException')
|
306
325
|
UnprocessableEntityException = Shapes::StructureShape.new(name: 'UnprocessableEntityException')
|
326
|
+
UntagAttendeeRequest = Shapes::StructureShape.new(name: 'UntagAttendeeRequest')
|
327
|
+
UntagMeetingRequest = Shapes::StructureShape.new(name: 'UntagMeetingRequest')
|
328
|
+
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
307
329
|
UpdateAccountRequest = Shapes::StructureShape.new(name: 'UpdateAccountRequest')
|
308
330
|
UpdateAccountResponse = Shapes::StructureShape.new(name: 'UpdateAccountResponse')
|
309
331
|
UpdateAccountSettingsRequest = Shapes::StructureShape.new(name: 'UpdateAccountSettingsRequest')
|
@@ -412,6 +434,10 @@ module Aws::Chime
|
|
412
434
|
|
413
435
|
AttendeeList.member = Shapes::ShapeRef.new(shape: Attendee)
|
414
436
|
|
437
|
+
AttendeeTagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
438
|
+
|
439
|
+
AttendeeTagList.member = Shapes::ShapeRef.new(shape: Tag)
|
440
|
+
|
415
441
|
BadRequestException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
|
416
442
|
BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
417
443
|
BadRequestException.struct_class = Types::BadRequestException
|
@@ -506,9 +532,11 @@ module Aws::Chime
|
|
506
532
|
|
507
533
|
CreateAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
|
508
534
|
CreateAttendeeRequest.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserIdType, required: true, location_name: "ExternalUserId"))
|
535
|
+
CreateAttendeeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: AttendeeTagList, location_name: "Tags"))
|
509
536
|
CreateAttendeeRequest.struct_class = Types::CreateAttendeeRequest
|
510
537
|
|
511
538
|
CreateAttendeeRequestItem.add_member(:external_user_id, Shapes::ShapeRef.new(shape: ExternalUserIdType, required: true, location_name: "ExternalUserId"))
|
539
|
+
CreateAttendeeRequestItem.add_member(:tags, Shapes::ShapeRef.new(shape: AttendeeTagList, location_name: "Tags"))
|
512
540
|
CreateAttendeeRequestItem.struct_class = Types::CreateAttendeeRequestItem
|
513
541
|
|
514
542
|
CreateAttendeeRequestItemList.member = Shapes::ShapeRef.new(shape: CreateAttendeeRequestItem)
|
@@ -525,8 +553,10 @@ module Aws::Chime
|
|
525
553
|
CreateBotResponse.struct_class = Types::CreateBotResponse
|
526
554
|
|
527
555
|
CreateMeetingRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
556
|
+
CreateMeetingRequest.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingIdType, location_name: "ExternalMeetingId"))
|
528
557
|
CreateMeetingRequest.add_member(:meeting_host_id, Shapes::ShapeRef.new(shape: ExternalUserIdType, location_name: "MeetingHostId"))
|
529
558
|
CreateMeetingRequest.add_member(:media_region, Shapes::ShapeRef.new(shape: String, location_name: "MediaRegion"))
|
559
|
+
CreateMeetingRequest.add_member(:tags, Shapes::ShapeRef.new(shape: MeetingTagList, location_name: "Tags"))
|
530
560
|
CreateMeetingRequest.add_member(:notifications_configuration, Shapes::ShapeRef.new(shape: MeetingNotificationConfiguration, location_name: "NotificationsConfiguration"))
|
531
561
|
CreateMeetingRequest.struct_class = Types::CreateMeetingRequest
|
532
562
|
|
@@ -858,6 +888,13 @@ module Aws::Chime
|
|
858
888
|
ListAccountsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
859
889
|
ListAccountsResponse.struct_class = Types::ListAccountsResponse
|
860
890
|
|
891
|
+
ListAttendeeTagsRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
|
892
|
+
ListAttendeeTagsRequest.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "attendeeId"))
|
893
|
+
ListAttendeeTagsRequest.struct_class = Types::ListAttendeeTagsRequest
|
894
|
+
|
895
|
+
ListAttendeeTagsResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
896
|
+
ListAttendeeTagsResponse.struct_class = Types::ListAttendeeTagsResponse
|
897
|
+
|
861
898
|
ListAttendeesRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
|
862
899
|
ListAttendeesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
|
863
900
|
ListAttendeesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ResultMax, location: "querystring", location_name: "max-results"))
|
@@ -876,6 +913,12 @@ module Aws::Chime
|
|
876
913
|
ListBotsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
877
914
|
ListBotsResponse.struct_class = Types::ListBotsResponse
|
878
915
|
|
916
|
+
ListMeetingTagsRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
|
917
|
+
ListMeetingTagsRequest.struct_class = Types::ListMeetingTagsRequest
|
918
|
+
|
919
|
+
ListMeetingTagsResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
920
|
+
ListMeetingTagsResponse.struct_class = Types::ListMeetingTagsResponse
|
921
|
+
|
879
922
|
ListMeetingsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
|
880
923
|
ListMeetingsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ResultMax, location: "querystring", location_name: "max-results"))
|
881
924
|
ListMeetingsRequest.struct_class = Types::ListMeetingsRequest
|
@@ -934,6 +977,12 @@ module Aws::Chime
|
|
934
977
|
ListRoomsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
935
978
|
ListRoomsResponse.struct_class = Types::ListRoomsResponse
|
936
979
|
|
980
|
+
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "querystring", location_name: "arn"))
|
981
|
+
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
982
|
+
|
983
|
+
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
984
|
+
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
985
|
+
|
937
986
|
ListUsersRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
|
938
987
|
ListUsersRequest.add_member(:user_email, Shapes::ShapeRef.new(shape: EmailAddress, location: "querystring", location_name: "user-email"))
|
939
988
|
ListUsersRequest.add_member(:user_type, Shapes::ShapeRef.new(shape: UserType, location: "querystring", location_name: "user-type"))
|
@@ -986,6 +1035,7 @@ module Aws::Chime
|
|
986
1035
|
MediaPlacement.struct_class = Types::MediaPlacement
|
987
1036
|
|
988
1037
|
Meeting.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "MeetingId"))
|
1038
|
+
Meeting.add_member(:external_meeting_id, Shapes::ShapeRef.new(shape: ExternalMeetingIdType, location_name: "ExternalMeetingId"))
|
989
1039
|
Meeting.add_member(:media_placement, Shapes::ShapeRef.new(shape: MediaPlacement, location_name: "MediaPlacement"))
|
990
1040
|
Meeting.add_member(:media_region, Shapes::ShapeRef.new(shape: String, location_name: "MediaRegion"))
|
991
1041
|
Meeting.struct_class = Types::Meeting
|
@@ -996,6 +1046,10 @@ module Aws::Chime
|
|
996
1046
|
MeetingNotificationConfiguration.add_member(:sqs_queue_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SqsQueueArn"))
|
997
1047
|
MeetingNotificationConfiguration.struct_class = Types::MeetingNotificationConfiguration
|
998
1048
|
|
1049
|
+
MeetingTagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
1050
|
+
|
1051
|
+
MeetingTagList.member = Shapes::ShapeRef.new(shape: Tag)
|
1052
|
+
|
999
1053
|
Member.add_member(:member_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "MemberId"))
|
1000
1054
|
Member.add_member(:member_type, Shapes::ShapeRef.new(shape: MemberType, location_name: "MemberType"))
|
1001
1055
|
Member.add_member(:email, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "Email"))
|
@@ -1247,6 +1301,27 @@ module Aws::Chime
|
|
1247
1301
|
|
1248
1302
|
StringList.member = Shapes::ShapeRef.new(shape: String)
|
1249
1303
|
|
1304
|
+
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
|
1305
|
+
Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "Value"))
|
1306
|
+
Tag.struct_class = Types::Tag
|
1307
|
+
|
1308
|
+
TagAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
|
1309
|
+
TagAttendeeRequest.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "attendeeId"))
|
1310
|
+
TagAttendeeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: AttendeeTagList, required: true, location_name: "Tags"))
|
1311
|
+
TagAttendeeRequest.struct_class = Types::TagAttendeeRequest
|
1312
|
+
|
1313
|
+
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
1314
|
+
|
1315
|
+
TagList.member = Shapes::ShapeRef.new(shape: Tag)
|
1316
|
+
|
1317
|
+
TagMeetingRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
|
1318
|
+
TagMeetingRequest.add_member(:tags, Shapes::ShapeRef.new(shape: MeetingTagList, required: true, location_name: "Tags"))
|
1319
|
+
TagMeetingRequest.struct_class = Types::TagMeetingRequest
|
1320
|
+
|
1321
|
+
TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "ResourceARN"))
|
1322
|
+
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "Tags"))
|
1323
|
+
TagResourceRequest.struct_class = Types::TagResourceRequest
|
1324
|
+
|
1250
1325
|
TelephonySettings.add_member(:inbound_calling, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "InboundCalling"))
|
1251
1326
|
TelephonySettings.add_member(:outbound_calling, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "OutboundCalling"))
|
1252
1327
|
TelephonySettings.add_member(:sms, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "SMS"))
|
@@ -1275,6 +1350,19 @@ module Aws::Chime
|
|
1275
1350
|
UnprocessableEntityException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
1276
1351
|
UnprocessableEntityException.struct_class = Types::UnprocessableEntityException
|
1277
1352
|
|
1353
|
+
UntagAttendeeRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
|
1354
|
+
UntagAttendeeRequest.add_member(:attendee_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "attendeeId"))
|
1355
|
+
UntagAttendeeRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: AttendeeTagKeyList, required: true, location_name: "TagKeys"))
|
1356
|
+
UntagAttendeeRequest.struct_class = Types::UntagAttendeeRequest
|
1357
|
+
|
1358
|
+
UntagMeetingRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
|
1359
|
+
UntagMeetingRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: MeetingTagKeyList, required: true, location_name: "TagKeys"))
|
1360
|
+
UntagMeetingRequest.struct_class = Types::UntagMeetingRequest
|
1361
|
+
|
1362
|
+
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "ResourceARN"))
|
1363
|
+
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
|
1364
|
+
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
1365
|
+
|
1278
1366
|
UpdateAccountRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
|
1279
1367
|
UpdateAccountRequest.add_member(:name, Shapes::ShapeRef.new(shape: AccountName, location_name: "Name"))
|
1280
1368
|
UpdateAccountRequest.struct_class = Types::UpdateAccountRequest
|
@@ -2453,6 +2541,21 @@ module Aws::Chime
|
|
2453
2541
|
)
|
2454
2542
|
end)
|
2455
2543
|
|
2544
|
+
api.add_operation(:list_attendee_tags, Seahorse::Model::Operation.new.tap do |o|
|
2545
|
+
o.name = "ListAttendeeTags"
|
2546
|
+
o.http_method = "GET"
|
2547
|
+
o.http_request_uri = "/meetings/{meetingId}/attendees/{attendeeId}/tags"
|
2548
|
+
o.input = Shapes::ShapeRef.new(shape: ListAttendeeTagsRequest)
|
2549
|
+
o.output = Shapes::ShapeRef.new(shape: ListAttendeeTagsResponse)
|
2550
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
2551
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
2552
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
2553
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
2554
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
2555
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
2556
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
2557
|
+
end)
|
2558
|
+
|
2456
2559
|
api.add_operation(:list_attendees, Seahorse::Model::Operation.new.tap do |o|
|
2457
2560
|
o.name = "ListAttendees"
|
2458
2561
|
o.http_method = "GET"
|
@@ -2495,6 +2598,21 @@ module Aws::Chime
|
|
2495
2598
|
)
|
2496
2599
|
end)
|
2497
2600
|
|
2601
|
+
api.add_operation(:list_meeting_tags, Seahorse::Model::Operation.new.tap do |o|
|
2602
|
+
o.name = "ListMeetingTags"
|
2603
|
+
o.http_method = "GET"
|
2604
|
+
o.http_request_uri = "/meetings/{meetingId}/tags"
|
2605
|
+
o.input = Shapes::ShapeRef.new(shape: ListMeetingTagsRequest)
|
2606
|
+
o.output = Shapes::ShapeRef.new(shape: ListMeetingTagsResponse)
|
2607
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
2608
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
2609
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
2610
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
2611
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
2612
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
2613
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
2614
|
+
end)
|
2615
|
+
|
2498
2616
|
api.add_operation(:list_meetings, Seahorse::Model::Operation.new.tap do |o|
|
2499
2617
|
o.name = "ListMeetings"
|
2500
2618
|
o.http_method = "GET"
|
@@ -2618,6 +2736,20 @@ module Aws::Chime
|
|
2618
2736
|
)
|
2619
2737
|
end)
|
2620
2738
|
|
2739
|
+
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
2740
|
+
o.name = "ListTagsForResource"
|
2741
|
+
o.http_method = "GET"
|
2742
|
+
o.http_request_uri = "/tags"
|
2743
|
+
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
|
2744
|
+
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
|
2745
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
2746
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
2747
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
2748
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
2749
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
2750
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
2751
|
+
end)
|
2752
|
+
|
2621
2753
|
api.add_operation(:list_users, Seahorse::Model::Operation.new.tap do |o|
|
2622
2754
|
o.name = "ListUsers"
|
2623
2755
|
o.http_method = "GET"
|
@@ -2877,6 +3009,96 @@ module Aws::Chime
|
|
2877
3009
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
2878
3010
|
end)
|
2879
3011
|
|
3012
|
+
api.add_operation(:tag_attendee, Seahorse::Model::Operation.new.tap do |o|
|
3013
|
+
o.name = "TagAttendee"
|
3014
|
+
o.http_method = "POST"
|
3015
|
+
o.http_request_uri = "/meetings/{meetingId}/attendees/{attendeeId}/tags?operation=add"
|
3016
|
+
o.input = Shapes::ShapeRef.new(shape: TagAttendeeRequest)
|
3017
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3018
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
3019
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
3020
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3021
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
3022
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
3023
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
3024
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
3025
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
3026
|
+
end)
|
3027
|
+
|
3028
|
+
api.add_operation(:tag_meeting, Seahorse::Model::Operation.new.tap do |o|
|
3029
|
+
o.name = "TagMeeting"
|
3030
|
+
o.http_method = "POST"
|
3031
|
+
o.http_request_uri = "/meetings/{meetingId}/tags?operation=add"
|
3032
|
+
o.input = Shapes::ShapeRef.new(shape: TagMeetingRequest)
|
3033
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3034
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
3035
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
3036
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3037
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
3038
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
3039
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
3040
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
3041
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
3042
|
+
end)
|
3043
|
+
|
3044
|
+
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
3045
|
+
o.name = "TagResource"
|
3046
|
+
o.http_method = "POST"
|
3047
|
+
o.http_request_uri = "/tags?operation=tag-resource"
|
3048
|
+
o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
|
3049
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3050
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
3051
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
3052
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3053
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
3054
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
3055
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
3056
|
+
end)
|
3057
|
+
|
3058
|
+
api.add_operation(:untag_attendee, Seahorse::Model::Operation.new.tap do |o|
|
3059
|
+
o.name = "UntagAttendee"
|
3060
|
+
o.http_method = "POST"
|
3061
|
+
o.http_request_uri = "/meetings/{meetingId}/attendees/{attendeeId}/tags?operation=delete"
|
3062
|
+
o.input = Shapes::ShapeRef.new(shape: UntagAttendeeRequest)
|
3063
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3064
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
3065
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
3066
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
3067
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3068
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
3069
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
3070
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
3071
|
+
end)
|
3072
|
+
|
3073
|
+
api.add_operation(:untag_meeting, Seahorse::Model::Operation.new.tap do |o|
|
3074
|
+
o.name = "UntagMeeting"
|
3075
|
+
o.http_method = "POST"
|
3076
|
+
o.http_request_uri = "/meetings/{meetingId}/tags?operation=delete"
|
3077
|
+
o.input = Shapes::ShapeRef.new(shape: UntagMeetingRequest)
|
3078
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3079
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
3080
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
3081
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
3082
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3083
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
3084
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
3085
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
3086
|
+
end)
|
3087
|
+
|
3088
|
+
api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
|
3089
|
+
o.name = "UntagResource"
|
3090
|
+
o.http_method = "POST"
|
3091
|
+
o.http_request_uri = "/tags?operation=untag-resource"
|
3092
|
+
o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
|
3093
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3094
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
3095
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
3096
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3097
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
3098
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
3099
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
3100
|
+
end)
|
3101
|
+
|
2880
3102
|
api.add_operation(:update_account, Seahorse::Model::Operation.new.tap do |o|
|
2881
3103
|
o.name = "UpdateAccount"
|
2882
3104
|
o.http_method = "POST"
|
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -361,6 +361,12 @@ module Aws::Chime
|
|
361
361
|
# attendees: [ # required
|
362
362
|
# {
|
363
363
|
# external_user_id: "ExternalUserIdType", # required
|
364
|
+
# tags: [
|
365
|
+
# {
|
366
|
+
# key: "TagKey", # required
|
367
|
+
# value: "TagValue", # required
|
368
|
+
# },
|
369
|
+
# ],
|
364
370
|
# },
|
365
371
|
# ],
|
366
372
|
# }
|
@@ -792,6 +798,12 @@ module Aws::Chime
|
|
792
798
|
# {
|
793
799
|
# meeting_id: "GuidString", # required
|
794
800
|
# external_user_id: "ExternalUserIdType", # required
|
801
|
+
# tags: [
|
802
|
+
# {
|
803
|
+
# key: "TagKey", # required
|
804
|
+
# value: "TagValue", # required
|
805
|
+
# },
|
806
|
+
# ],
|
795
807
|
# }
|
796
808
|
#
|
797
809
|
# @!attribute [rw] meeting_id
|
@@ -803,11 +815,16 @@ module Aws::Chime
|
|
803
815
|
# identity managed by a builder application.
|
804
816
|
# @return [String]
|
805
817
|
#
|
818
|
+
# @!attribute [rw] tags
|
819
|
+
# The tag key-value pairs.
|
820
|
+
# @return [Array<Types::Tag>]
|
821
|
+
#
|
806
822
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateAttendeeRequest AWS API Documentation
|
807
823
|
#
|
808
824
|
class CreateAttendeeRequest < Struct.new(
|
809
825
|
:meeting_id,
|
810
|
-
:external_user_id
|
826
|
+
:external_user_id,
|
827
|
+
:tags)
|
811
828
|
include Aws::Structure
|
812
829
|
end
|
813
830
|
|
@@ -819,6 +836,12 @@ module Aws::Chime
|
|
819
836
|
#
|
820
837
|
# {
|
821
838
|
# external_user_id: "ExternalUserIdType", # required
|
839
|
+
# tags: [
|
840
|
+
# {
|
841
|
+
# key: "TagKey", # required
|
842
|
+
# value: "TagValue", # required
|
843
|
+
# },
|
844
|
+
# ],
|
822
845
|
# }
|
823
846
|
#
|
824
847
|
# @!attribute [rw] external_user_id
|
@@ -826,10 +849,15 @@ module Aws::Chime
|
|
826
849
|
# identity managed by a builder application.
|
827
850
|
# @return [String]
|
828
851
|
#
|
852
|
+
# @!attribute [rw] tags
|
853
|
+
# The tag key-value pairs.
|
854
|
+
# @return [Array<Types::Tag>]
|
855
|
+
#
|
829
856
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateAttendeeRequestItem AWS API Documentation
|
830
857
|
#
|
831
858
|
class CreateAttendeeRequestItem < Struct.new(
|
832
|
-
:external_user_id
|
859
|
+
:external_user_id,
|
860
|
+
:tags)
|
833
861
|
include Aws::Structure
|
834
862
|
end
|
835
863
|
|
@@ -890,8 +918,15 @@ module Aws::Chime
|
|
890
918
|
#
|
891
919
|
# {
|
892
920
|
# client_request_token: "ClientRequestToken", # required
|
921
|
+
# external_meeting_id: "ExternalMeetingIdType",
|
893
922
|
# meeting_host_id: "ExternalUserIdType",
|
894
923
|
# media_region: "String",
|
924
|
+
# tags: [
|
925
|
+
# {
|
926
|
+
# key: "TagKey", # required
|
927
|
+
# value: "TagValue", # required
|
928
|
+
# },
|
929
|
+
# ],
|
895
930
|
# notifications_configuration: {
|
896
931
|
# sns_topic_arn: "Arn",
|
897
932
|
# sqs_queue_arn: "Arn",
|
@@ -906,6 +941,10 @@ module Aws::Chime
|
|
906
941
|
# not need to pass this option.
|
907
942
|
# @return [String]
|
908
943
|
#
|
944
|
+
# @!attribute [rw] external_meeting_id
|
945
|
+
# The external meeting ID.
|
946
|
+
# @return [String]
|
947
|
+
#
|
909
948
|
# @!attribute [rw] meeting_host_id
|
910
949
|
# Reserved.
|
911
950
|
# @return [String]
|
@@ -918,6 +957,10 @@ module Aws::Chime
|
|
918
957
|
# `us-west-1`, `us-west-2`.
|
919
958
|
# @return [String]
|
920
959
|
#
|
960
|
+
# @!attribute [rw] tags
|
961
|
+
# The tag key-value pairs.
|
962
|
+
# @return [Array<Types::Tag>]
|
963
|
+
#
|
921
964
|
# @!attribute [rw] notifications_configuration
|
922
965
|
# The configuration for resource targets to receive notifications when
|
923
966
|
# meeting and attendee events occur.
|
@@ -927,8 +970,10 @@ module Aws::Chime
|
|
927
970
|
#
|
928
971
|
class CreateMeetingRequest < Struct.new(
|
929
972
|
:client_request_token,
|
973
|
+
:external_meeting_id,
|
930
974
|
:meeting_host_id,
|
931
975
|
:media_region,
|
976
|
+
:tags,
|
932
977
|
:notifications_configuration)
|
933
978
|
include Aws::Structure
|
934
979
|
end
|
@@ -998,27 +1043,37 @@ module Aws::Chime
|
|
998
1043
|
# }
|
999
1044
|
#
|
1000
1045
|
# @!attribute [rw] voice_connector_id
|
1046
|
+
# The Amazon Chime voice connector ID.
|
1001
1047
|
# @return [String]
|
1002
1048
|
#
|
1003
1049
|
# @!attribute [rw] participant_phone_numbers
|
1050
|
+
# The participant phone numbers.
|
1004
1051
|
# @return [Array<String>]
|
1005
1052
|
#
|
1006
1053
|
# @!attribute [rw] name
|
1054
|
+
# The name of the proxy session.
|
1007
1055
|
# @return [String]
|
1008
1056
|
#
|
1009
1057
|
# @!attribute [rw] expiry_minutes
|
1058
|
+
# The number of minutes allowed for the proxy session.
|
1010
1059
|
# @return [Integer]
|
1011
1060
|
#
|
1012
1061
|
# @!attribute [rw] capabilities
|
1062
|
+
# The proxy session capabilities.
|
1013
1063
|
# @return [Array<String>]
|
1014
1064
|
#
|
1015
1065
|
# @!attribute [rw] number_selection_behavior
|
1066
|
+
# The preference for proxy phone number reuse, or stickiness, between
|
1067
|
+
# the same participants across sessions.
|
1016
1068
|
# @return [String]
|
1017
1069
|
#
|
1018
1070
|
# @!attribute [rw] geo_match_level
|
1071
|
+
# The preference for matching the country or area code of the proxy
|
1072
|
+
# phone number with that of the first participant.
|
1019
1073
|
# @return [String]
|
1020
1074
|
#
|
1021
1075
|
# @!attribute [rw] geo_match_params
|
1076
|
+
# The country and area code for the proxy phone number.
|
1022
1077
|
# @return [Types::GeoMatchParams]
|
1023
1078
|
#
|
1024
1079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateProxySessionRequest AWS API Documentation
|
@@ -1036,6 +1091,7 @@ module Aws::Chime
|
|
1036
1091
|
end
|
1037
1092
|
|
1038
1093
|
# @!attribute [rw] proxy_session
|
1094
|
+
# The proxy session details.
|
1039
1095
|
# @return [Types::ProxySession]
|
1040
1096
|
#
|
1041
1097
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateProxySessionResponse AWS API Documentation
|
@@ -1410,9 +1466,11 @@ module Aws::Chime
|
|
1410
1466
|
# }
|
1411
1467
|
#
|
1412
1468
|
# @!attribute [rw] voice_connector_id
|
1469
|
+
# The Amazon Chime voice connector ID.
|
1413
1470
|
# @return [String]
|
1414
1471
|
#
|
1415
1472
|
# @!attribute [rw] proxy_session_id
|
1473
|
+
# The proxy session ID.
|
1416
1474
|
# @return [String]
|
1417
1475
|
#
|
1418
1476
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteProxySessionRequest AWS API Documentation
|
@@ -1521,6 +1579,7 @@ module Aws::Chime
|
|
1521
1579
|
# }
|
1522
1580
|
#
|
1523
1581
|
# @!attribute [rw] voice_connector_id
|
1582
|
+
# The Amazon Chime Voice Connector ID.
|
1524
1583
|
# @return [String]
|
1525
1584
|
#
|
1526
1585
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteVoiceConnectorProxyRequest AWS API Documentation
|
@@ -1781,6 +1840,9 @@ module Aws::Chime
|
|
1781
1840
|
include Aws::Structure
|
1782
1841
|
end
|
1783
1842
|
|
1843
|
+
# The country and area code for a proxy phone number in a proxy phone
|
1844
|
+
# session.
|
1845
|
+
#
|
1784
1846
|
# @note When making an API call, you may pass GeoMatchParams
|
1785
1847
|
# data as a hash:
|
1786
1848
|
#
|
@@ -1790,9 +1852,11 @@ module Aws::Chime
|
|
1790
1852
|
# }
|
1791
1853
|
#
|
1792
1854
|
# @!attribute [rw] country
|
1855
|
+
# The country.
|
1793
1856
|
# @return [String]
|
1794
1857
|
#
|
1795
1858
|
# @!attribute [rw] area_code
|
1859
|
+
# The area code.
|
1796
1860
|
# @return [String]
|
1797
1861
|
#
|
1798
1862
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GeoMatchParams AWS API Documentation
|
@@ -2094,9 +2158,11 @@ module Aws::Chime
|
|
2094
2158
|
# }
|
2095
2159
|
#
|
2096
2160
|
# @!attribute [rw] voice_connector_id
|
2161
|
+
# The Amazon Chime voice connector ID.
|
2097
2162
|
# @return [String]
|
2098
2163
|
#
|
2099
2164
|
# @!attribute [rw] proxy_session_id
|
2165
|
+
# The proxy session ID.
|
2100
2166
|
# @return [String]
|
2101
2167
|
#
|
2102
2168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetProxySessionRequest AWS API Documentation
|
@@ -2108,6 +2174,7 @@ module Aws::Chime
|
|
2108
2174
|
end
|
2109
2175
|
|
2110
2176
|
# @!attribute [rw] proxy_session
|
2177
|
+
# The proxy session details.
|
2111
2178
|
# @return [Types::ProxySession]
|
2112
2179
|
#
|
2113
2180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetProxySessionResponse AWS API Documentation
|
@@ -2317,6 +2384,7 @@ module Aws::Chime
|
|
2317
2384
|
# }
|
2318
2385
|
#
|
2319
2386
|
# @!attribute [rw] voice_connector_id
|
2387
|
+
# The Amazon Chime voice connector ID.
|
2320
2388
|
# @return [String]
|
2321
2389
|
#
|
2322
2390
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnectorProxyRequest AWS API Documentation
|
@@ -2327,6 +2395,7 @@ module Aws::Chime
|
|
2327
2395
|
end
|
2328
2396
|
|
2329
2397
|
# @!attribute [rw] proxy
|
2398
|
+
# The proxy configuration details.
|
2330
2399
|
# @return [Types::Proxy]
|
2331
2400
|
#
|
2332
2401
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnectorProxyResponse AWS API Documentation
|
@@ -2575,6 +2644,41 @@ module Aws::Chime
|
|
2575
2644
|
include Aws::Structure
|
2576
2645
|
end
|
2577
2646
|
|
2647
|
+
# @note When making an API call, you may pass ListAttendeeTagsRequest
|
2648
|
+
# data as a hash:
|
2649
|
+
#
|
2650
|
+
# {
|
2651
|
+
# meeting_id: "GuidString", # required
|
2652
|
+
# attendee_id: "GuidString", # required
|
2653
|
+
# }
|
2654
|
+
#
|
2655
|
+
# @!attribute [rw] meeting_id
|
2656
|
+
# The Amazon Chime SDK meeting ID.
|
2657
|
+
# @return [String]
|
2658
|
+
#
|
2659
|
+
# @!attribute [rw] attendee_id
|
2660
|
+
# The Amazon Chime SDK attendee ID.
|
2661
|
+
# @return [String]
|
2662
|
+
#
|
2663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListAttendeeTagsRequest AWS API Documentation
|
2664
|
+
#
|
2665
|
+
class ListAttendeeTagsRequest < Struct.new(
|
2666
|
+
:meeting_id,
|
2667
|
+
:attendee_id)
|
2668
|
+
include Aws::Structure
|
2669
|
+
end
|
2670
|
+
|
2671
|
+
# @!attribute [rw] tags
|
2672
|
+
# A list of tag key-value pairs.
|
2673
|
+
# @return [Array<Types::Tag>]
|
2674
|
+
#
|
2675
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListAttendeeTagsResponse AWS API Documentation
|
2676
|
+
#
|
2677
|
+
class ListAttendeeTagsResponse < Struct.new(
|
2678
|
+
:tags)
|
2679
|
+
include Aws::Structure
|
2680
|
+
end
|
2681
|
+
|
2578
2682
|
# @note When making an API call, you may pass ListAttendeesRequest
|
2579
2683
|
# data as a hash:
|
2580
2684
|
#
|
@@ -2668,6 +2772,35 @@ module Aws::Chime
|
|
2668
2772
|
include Aws::Structure
|
2669
2773
|
end
|
2670
2774
|
|
2775
|
+
# @note When making an API call, you may pass ListMeetingTagsRequest
|
2776
|
+
# data as a hash:
|
2777
|
+
#
|
2778
|
+
# {
|
2779
|
+
# meeting_id: "GuidString", # required
|
2780
|
+
# }
|
2781
|
+
#
|
2782
|
+
# @!attribute [rw] meeting_id
|
2783
|
+
# The Amazon Chime SDK meeting ID.
|
2784
|
+
# @return [String]
|
2785
|
+
#
|
2786
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMeetingTagsRequest AWS API Documentation
|
2787
|
+
#
|
2788
|
+
class ListMeetingTagsRequest < Struct.new(
|
2789
|
+
:meeting_id)
|
2790
|
+
include Aws::Structure
|
2791
|
+
end
|
2792
|
+
|
2793
|
+
# @!attribute [rw] tags
|
2794
|
+
# A list of tag key-value pairs.
|
2795
|
+
# @return [Array<Types::Tag>]
|
2796
|
+
#
|
2797
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMeetingTagsResponse AWS API Documentation
|
2798
|
+
#
|
2799
|
+
class ListMeetingTagsResponse < Struct.new(
|
2800
|
+
:tags)
|
2801
|
+
include Aws::Structure
|
2802
|
+
end
|
2803
|
+
|
2671
2804
|
# @note When making an API call, you may pass ListMeetingsRequest
|
2672
2805
|
# data as a hash:
|
2673
2806
|
#
|
@@ -2823,15 +2956,19 @@ module Aws::Chime
|
|
2823
2956
|
# }
|
2824
2957
|
#
|
2825
2958
|
# @!attribute [rw] voice_connector_id
|
2959
|
+
# The Amazon Chime voice connector ID.
|
2826
2960
|
# @return [String]
|
2827
2961
|
#
|
2828
2962
|
# @!attribute [rw] status
|
2963
|
+
# The proxy session status.
|
2829
2964
|
# @return [String]
|
2830
2965
|
#
|
2831
2966
|
# @!attribute [rw] next_token
|
2967
|
+
# The token to use to retrieve the next page of results.
|
2832
2968
|
# @return [String]
|
2833
2969
|
#
|
2834
2970
|
# @!attribute [rw] max_results
|
2971
|
+
# The maximum number of results to return in a single call.
|
2835
2972
|
# @return [Integer]
|
2836
2973
|
#
|
2837
2974
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListProxySessionsRequest AWS API Documentation
|
@@ -2845,9 +2982,11 @@ module Aws::Chime
|
|
2845
2982
|
end
|
2846
2983
|
|
2847
2984
|
# @!attribute [rw] proxy_sessions
|
2985
|
+
# The proxy session details.
|
2848
2986
|
# @return [Array<Types::ProxySession>]
|
2849
2987
|
#
|
2850
2988
|
# @!attribute [rw] next_token
|
2989
|
+
# The token to use to retrieve the next page of results.
|
2851
2990
|
# @return [String]
|
2852
2991
|
#
|
2853
2992
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListProxySessionsResponse AWS API Documentation
|
@@ -2962,6 +3101,35 @@ module Aws::Chime
|
|
2962
3101
|
include Aws::Structure
|
2963
3102
|
end
|
2964
3103
|
|
3104
|
+
# @note When making an API call, you may pass ListTagsForResourceRequest
|
3105
|
+
# data as a hash:
|
3106
|
+
#
|
3107
|
+
# {
|
3108
|
+
# resource_arn: "Arn", # required
|
3109
|
+
# }
|
3110
|
+
#
|
3111
|
+
# @!attribute [rw] resource_arn
|
3112
|
+
# The resource ARN.
|
3113
|
+
# @return [String]
|
3114
|
+
#
|
3115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListTagsForResourceRequest AWS API Documentation
|
3116
|
+
#
|
3117
|
+
class ListTagsForResourceRequest < Struct.new(
|
3118
|
+
:resource_arn)
|
3119
|
+
include Aws::Structure
|
3120
|
+
end
|
3121
|
+
|
3122
|
+
# @!attribute [rw] tags
|
3123
|
+
# A list of tag-key value pairs.
|
3124
|
+
# @return [Array<Types::Tag>]
|
3125
|
+
#
|
3126
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListTagsForResourceResponse AWS API Documentation
|
3127
|
+
#
|
3128
|
+
class ListTagsForResourceResponse < Struct.new(
|
3129
|
+
:tags)
|
3130
|
+
include Aws::Structure
|
3131
|
+
end
|
3132
|
+
|
2965
3133
|
# @note When making an API call, you may pass ListUsersRequest
|
2966
3134
|
# data as a hash:
|
2967
3135
|
#
|
@@ -3231,6 +3399,10 @@ module Aws::Chime
|
|
3231
3399
|
# The Amazon Chime SDK meeting ID.
|
3232
3400
|
# @return [String]
|
3233
3401
|
#
|
3402
|
+
# @!attribute [rw] external_meeting_id
|
3403
|
+
# The external meeting ID.
|
3404
|
+
# @return [String]
|
3405
|
+
#
|
3234
3406
|
# @!attribute [rw] media_placement
|
3235
3407
|
# The media placement for the meeting.
|
3236
3408
|
# @return [Types::MediaPlacement]
|
@@ -3247,6 +3419,7 @@ module Aws::Chime
|
|
3247
3419
|
#
|
3248
3420
|
class Meeting < Struct.new(
|
3249
3421
|
:meeting_id,
|
3422
|
+
:external_meeting_id,
|
3250
3423
|
:media_placement,
|
3251
3424
|
:media_region)
|
3252
3425
|
include Aws::Structure
|
@@ -3484,10 +3657,15 @@ module Aws::Chime
|
|
3484
3657
|
include Aws::Structure
|
3485
3658
|
end
|
3486
3659
|
|
3660
|
+
# The phone number and proxy phone number for a participant in an Amazon
|
3661
|
+
# Chime Voice Connector proxy session.
|
3662
|
+
#
|
3487
3663
|
# @!attribute [rw] phone_number
|
3664
|
+
# The participant's phone number.
|
3488
3665
|
# @return [String]
|
3489
3666
|
#
|
3490
3667
|
# @!attribute [rw] proxy_phone_number
|
3668
|
+
# The participant's proxy phone number.
|
3491
3669
|
# @return [String]
|
3492
3670
|
#
|
3493
3671
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/Participant AWS API Documentation
|
@@ -3702,16 +3880,23 @@ module Aws::Chime
|
|
3702
3880
|
include Aws::Structure
|
3703
3881
|
end
|
3704
3882
|
|
3883
|
+
# The proxy configuration for an Amazon Chime Voice Connector.
|
3884
|
+
#
|
3705
3885
|
# @!attribute [rw] default_session_expiry_minutes
|
3886
|
+
# The default number of minutes allowed for proxy sessions.
|
3706
3887
|
# @return [Integer]
|
3707
3888
|
#
|
3708
3889
|
# @!attribute [rw] disabled
|
3890
|
+
# When true, stops proxy sessions from being created on the specified
|
3891
|
+
# Amazon Chime Voice Connector.
|
3709
3892
|
# @return [Boolean]
|
3710
3893
|
#
|
3711
3894
|
# @!attribute [rw] fall_back_phone_number
|
3895
|
+
# The phone number to route calls to after a proxy session expires.
|
3712
3896
|
# @return [String]
|
3713
3897
|
#
|
3714
3898
|
# @!attribute [rw] phone_number_countries
|
3899
|
+
# The countries for proxy phone numbers to be selected from.
|
3715
3900
|
# @return [Array<String>]
|
3716
3901
|
#
|
3717
3902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/Proxy AWS API Documentation
|
@@ -3724,43 +3909,60 @@ module Aws::Chime
|
|
3724
3909
|
include Aws::Structure
|
3725
3910
|
end
|
3726
3911
|
|
3912
|
+
# The proxy session for an Amazon Chime Voice Connector.
|
3913
|
+
#
|
3727
3914
|
# @!attribute [rw] voice_connector_id
|
3915
|
+
# The Amazon Chime voice connector ID.
|
3728
3916
|
# @return [String]
|
3729
3917
|
#
|
3730
3918
|
# @!attribute [rw] proxy_session_id
|
3919
|
+
# The proxy session ID.
|
3731
3920
|
# @return [String]
|
3732
3921
|
#
|
3733
3922
|
# @!attribute [rw] name
|
3923
|
+
# The name of the proxy session.
|
3734
3924
|
# @return [String]
|
3735
3925
|
#
|
3736
3926
|
# @!attribute [rw] status
|
3927
|
+
# The status of the proxy session.
|
3737
3928
|
# @return [String]
|
3738
3929
|
#
|
3739
3930
|
# @!attribute [rw] expiry_minutes
|
3931
|
+
# The number of minutes allowed for the proxy session.
|
3740
3932
|
# @return [Integer]
|
3741
3933
|
#
|
3742
3934
|
# @!attribute [rw] capabilities
|
3935
|
+
# The proxy session capabilities.
|
3743
3936
|
# @return [Array<String>]
|
3744
3937
|
#
|
3745
3938
|
# @!attribute [rw] created_timestamp
|
3939
|
+
# The created timestamp, in ISO 8601 format.
|
3746
3940
|
# @return [Time]
|
3747
3941
|
#
|
3748
3942
|
# @!attribute [rw] updated_timestamp
|
3943
|
+
# The updated timestamp, in ISO 8601 format.
|
3749
3944
|
# @return [Time]
|
3750
3945
|
#
|
3751
3946
|
# @!attribute [rw] ended_timestamp
|
3947
|
+
# The ended timestamp, in ISO 8601 format.
|
3752
3948
|
# @return [Time]
|
3753
3949
|
#
|
3754
3950
|
# @!attribute [rw] participants
|
3951
|
+
# The proxy session participants.
|
3755
3952
|
# @return [Array<Types::Participant>]
|
3756
3953
|
#
|
3757
3954
|
# @!attribute [rw] number_selection_behavior
|
3955
|
+
# The preference for proxy phone number reuse, or stickiness, between
|
3956
|
+
# the same participants across sessions.
|
3758
3957
|
# @return [String]
|
3759
3958
|
#
|
3760
3959
|
# @!attribute [rw] geo_match_level
|
3960
|
+
# The preference for matching the country or area code of the proxy
|
3961
|
+
# phone number with that of the first participant.
|
3761
3962
|
# @return [String]
|
3762
3963
|
#
|
3763
3964
|
# @!attribute [rw] geo_match_params
|
3965
|
+
# The country and area code for the proxy phone number.
|
3764
3966
|
# @return [Types::GeoMatchParams]
|
3765
3967
|
#
|
3766
3968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ProxySession AWS API Documentation
|
@@ -3925,18 +4127,24 @@ module Aws::Chime
|
|
3925
4127
|
# }
|
3926
4128
|
#
|
3927
4129
|
# @!attribute [rw] voice_connector_id
|
4130
|
+
# The Amazon Chime voice connector ID.
|
3928
4131
|
# @return [String]
|
3929
4132
|
#
|
3930
4133
|
# @!attribute [rw] default_session_expiry_minutes
|
4134
|
+
# The default number of minutes allowed for proxy sessions.
|
3931
4135
|
# @return [Integer]
|
3932
4136
|
#
|
3933
4137
|
# @!attribute [rw] phone_number_pool_countries
|
4138
|
+
# The countries for proxy phone numbers to be selected from.
|
3934
4139
|
# @return [Array<String>]
|
3935
4140
|
#
|
3936
4141
|
# @!attribute [rw] fall_back_phone_number
|
4142
|
+
# The phone number to route calls to after a proxy session expires.
|
3937
4143
|
# @return [String]
|
3938
4144
|
#
|
3939
4145
|
# @!attribute [rw] disabled
|
4146
|
+
# When true, stops proxy sessions from being created on the specified
|
4147
|
+
# Amazon Chime Voice Connector.
|
3940
4148
|
# @return [Boolean]
|
3941
4149
|
#
|
3942
4150
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/PutVoiceConnectorProxyRequest AWS API Documentation
|
@@ -3951,6 +4159,7 @@ module Aws::Chime
|
|
3951
4159
|
end
|
3952
4160
|
|
3953
4161
|
# @!attribute [rw] proxy
|
4162
|
+
# The proxy configuration details.
|
3954
4163
|
# @return [Types::Proxy]
|
3955
4164
|
#
|
3956
4165
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/PutVoiceConnectorProxyResponse AWS API Documentation
|
@@ -4403,6 +4612,125 @@ module Aws::Chime
|
|
4403
4612
|
include Aws::Structure
|
4404
4613
|
end
|
4405
4614
|
|
4615
|
+
# Describes a tag applied to a resource.
|
4616
|
+
#
|
4617
|
+
# @note When making an API call, you may pass Tag
|
4618
|
+
# data as a hash:
|
4619
|
+
#
|
4620
|
+
# {
|
4621
|
+
# key: "TagKey", # required
|
4622
|
+
# value: "TagValue", # required
|
4623
|
+
# }
|
4624
|
+
#
|
4625
|
+
# @!attribute [rw] key
|
4626
|
+
# The key of the tag.
|
4627
|
+
# @return [String]
|
4628
|
+
#
|
4629
|
+
# @!attribute [rw] value
|
4630
|
+
# The value of the tag.
|
4631
|
+
# @return [String]
|
4632
|
+
#
|
4633
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/Tag AWS API Documentation
|
4634
|
+
#
|
4635
|
+
class Tag < Struct.new(
|
4636
|
+
:key,
|
4637
|
+
:value)
|
4638
|
+
include Aws::Structure
|
4639
|
+
end
|
4640
|
+
|
4641
|
+
# @note When making an API call, you may pass TagAttendeeRequest
|
4642
|
+
# data as a hash:
|
4643
|
+
#
|
4644
|
+
# {
|
4645
|
+
# meeting_id: "GuidString", # required
|
4646
|
+
# attendee_id: "GuidString", # required
|
4647
|
+
# tags: [ # required
|
4648
|
+
# {
|
4649
|
+
# key: "TagKey", # required
|
4650
|
+
# value: "TagValue", # required
|
4651
|
+
# },
|
4652
|
+
# ],
|
4653
|
+
# }
|
4654
|
+
#
|
4655
|
+
# @!attribute [rw] meeting_id
|
4656
|
+
# The Amazon Chime SDK meeting ID.
|
4657
|
+
# @return [String]
|
4658
|
+
#
|
4659
|
+
# @!attribute [rw] attendee_id
|
4660
|
+
# The Amazon Chime SDK attendee ID.
|
4661
|
+
# @return [String]
|
4662
|
+
#
|
4663
|
+
# @!attribute [rw] tags
|
4664
|
+
# The tag key-value pairs.
|
4665
|
+
# @return [Array<Types::Tag>]
|
4666
|
+
#
|
4667
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/TagAttendeeRequest AWS API Documentation
|
4668
|
+
#
|
4669
|
+
class TagAttendeeRequest < Struct.new(
|
4670
|
+
:meeting_id,
|
4671
|
+
:attendee_id,
|
4672
|
+
:tags)
|
4673
|
+
include Aws::Structure
|
4674
|
+
end
|
4675
|
+
|
4676
|
+
# @note When making an API call, you may pass TagMeetingRequest
|
4677
|
+
# data as a hash:
|
4678
|
+
#
|
4679
|
+
# {
|
4680
|
+
# meeting_id: "GuidString", # required
|
4681
|
+
# tags: [ # required
|
4682
|
+
# {
|
4683
|
+
# key: "TagKey", # required
|
4684
|
+
# value: "TagValue", # required
|
4685
|
+
# },
|
4686
|
+
# ],
|
4687
|
+
# }
|
4688
|
+
#
|
4689
|
+
# @!attribute [rw] meeting_id
|
4690
|
+
# The Amazon Chime SDK meeting ID.
|
4691
|
+
# @return [String]
|
4692
|
+
#
|
4693
|
+
# @!attribute [rw] tags
|
4694
|
+
# The tag key-value pairs.
|
4695
|
+
# @return [Array<Types::Tag>]
|
4696
|
+
#
|
4697
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/TagMeetingRequest AWS API Documentation
|
4698
|
+
#
|
4699
|
+
class TagMeetingRequest < Struct.new(
|
4700
|
+
:meeting_id,
|
4701
|
+
:tags)
|
4702
|
+
include Aws::Structure
|
4703
|
+
end
|
4704
|
+
|
4705
|
+
# @note When making an API call, you may pass TagResourceRequest
|
4706
|
+
# data as a hash:
|
4707
|
+
#
|
4708
|
+
# {
|
4709
|
+
# resource_arn: "Arn", # required
|
4710
|
+
# tags: [ # required
|
4711
|
+
# {
|
4712
|
+
# key: "TagKey", # required
|
4713
|
+
# value: "TagValue", # required
|
4714
|
+
# },
|
4715
|
+
# ],
|
4716
|
+
# }
|
4717
|
+
#
|
4718
|
+
# @!attribute [rw] resource_arn
|
4719
|
+
# The resource ARN.
|
4720
|
+
# @return [String]
|
4721
|
+
#
|
4722
|
+
# @!attribute [rw] tags
|
4723
|
+
# The tag key-value pairs.
|
4724
|
+
# @return [Array<Types::Tag>]
|
4725
|
+
#
|
4726
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/TagResourceRequest AWS API Documentation
|
4727
|
+
#
|
4728
|
+
class TagResourceRequest < Struct.new(
|
4729
|
+
:resource_arn,
|
4730
|
+
:tags)
|
4731
|
+
include Aws::Structure
|
4732
|
+
end
|
4733
|
+
|
4406
4734
|
# Settings that allow management of telephony permissions for an Amazon
|
4407
4735
|
# Chime user, such as inbound and outbound calling and text messaging.
|
4408
4736
|
#
|
@@ -4553,6 +4881,84 @@ module Aws::Chime
|
|
4553
4881
|
include Aws::Structure
|
4554
4882
|
end
|
4555
4883
|
|
4884
|
+
# @note When making an API call, you may pass UntagAttendeeRequest
|
4885
|
+
# data as a hash:
|
4886
|
+
#
|
4887
|
+
# {
|
4888
|
+
# meeting_id: "GuidString", # required
|
4889
|
+
# attendee_id: "GuidString", # required
|
4890
|
+
# tag_keys: ["TagKey"], # required
|
4891
|
+
# }
|
4892
|
+
#
|
4893
|
+
# @!attribute [rw] meeting_id
|
4894
|
+
# The Amazon Chime SDK meeting ID.
|
4895
|
+
# @return [String]
|
4896
|
+
#
|
4897
|
+
# @!attribute [rw] attendee_id
|
4898
|
+
# The Amazon Chime SDK attendee ID.
|
4899
|
+
# @return [String]
|
4900
|
+
#
|
4901
|
+
# @!attribute [rw] tag_keys
|
4902
|
+
# The tag keys.
|
4903
|
+
# @return [Array<String>]
|
4904
|
+
#
|
4905
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UntagAttendeeRequest AWS API Documentation
|
4906
|
+
#
|
4907
|
+
class UntagAttendeeRequest < Struct.new(
|
4908
|
+
:meeting_id,
|
4909
|
+
:attendee_id,
|
4910
|
+
:tag_keys)
|
4911
|
+
include Aws::Structure
|
4912
|
+
end
|
4913
|
+
|
4914
|
+
# @note When making an API call, you may pass UntagMeetingRequest
|
4915
|
+
# data as a hash:
|
4916
|
+
#
|
4917
|
+
# {
|
4918
|
+
# meeting_id: "GuidString", # required
|
4919
|
+
# tag_keys: ["TagKey"], # required
|
4920
|
+
# }
|
4921
|
+
#
|
4922
|
+
# @!attribute [rw] meeting_id
|
4923
|
+
# The Amazon Chime SDK meeting ID.
|
4924
|
+
# @return [String]
|
4925
|
+
#
|
4926
|
+
# @!attribute [rw] tag_keys
|
4927
|
+
# The tag keys.
|
4928
|
+
# @return [Array<String>]
|
4929
|
+
#
|
4930
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UntagMeetingRequest AWS API Documentation
|
4931
|
+
#
|
4932
|
+
class UntagMeetingRequest < Struct.new(
|
4933
|
+
:meeting_id,
|
4934
|
+
:tag_keys)
|
4935
|
+
include Aws::Structure
|
4936
|
+
end
|
4937
|
+
|
4938
|
+
# @note When making an API call, you may pass UntagResourceRequest
|
4939
|
+
# data as a hash:
|
4940
|
+
#
|
4941
|
+
# {
|
4942
|
+
# resource_arn: "Arn", # required
|
4943
|
+
# tag_keys: ["TagKey"], # required
|
4944
|
+
# }
|
4945
|
+
#
|
4946
|
+
# @!attribute [rw] resource_arn
|
4947
|
+
# The resource ARN.
|
4948
|
+
# @return [String]
|
4949
|
+
#
|
4950
|
+
# @!attribute [rw] tag_keys
|
4951
|
+
# The tag keys.
|
4952
|
+
# @return [Array<String>]
|
4953
|
+
#
|
4954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UntagResourceRequest AWS API Documentation
|
4955
|
+
#
|
4956
|
+
class UntagResourceRequest < Struct.new(
|
4957
|
+
:resource_arn,
|
4958
|
+
:tag_keys)
|
4959
|
+
include Aws::Structure
|
4960
|
+
end
|
4961
|
+
|
4556
4962
|
# @note When making an API call, you may pass UpdateAccountRequest
|
4557
4963
|
# data as a hash:
|
4558
4964
|
#
|
@@ -4791,15 +5197,19 @@ module Aws::Chime
|
|
4791
5197
|
# }
|
4792
5198
|
#
|
4793
5199
|
# @!attribute [rw] voice_connector_id
|
5200
|
+
# The Amazon Chime voice connector ID.
|
4794
5201
|
# @return [String]
|
4795
5202
|
#
|
4796
5203
|
# @!attribute [rw] proxy_session_id
|
5204
|
+
# The proxy session ID.
|
4797
5205
|
# @return [String]
|
4798
5206
|
#
|
4799
5207
|
# @!attribute [rw] capabilities
|
5208
|
+
# The proxy session capabilities.
|
4800
5209
|
# @return [Array<String>]
|
4801
5210
|
#
|
4802
5211
|
# @!attribute [rw] expiry_minutes
|
5212
|
+
# The number of minutes allowed for the proxy session.
|
4803
5213
|
# @return [Integer]
|
4804
5214
|
#
|
4805
5215
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateProxySessionRequest AWS API Documentation
|
@@ -4813,6 +5223,7 @@ module Aws::Chime
|
|
4813
5223
|
end
|
4814
5224
|
|
4815
5225
|
# @!attribute [rw] proxy_session
|
5226
|
+
# The proxy session details.
|
4816
5227
|
# @return [Types::ProxySession]
|
4817
5228
|
#
|
4818
5229
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateProxySessionResponse AWS API Documentation
|