aws-sdk-chime 1.47.0 → 1.51.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chime.rb +1 -1
- data/lib/aws-sdk-chime/client.rb +218 -10
- data/lib/aws-sdk-chime/client_api.rb +149 -0
- data/lib/aws-sdk-chime/types.rb +265 -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: 0b1d7d03df7c1a1e4b3740661a3a72306e15fa3a1527e17ef16ccf154a8cc9de
|
4
|
+
data.tar.gz: 9a717530a776973667aefad50d3c0195a3b1d7d6ccfc6b5674ba3edc004a1a1b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2783acf467e216472008bae26a0466f0fc24d656309c3ddbabf0001b1318217fc402a913c9d2f64d9fa65109ddfde4e93ae696469f40a304917091482ef3cea3
|
7
|
+
data.tar.gz: f1647bf9c2ed7e5ea030fbd74e115f9dbe7188fcca602103628ce17dd23f1a470175f170d43f616b29ef3aff6aa0028744a8f91b9604122858fd3791641f328e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.51.0 (2021-07-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This SDK release adds Account Status as one of the attributes in Account API response
|
8
|
+
|
9
|
+
1.50.0 (2021-07-07)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Releasing new APIs for AWS Chime MediaCapturePipeline
|
13
|
+
|
14
|
+
1.49.0 (2021-06-24)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Adds EventIngestionUrl field to MediaPlacement
|
18
|
+
|
19
|
+
1.48.0 (2021-06-17)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release adds a new API UpdateSipMediaApplicationCall, to update an in-progress call for SipMediaApplication.
|
23
|
+
|
4
24
|
1.47.0 (2021-06-10)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.51.0
|
data/lib/aws-sdk-chime.rb
CHANGED
data/lib/aws-sdk-chime/client.rb
CHANGED
@@ -726,8 +726,9 @@ module Aws::Chime
|
|
726
726
|
# Removes the suspension from up to 50 previously suspended users for
|
727
727
|
# the specified Amazon Chime `EnterpriseLWA` account. Only users on
|
728
728
|
# `EnterpriseLWA` accounts can be unsuspended using this action. For
|
729
|
-
# more information about different account types, see [Managing Your
|
730
|
-
# Amazon Chime Accounts][1] in the *Amazon Chime
|
729
|
+
# more information about different account types, see [ Managing Your
|
730
|
+
# Amazon Chime Accounts ][1] in the account types, in the *Amazon Chime
|
731
|
+
# Administration Guide*.
|
731
732
|
#
|
732
733
|
# Previously suspended users who are unsuspended using this action are
|
733
734
|
# returned to `Registered` status. Users who are not previously
|
@@ -898,6 +899,7 @@ module Aws::Chime
|
|
898
899
|
# resp.account.default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
899
900
|
# resp.account.supported_licenses #=> Array
|
900
901
|
# resp.account.supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
902
|
+
# resp.account.account_status #=> String, one of "Suspended", "Active"
|
901
903
|
# resp.account.signin_delegate_groups #=> Array
|
902
904
|
# resp.account.signin_delegate_groups[0].group_name #=> String
|
903
905
|
#
|
@@ -1409,6 +1411,62 @@ module Aws::Chime
|
|
1409
1411
|
req.send_request(options)
|
1410
1412
|
end
|
1411
1413
|
|
1414
|
+
# Creates a media capture pipeline.
|
1415
|
+
#
|
1416
|
+
# @option params [required, String] :source_type
|
1417
|
+
# Source type from which the media artifacts will be captured. A Chime
|
1418
|
+
# SDK Meeting is the only supported source.
|
1419
|
+
#
|
1420
|
+
# @option params [required, String] :source_arn
|
1421
|
+
# ARN of the source from which the media artifacts are captured.
|
1422
|
+
#
|
1423
|
+
# @option params [required, String] :sink_type
|
1424
|
+
# Destination type to which the media artifacts are saved. You must use
|
1425
|
+
# an S3 bucket.
|
1426
|
+
#
|
1427
|
+
# @option params [required, String] :sink_arn
|
1428
|
+
# The ARN of the sink type.
|
1429
|
+
#
|
1430
|
+
# @option params [String] :client_request_token
|
1431
|
+
# The token assigned to the client making the pipeline request.
|
1432
|
+
#
|
1433
|
+
# **A suitable default value is auto-generated.** You should normally
|
1434
|
+
# not need to pass this option.**
|
1435
|
+
#
|
1436
|
+
# @return [Types::CreateMediaCapturePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1437
|
+
#
|
1438
|
+
# * {Types::CreateMediaCapturePipelineResponse#media_capture_pipeline #media_capture_pipeline} => Types::MediaCapturePipeline
|
1439
|
+
#
|
1440
|
+
# @example Request syntax with placeholder values
|
1441
|
+
#
|
1442
|
+
# resp = client.create_media_capture_pipeline({
|
1443
|
+
# source_type: "ChimeSdkMeeting", # required, accepts ChimeSdkMeeting
|
1444
|
+
# source_arn: "Arn", # required
|
1445
|
+
# sink_type: "S3Bucket", # required, accepts S3Bucket
|
1446
|
+
# sink_arn: "Arn", # required
|
1447
|
+
# client_request_token: "ClientRequestToken",
|
1448
|
+
# })
|
1449
|
+
#
|
1450
|
+
# @example Response structure
|
1451
|
+
#
|
1452
|
+
# resp.media_capture_pipeline.media_pipeline_id #=> String
|
1453
|
+
# resp.media_capture_pipeline.source_type #=> String, one of "ChimeSdkMeeting"
|
1454
|
+
# resp.media_capture_pipeline.source_arn #=> String
|
1455
|
+
# resp.media_capture_pipeline.status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
|
1456
|
+
# resp.media_capture_pipeline.sink_type #=> String, one of "S3Bucket"
|
1457
|
+
# resp.media_capture_pipeline.sink_arn #=> String
|
1458
|
+
# resp.media_capture_pipeline.created_timestamp #=> Time
|
1459
|
+
# resp.media_capture_pipeline.updated_timestamp #=> Time
|
1460
|
+
#
|
1461
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipeline AWS API Documentation
|
1462
|
+
#
|
1463
|
+
# @overload create_media_capture_pipeline(params = {})
|
1464
|
+
# @param [Hash] params ({})
|
1465
|
+
def create_media_capture_pipeline(params = {}, options = {})
|
1466
|
+
req = build_request(:create_media_capture_pipeline, params)
|
1467
|
+
req.send_request(options)
|
1468
|
+
end
|
1469
|
+
|
1412
1470
|
# Creates a new Amazon Chime SDK meeting in the specified media Region
|
1413
1471
|
# with no initial attendees. For more information about specifying media
|
1414
1472
|
# Regions, see [Amazon Chime SDK Media Regions][1] in the *Amazon Chime
|
@@ -1484,6 +1542,7 @@ module Aws::Chime
|
|
1484
1542
|
# resp.meeting.media_placement.screen_viewing_url #=> String
|
1485
1543
|
# resp.meeting.media_placement.signaling_url #=> String
|
1486
1544
|
# resp.meeting.media_placement.turn_control_url #=> String
|
1545
|
+
# resp.meeting.media_placement.event_ingestion_url #=> String
|
1487
1546
|
# resp.meeting.media_region #=> String
|
1488
1547
|
#
|
1489
1548
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMeeting AWS API Documentation
|
@@ -1640,6 +1699,7 @@ module Aws::Chime
|
|
1640
1699
|
# resp.meeting.media_placement.screen_viewing_url #=> String
|
1641
1700
|
# resp.meeting.media_placement.signaling_url #=> String
|
1642
1701
|
# resp.meeting.media_placement.turn_control_url #=> String
|
1702
|
+
# resp.meeting.media_placement.event_ingestion_url #=> String
|
1643
1703
|
# resp.meeting.media_region #=> String
|
1644
1704
|
# resp.attendees #=> Array
|
1645
1705
|
# resp.attendees[0].external_user_id #=> String
|
@@ -2552,6 +2612,28 @@ module Aws::Chime
|
|
2552
2612
|
req.send_request(options)
|
2553
2613
|
end
|
2554
2614
|
|
2615
|
+
# Deletes the media capture pipeline.
|
2616
|
+
#
|
2617
|
+
# @option params [required, String] :media_pipeline_id
|
2618
|
+
# The ID of the media capture pipeline being deleted.
|
2619
|
+
#
|
2620
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2621
|
+
#
|
2622
|
+
# @example Request syntax with placeholder values
|
2623
|
+
#
|
2624
|
+
# resp = client.delete_media_capture_pipeline({
|
2625
|
+
# media_pipeline_id: "GuidString", # required
|
2626
|
+
# })
|
2627
|
+
#
|
2628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteMediaCapturePipeline AWS API Documentation
|
2629
|
+
#
|
2630
|
+
# @overload delete_media_capture_pipeline(params = {})
|
2631
|
+
# @param [Hash] params ({})
|
2632
|
+
def delete_media_capture_pipeline(params = {}, options = {})
|
2633
|
+
req = build_request(:delete_media_capture_pipeline, params)
|
2634
|
+
req.send_request(options)
|
2635
|
+
end
|
2636
|
+
|
2555
2637
|
# Deletes the specified Amazon Chime SDK meeting. The operation deletes
|
2556
2638
|
# all attendees, disconnects all clients, and prevents new clients from
|
2557
2639
|
# joining the meeting. For more information about the Amazon Chime SDK,
|
@@ -3481,6 +3563,7 @@ module Aws::Chime
|
|
3481
3563
|
# resp.account.default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
3482
3564
|
# resp.account.supported_licenses #=> Array
|
3483
3565
|
# resp.account.supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
3566
|
+
# resp.account.account_status #=> String, one of "Suspended", "Active"
|
3484
3567
|
# resp.account.signin_delegate_groups #=> Array
|
3485
3568
|
# resp.account.signin_delegate_groups[0].group_name #=> String
|
3486
3569
|
#
|
@@ -3782,6 +3865,41 @@ module Aws::Chime
|
|
3782
3865
|
req.send_request(options)
|
3783
3866
|
end
|
3784
3867
|
|
3868
|
+
# Gets an existing media capture pipeline.
|
3869
|
+
#
|
3870
|
+
# @option params [required, String] :media_pipeline_id
|
3871
|
+
# The ID of the pipeline that you want to get.
|
3872
|
+
#
|
3873
|
+
# @return [Types::GetMediaCapturePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3874
|
+
#
|
3875
|
+
# * {Types::GetMediaCapturePipelineResponse#media_capture_pipeline #media_capture_pipeline} => Types::MediaCapturePipeline
|
3876
|
+
#
|
3877
|
+
# @example Request syntax with placeholder values
|
3878
|
+
#
|
3879
|
+
# resp = client.get_media_capture_pipeline({
|
3880
|
+
# media_pipeline_id: "GuidString", # required
|
3881
|
+
# })
|
3882
|
+
#
|
3883
|
+
# @example Response structure
|
3884
|
+
#
|
3885
|
+
# resp.media_capture_pipeline.media_pipeline_id #=> String
|
3886
|
+
# resp.media_capture_pipeline.source_type #=> String, one of "ChimeSdkMeeting"
|
3887
|
+
# resp.media_capture_pipeline.source_arn #=> String
|
3888
|
+
# resp.media_capture_pipeline.status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
|
3889
|
+
# resp.media_capture_pipeline.sink_type #=> String, one of "S3Bucket"
|
3890
|
+
# resp.media_capture_pipeline.sink_arn #=> String
|
3891
|
+
# resp.media_capture_pipeline.created_timestamp #=> Time
|
3892
|
+
# resp.media_capture_pipeline.updated_timestamp #=> Time
|
3893
|
+
#
|
3894
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipeline AWS API Documentation
|
3895
|
+
#
|
3896
|
+
# @overload get_media_capture_pipeline(params = {})
|
3897
|
+
# @param [Hash] params ({})
|
3898
|
+
def get_media_capture_pipeline(params = {}, options = {})
|
3899
|
+
req = build_request(:get_media_capture_pipeline, params)
|
3900
|
+
req.send_request(options)
|
3901
|
+
end
|
3902
|
+
|
3785
3903
|
# Gets the Amazon Chime SDK meeting details for the specified meeting
|
3786
3904
|
# ID. For more information about the Amazon Chime SDK, see [Using the
|
3787
3905
|
# Amazon Chime SDK][1] in the *Amazon Chime Developer Guide* .
|
@@ -3814,6 +3932,7 @@ module Aws::Chime
|
|
3814
3932
|
# resp.meeting.media_placement.screen_viewing_url #=> String
|
3815
3933
|
# resp.meeting.media_placement.signaling_url #=> String
|
3816
3934
|
# resp.meeting.media_placement.turn_control_url #=> String
|
3935
|
+
# resp.meeting.media_placement.event_ingestion_url #=> String
|
3817
3936
|
# resp.meeting.media_region #=> String
|
3818
3937
|
#
|
3819
3938
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMeeting AWS API Documentation
|
@@ -4003,8 +4122,8 @@ module Aws::Chime
|
|
4003
4122
|
|
4004
4123
|
# Gets the retention settings for the specified Amazon Chime Enterprise
|
4005
4124
|
# account. For more information about retention settings, see [Managing
|
4006
|
-
# Chat Retention Policies][1] in the *Amazon Chime Administration
|
4007
|
-
#
|
4125
|
+
# Chat Retention Policies][1] in the *Amazon Chime Administration
|
4126
|
+
# Guide*.
|
4008
4127
|
#
|
4009
4128
|
#
|
4010
4129
|
#
|
@@ -4332,7 +4451,7 @@ module Aws::Chime
|
|
4332
4451
|
end
|
4333
4452
|
|
4334
4453
|
# Retrieves details for the specified Amazon Chime Voice Connector
|
4335
|
-
# group, such as timestamps,name, and associated `VoiceConnectorItems
|
4454
|
+
# group, such as timestamps,name, and associated `VoiceConnectorItems`.
|
4336
4455
|
#
|
4337
4456
|
# @option params [required, String] :voice_connector_group_id
|
4338
4457
|
# The Amazon Chime Voice Connector group ID.
|
@@ -4651,6 +4770,7 @@ module Aws::Chime
|
|
4651
4770
|
# resp.accounts[0].default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
4652
4771
|
# resp.accounts[0].supported_licenses #=> Array
|
4653
4772
|
# resp.accounts[0].supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
4773
|
+
# resp.accounts[0].account_status #=> String, one of "Suspended", "Active"
|
4654
4774
|
# resp.accounts[0].signin_delegate_groups #=> Array
|
4655
4775
|
# resp.accounts[0].signin_delegate_groups[0].group_name #=> String
|
4656
4776
|
# resp.next_token #=> String
|
@@ -4832,7 +4952,7 @@ module Aws::Chime
|
|
4832
4952
|
|
4833
4953
|
# Lists the attendees for the specified Amazon Chime SDK meeting. For
|
4834
4954
|
# more information about the Amazon Chime SDK, see [Using the Amazon
|
4835
|
-
# Chime SDK][1] in the *Amazon Chime Developer Guide
|
4955
|
+
# Chime SDK][1] in the *Amazon Chime Developer Guide*.
|
4836
4956
|
#
|
4837
4957
|
#
|
4838
4958
|
#
|
@@ -5375,6 +5495,51 @@ module Aws::Chime
|
|
5375
5495
|
req.send_request(options)
|
5376
5496
|
end
|
5377
5497
|
|
5498
|
+
# Returns a list of media capture pipelines.
|
5499
|
+
#
|
5500
|
+
# @option params [String] :next_token
|
5501
|
+
# The token used to retrieve the next page of results.
|
5502
|
+
#
|
5503
|
+
# @option params [Integer] :max_results
|
5504
|
+
# The maximum number of results to return in a single call. Valid Range:
|
5505
|
+
# 1 - 99.
|
5506
|
+
#
|
5507
|
+
# @return [Types::ListMediaCapturePipelinesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5508
|
+
#
|
5509
|
+
# * {Types::ListMediaCapturePipelinesResponse#media_capture_pipelines #media_capture_pipelines} => Array<Types::MediaCapturePipeline>
|
5510
|
+
# * {Types::ListMediaCapturePipelinesResponse#next_token #next_token} => String
|
5511
|
+
#
|
5512
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5513
|
+
#
|
5514
|
+
# @example Request syntax with placeholder values
|
5515
|
+
#
|
5516
|
+
# resp = client.list_media_capture_pipelines({
|
5517
|
+
# next_token: "String",
|
5518
|
+
# max_results: 1,
|
5519
|
+
# })
|
5520
|
+
#
|
5521
|
+
# @example Response structure
|
5522
|
+
#
|
5523
|
+
# resp.media_capture_pipelines #=> Array
|
5524
|
+
# resp.media_capture_pipelines[0].media_pipeline_id #=> String
|
5525
|
+
# resp.media_capture_pipelines[0].source_type #=> String, one of "ChimeSdkMeeting"
|
5526
|
+
# resp.media_capture_pipelines[0].source_arn #=> String
|
5527
|
+
# resp.media_capture_pipelines[0].status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
|
5528
|
+
# resp.media_capture_pipelines[0].sink_type #=> String, one of "S3Bucket"
|
5529
|
+
# resp.media_capture_pipelines[0].sink_arn #=> String
|
5530
|
+
# resp.media_capture_pipelines[0].created_timestamp #=> Time
|
5531
|
+
# resp.media_capture_pipelines[0].updated_timestamp #=> Time
|
5532
|
+
# resp.next_token #=> String
|
5533
|
+
#
|
5534
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelines AWS API Documentation
|
5535
|
+
#
|
5536
|
+
# @overload list_media_capture_pipelines(params = {})
|
5537
|
+
# @param [Hash] params ({})
|
5538
|
+
def list_media_capture_pipelines(params = {}, options = {})
|
5539
|
+
req = build_request(:list_media_capture_pipelines, params)
|
5540
|
+
req.send_request(options)
|
5541
|
+
end
|
5542
|
+
|
5378
5543
|
# Lists the tags applied to an Amazon Chime SDK meeting resource.
|
5379
5544
|
#
|
5380
5545
|
# @option params [required, String] :meeting_id
|
@@ -5407,7 +5572,7 @@ module Aws::Chime
|
|
5407
5572
|
|
5408
5573
|
# Lists up to 100 active Amazon Chime SDK meetings. For more information
|
5409
5574
|
# about the Amazon Chime SDK, see [Using the Amazon Chime SDK][1] in the
|
5410
|
-
# *Amazon Chime Developer Guide
|
5575
|
+
# *Amazon Chime Developer Guide*.
|
5411
5576
|
#
|
5412
5577
|
#
|
5413
5578
|
#
|
@@ -5445,6 +5610,7 @@ module Aws::Chime
|
|
5445
5610
|
# resp.meetings[0].media_placement.screen_viewing_url #=> String
|
5446
5611
|
# resp.meetings[0].media_placement.signaling_url #=> String
|
5447
5612
|
# resp.meetings[0].media_placement.turn_control_url #=> String
|
5613
|
+
# resp.meetings[0].media_placement.event_ingestion_url #=> String
|
5448
5614
|
# resp.meetings[0].media_region #=> String
|
5449
5615
|
# resp.next_token #=> String
|
5450
5616
|
#
|
@@ -6240,13 +6406,13 @@ module Aws::Chime
|
|
6240
6406
|
# account. We recommend using AWS CloudTrail to monitor usage of this
|
6241
6407
|
# API for your account. For more information, see [Logging Amazon Chime
|
6242
6408
|
# API Calls with AWS CloudTrail][1] in the *Amazon Chime Administration
|
6243
|
-
# Guide
|
6409
|
+
# Guide*.
|
6244
6410
|
#
|
6245
6411
|
# To turn off existing retention settings, remove the number of days
|
6246
6412
|
# from the corresponding **RetentionDays** field in the
|
6247
6413
|
# **RetentionSettings** object. For more information about retention
|
6248
6414
|
# settings, see [Managing Chat Retention Policies][2] in the *Amazon
|
6249
|
-
# Chime Administration Guide
|
6415
|
+
# Chime Administration Guide*.
|
6250
6416
|
#
|
6251
6417
|
#
|
6252
6418
|
#
|
@@ -7245,6 +7411,7 @@ module Aws::Chime
|
|
7245
7411
|
# resp.account.default_license #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
7246
7412
|
# resp.account.supported_licenses #=> Array
|
7247
7413
|
# resp.account.supported_licenses[0] #=> String, one of "Basic", "Plus", "Pro", "ProTrial"
|
7414
|
+
# resp.account.account_status #=> String, one of "Suspended", "Active"
|
7248
7415
|
# resp.account.signin_delegate_groups #=> Array
|
7249
7416
|
# resp.account.signin_delegate_groups[0].group_name #=> String
|
7250
7417
|
#
|
@@ -7873,6 +8040,47 @@ module Aws::Chime
|
|
7873
8040
|
req.send_request(options)
|
7874
8041
|
end
|
7875
8042
|
|
8043
|
+
# Allows you to trigger a Lambda function at any time while a call is
|
8044
|
+
# active, and replace the current actions with new actions returned by
|
8045
|
+
# the invocation.
|
8046
|
+
#
|
8047
|
+
# @option params [required, String] :sip_media_application_id
|
8048
|
+
# The ID of the SIP media application handling the call.
|
8049
|
+
#
|
8050
|
+
# @option params [required, String] :transaction_id
|
8051
|
+
# The ID of the call transaction.
|
8052
|
+
#
|
8053
|
+
# @option params [required, Hash<String,String>] :arguments
|
8054
|
+
# Arguments made available to the Lambda function as part of the
|
8055
|
+
# `CALL_UPDATE_REQUESTED` event. Can contain 0-20 key-value pairs.
|
8056
|
+
#
|
8057
|
+
# @return [Types::UpdateSipMediaApplicationCallResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8058
|
+
#
|
8059
|
+
# * {Types::UpdateSipMediaApplicationCallResponse#sip_media_application_call #sip_media_application_call} => Types::SipMediaApplicationCall
|
8060
|
+
#
|
8061
|
+
# @example Request syntax with placeholder values
|
8062
|
+
#
|
8063
|
+
# resp = client.update_sip_media_application_call({
|
8064
|
+
# sip_media_application_id: "NonEmptyString", # required
|
8065
|
+
# transaction_id: "NonEmptyString", # required
|
8066
|
+
# arguments: { # required
|
8067
|
+
# "SensitiveString" => "SensitiveString",
|
8068
|
+
# },
|
8069
|
+
# })
|
8070
|
+
#
|
8071
|
+
# @example Response structure
|
8072
|
+
#
|
8073
|
+
# resp.sip_media_application_call.transaction_id #=> String
|
8074
|
+
#
|
8075
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateSipMediaApplicationCall AWS API Documentation
|
8076
|
+
#
|
8077
|
+
# @overload update_sip_media_application_call(params = {})
|
8078
|
+
# @param [Hash] params ({})
|
8079
|
+
def update_sip_media_application_call(params = {}, options = {})
|
8080
|
+
req = build_request(:update_sip_media_application_call, params)
|
8081
|
+
req.send_request(options)
|
8082
|
+
end
|
8083
|
+
|
7876
8084
|
# Updates the details of the specified SIP rule.
|
7877
8085
|
#
|
7878
8086
|
# @option params [required, String] :sip_rule_id
|
@@ -8132,7 +8340,7 @@ module Aws::Chime
|
|
8132
8340
|
params: params,
|
8133
8341
|
config: config)
|
8134
8342
|
context[:gem_name] = 'aws-sdk-chime'
|
8135
|
-
context[:gem_version] = '1.
|
8343
|
+
context[:gem_version] = '1.51.0'
|
8136
8344
|
Seahorse::Client::Request.new(handlers, context)
|
8137
8345
|
end
|
8138
8346
|
|
@@ -18,6 +18,7 @@ module Aws::Chime
|
|
18
18
|
AccountList = Shapes::ListShape.new(name: 'AccountList')
|
19
19
|
AccountName = Shapes::StringShape.new(name: 'AccountName')
|
20
20
|
AccountSettings = Shapes::StructureShape.new(name: 'AccountSettings')
|
21
|
+
AccountStatus = Shapes::StringShape.new(name: 'AccountStatus')
|
21
22
|
AccountType = Shapes::StringShape.new(name: 'AccountType')
|
22
23
|
AlexaForBusinessMetadata = Shapes::StructureShape.new(name: 'AlexaForBusinessMetadata')
|
23
24
|
Alpha2CountryCode = Shapes::StringShape.new(name: 'Alpha2CountryCode')
|
@@ -137,6 +138,8 @@ module Aws::Chime
|
|
137
138
|
CreateChannelModeratorResponse = Shapes::StructureShape.new(name: 'CreateChannelModeratorResponse')
|
138
139
|
CreateChannelRequest = Shapes::StructureShape.new(name: 'CreateChannelRequest')
|
139
140
|
CreateChannelResponse = Shapes::StructureShape.new(name: 'CreateChannelResponse')
|
141
|
+
CreateMediaCapturePipelineRequest = Shapes::StructureShape.new(name: 'CreateMediaCapturePipelineRequest')
|
142
|
+
CreateMediaCapturePipelineResponse = Shapes::StructureShape.new(name: 'CreateMediaCapturePipelineResponse')
|
140
143
|
CreateMeetingDialOutRequest = Shapes::StructureShape.new(name: 'CreateMeetingDialOutRequest')
|
141
144
|
CreateMeetingDialOutResponse = Shapes::StructureShape.new(name: 'CreateMeetingDialOutResponse')
|
142
145
|
CreateMeetingRequest = Shapes::StructureShape.new(name: 'CreateMeetingRequest')
|
@@ -182,6 +185,7 @@ module Aws::Chime
|
|
182
185
|
DeleteChannelModeratorRequest = Shapes::StructureShape.new(name: 'DeleteChannelModeratorRequest')
|
183
186
|
DeleteChannelRequest = Shapes::StructureShape.new(name: 'DeleteChannelRequest')
|
184
187
|
DeleteEventsConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteEventsConfigurationRequest')
|
188
|
+
DeleteMediaCapturePipelineRequest = Shapes::StructureShape.new(name: 'DeleteMediaCapturePipelineRequest')
|
185
189
|
DeleteMeetingRequest = Shapes::StructureShape.new(name: 'DeleteMeetingRequest')
|
186
190
|
DeletePhoneNumberRequest = Shapes::StructureShape.new(name: 'DeletePhoneNumberRequest')
|
187
191
|
DeleteProxySessionRequest = Shapes::StructureShape.new(name: 'DeleteProxySessionRequest')
|
@@ -253,6 +257,8 @@ module Aws::Chime
|
|
253
257
|
GetEventsConfigurationRequest = Shapes::StructureShape.new(name: 'GetEventsConfigurationRequest')
|
254
258
|
GetEventsConfigurationResponse = Shapes::StructureShape.new(name: 'GetEventsConfigurationResponse')
|
255
259
|
GetGlobalSettingsResponse = Shapes::StructureShape.new(name: 'GetGlobalSettingsResponse')
|
260
|
+
GetMediaCapturePipelineRequest = Shapes::StructureShape.new(name: 'GetMediaCapturePipelineRequest')
|
261
|
+
GetMediaCapturePipelineResponse = Shapes::StructureShape.new(name: 'GetMediaCapturePipelineResponse')
|
256
262
|
GetMeetingRequest = Shapes::StructureShape.new(name: 'GetMeetingRequest')
|
257
263
|
GetMeetingResponse = Shapes::StructureShape.new(name: 'GetMeetingResponse')
|
258
264
|
GetMessagingSessionEndpointRequest = Shapes::StructureShape.new(name: 'GetMessagingSessionEndpointRequest')
|
@@ -336,6 +342,8 @@ module Aws::Chime
|
|
336
342
|
ListChannelsModeratedByAppInstanceUserResponse = Shapes::StructureShape.new(name: 'ListChannelsModeratedByAppInstanceUserResponse')
|
337
343
|
ListChannelsRequest = Shapes::StructureShape.new(name: 'ListChannelsRequest')
|
338
344
|
ListChannelsResponse = Shapes::StructureShape.new(name: 'ListChannelsResponse')
|
345
|
+
ListMediaCapturePipelinesRequest = Shapes::StructureShape.new(name: 'ListMediaCapturePipelinesRequest')
|
346
|
+
ListMediaCapturePipelinesResponse = Shapes::StructureShape.new(name: 'ListMediaCapturePipelinesResponse')
|
339
347
|
ListMeetingTagsRequest = Shapes::StructureShape.new(name: 'ListMeetingTagsRequest')
|
340
348
|
ListMeetingTagsResponse = Shapes::StructureShape.new(name: 'ListMeetingTagsResponse')
|
341
349
|
ListMeetingsRequest = Shapes::StructureShape.new(name: 'ListMeetingsRequest')
|
@@ -370,6 +378,11 @@ module Aws::Chime
|
|
370
378
|
LogoutUserRequest = Shapes::StructureShape.new(name: 'LogoutUserRequest')
|
371
379
|
LogoutUserResponse = Shapes::StructureShape.new(name: 'LogoutUserResponse')
|
372
380
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
381
|
+
MediaCapturePipeline = Shapes::StructureShape.new(name: 'MediaCapturePipeline')
|
382
|
+
MediaCapturePipelineList = Shapes::ListShape.new(name: 'MediaCapturePipelineList')
|
383
|
+
MediaPipelineSinkType = Shapes::StringShape.new(name: 'MediaPipelineSinkType')
|
384
|
+
MediaPipelineSourceType = Shapes::StringShape.new(name: 'MediaPipelineSourceType')
|
385
|
+
MediaPipelineStatus = Shapes::StringShape.new(name: 'MediaPipelineStatus')
|
373
386
|
MediaPlacement = Shapes::StructureShape.new(name: 'MediaPlacement')
|
374
387
|
Meeting = Shapes::StructureShape.new(name: 'Meeting')
|
375
388
|
MeetingList = Shapes::ListShape.new(name: 'MeetingList')
|
@@ -484,6 +497,7 @@ module Aws::Chime
|
|
484
497
|
RoomMembershipList = Shapes::ListShape.new(name: 'RoomMembershipList')
|
485
498
|
RoomMembershipRole = Shapes::StringShape.new(name: 'RoomMembershipRole')
|
486
499
|
RoomRetentionSettings = Shapes::StructureShape.new(name: 'RoomRetentionSettings')
|
500
|
+
SMAUpdateCallArgumentsMap = Shapes::MapShape.new(name: 'SMAUpdateCallArgumentsMap')
|
487
501
|
SearchAvailablePhoneNumbersRequest = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersRequest')
|
488
502
|
SearchAvailablePhoneNumbersResponse = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersResponse')
|
489
503
|
SendChannelMessageRequest = Shapes::StructureShape.new(name: 'SendChannelMessageRequest')
|
@@ -562,6 +576,8 @@ module Aws::Chime
|
|
562
576
|
UpdateRoomMembershipResponse = Shapes::StructureShape.new(name: 'UpdateRoomMembershipResponse')
|
563
577
|
UpdateRoomRequest = Shapes::StructureShape.new(name: 'UpdateRoomRequest')
|
564
578
|
UpdateRoomResponse = Shapes::StructureShape.new(name: 'UpdateRoomResponse')
|
579
|
+
UpdateSipMediaApplicationCallRequest = Shapes::StructureShape.new(name: 'UpdateSipMediaApplicationCallRequest')
|
580
|
+
UpdateSipMediaApplicationCallResponse = Shapes::StructureShape.new(name: 'UpdateSipMediaApplicationCallResponse')
|
565
581
|
UpdateSipMediaApplicationRequest = Shapes::StructureShape.new(name: 'UpdateSipMediaApplicationRequest')
|
566
582
|
UpdateSipMediaApplicationResponse = Shapes::StructureShape.new(name: 'UpdateSipMediaApplicationResponse')
|
567
583
|
UpdateSipRuleRequest = Shapes::StructureShape.new(name: 'UpdateSipRuleRequest')
|
@@ -610,6 +626,7 @@ module Aws::Chime
|
|
610
626
|
Account.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
|
611
627
|
Account.add_member(:default_license, Shapes::ShapeRef.new(shape: License, location_name: "DefaultLicense"))
|
612
628
|
Account.add_member(:supported_licenses, Shapes::ShapeRef.new(shape: LicenseList, location_name: "SupportedLicenses"))
|
629
|
+
Account.add_member(:account_status, Shapes::ShapeRef.new(shape: AccountStatus, location_name: "AccountStatus"))
|
613
630
|
Account.add_member(:signin_delegate_groups, Shapes::ShapeRef.new(shape: SigninDelegateGroupList, location_name: "SigninDelegateGroups"))
|
614
631
|
Account.struct_class = Types::Account
|
615
632
|
|
@@ -1019,6 +1036,16 @@ module Aws::Chime
|
|
1019
1036
|
CreateChannelResponse.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "ChannelArn"))
|
1020
1037
|
CreateChannelResponse.struct_class = Types::CreateChannelResponse
|
1021
1038
|
|
1039
|
+
CreateMediaCapturePipelineRequest.add_member(:source_type, Shapes::ShapeRef.new(shape: MediaPipelineSourceType, required: true, location_name: "SourceType"))
|
1040
|
+
CreateMediaCapturePipelineRequest.add_member(:source_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "SourceArn"))
|
1041
|
+
CreateMediaCapturePipelineRequest.add_member(:sink_type, Shapes::ShapeRef.new(shape: MediaPipelineSinkType, required: true, location_name: "SinkType"))
|
1042
|
+
CreateMediaCapturePipelineRequest.add_member(:sink_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "SinkArn"))
|
1043
|
+
CreateMediaCapturePipelineRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
1044
|
+
CreateMediaCapturePipelineRequest.struct_class = Types::CreateMediaCapturePipelineRequest
|
1045
|
+
|
1046
|
+
CreateMediaCapturePipelineResponse.add_member(:media_capture_pipeline, Shapes::ShapeRef.new(shape: MediaCapturePipeline, location_name: "MediaCapturePipeline"))
|
1047
|
+
CreateMediaCapturePipelineResponse.struct_class = Types::CreateMediaCapturePipelineResponse
|
1048
|
+
|
1022
1049
|
CreateMeetingDialOutRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
|
1023
1050
|
CreateMeetingDialOutRequest.add_member(:from_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "FromPhoneNumber"))
|
1024
1051
|
CreateMeetingDialOutRequest.add_member(:to_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "ToPhoneNumber"))
|
@@ -1205,6 +1232,9 @@ module Aws::Chime
|
|
1205
1232
|
DeleteEventsConfigurationRequest.add_member(:bot_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "botId"))
|
1206
1233
|
DeleteEventsConfigurationRequest.struct_class = Types::DeleteEventsConfigurationRequest
|
1207
1234
|
|
1235
|
+
DeleteMediaCapturePipelineRequest.add_member(:media_pipeline_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "mediaPipelineId"))
|
1236
|
+
DeleteMediaCapturePipelineRequest.struct_class = Types::DeleteMediaCapturePipelineRequest
|
1237
|
+
|
1208
1238
|
DeleteMeetingRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
|
1209
1239
|
DeleteMeetingRequest.struct_class = Types::DeleteMeetingRequest
|
1210
1240
|
|
@@ -1423,6 +1453,12 @@ module Aws::Chime
|
|
1423
1453
|
GetGlobalSettingsResponse.add_member(:voice_connector, Shapes::ShapeRef.new(shape: VoiceConnectorSettings, location_name: "VoiceConnector"))
|
1424
1454
|
GetGlobalSettingsResponse.struct_class = Types::GetGlobalSettingsResponse
|
1425
1455
|
|
1456
|
+
GetMediaCapturePipelineRequest.add_member(:media_pipeline_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "mediaPipelineId"))
|
1457
|
+
GetMediaCapturePipelineRequest.struct_class = Types::GetMediaCapturePipelineRequest
|
1458
|
+
|
1459
|
+
GetMediaCapturePipelineResponse.add_member(:media_capture_pipeline, Shapes::ShapeRef.new(shape: MediaCapturePipeline, location_name: "MediaCapturePipeline"))
|
1460
|
+
GetMediaCapturePipelineResponse.struct_class = Types::GetMediaCapturePipelineResponse
|
1461
|
+
|
1426
1462
|
GetMeetingRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
|
1427
1463
|
GetMeetingRequest.struct_class = Types::GetMeetingRequest
|
1428
1464
|
|
@@ -1721,6 +1757,14 @@ module Aws::Chime
|
|
1721
1757
|
ListChannelsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1722
1758
|
ListChannelsResponse.struct_class = Types::ListChannelsResponse
|
1723
1759
|
|
1760
|
+
ListMediaCapturePipelinesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
|
1761
|
+
ListMediaCapturePipelinesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ResultMax, location: "querystring", location_name: "max-results"))
|
1762
|
+
ListMediaCapturePipelinesRequest.struct_class = Types::ListMediaCapturePipelinesRequest
|
1763
|
+
|
1764
|
+
ListMediaCapturePipelinesResponse.add_member(:media_capture_pipelines, Shapes::ShapeRef.new(shape: MediaCapturePipelineList, location_name: "MediaCapturePipelines"))
|
1765
|
+
ListMediaCapturePipelinesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
1766
|
+
ListMediaCapturePipelinesResponse.struct_class = Types::ListMediaCapturePipelinesResponse
|
1767
|
+
|
1724
1768
|
ListMeetingTagsRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
|
1725
1769
|
ListMeetingTagsRequest.struct_class = Types::ListMeetingTagsRequest
|
1726
1770
|
|
@@ -1856,6 +1900,18 @@ module Aws::Chime
|
|
1856
1900
|
|
1857
1901
|
LogoutUserResponse.struct_class = Types::LogoutUserResponse
|
1858
1902
|
|
1903
|
+
MediaCapturePipeline.add_member(:media_pipeline_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "MediaPipelineId"))
|
1904
|
+
MediaCapturePipeline.add_member(:source_type, Shapes::ShapeRef.new(shape: MediaPipelineSourceType, location_name: "SourceType"))
|
1905
|
+
MediaCapturePipeline.add_member(:source_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SourceArn"))
|
1906
|
+
MediaCapturePipeline.add_member(:status, Shapes::ShapeRef.new(shape: MediaPipelineStatus, location_name: "Status"))
|
1907
|
+
MediaCapturePipeline.add_member(:sink_type, Shapes::ShapeRef.new(shape: MediaPipelineSinkType, location_name: "SinkType"))
|
1908
|
+
MediaCapturePipeline.add_member(:sink_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SinkArn"))
|
1909
|
+
MediaCapturePipeline.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
|
1910
|
+
MediaCapturePipeline.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
|
1911
|
+
MediaCapturePipeline.struct_class = Types::MediaCapturePipeline
|
1912
|
+
|
1913
|
+
MediaCapturePipelineList.member = Shapes::ShapeRef.new(shape: MediaCapturePipeline)
|
1914
|
+
|
1859
1915
|
MediaPlacement.add_member(:audio_host_url, Shapes::ShapeRef.new(shape: UriType, location_name: "AudioHostUrl"))
|
1860
1916
|
MediaPlacement.add_member(:audio_fallback_url, Shapes::ShapeRef.new(shape: UriType, location_name: "AudioFallbackUrl"))
|
1861
1917
|
MediaPlacement.add_member(:screen_data_url, Shapes::ShapeRef.new(shape: UriType, location_name: "ScreenDataUrl"))
|
@@ -1863,6 +1919,7 @@ module Aws::Chime
|
|
1863
1919
|
MediaPlacement.add_member(:screen_viewing_url, Shapes::ShapeRef.new(shape: UriType, location_name: "ScreenViewingUrl"))
|
1864
1920
|
MediaPlacement.add_member(:signaling_url, Shapes::ShapeRef.new(shape: UriType, location_name: "SignalingUrl"))
|
1865
1921
|
MediaPlacement.add_member(:turn_control_url, Shapes::ShapeRef.new(shape: UriType, location_name: "TurnControlUrl"))
|
1922
|
+
MediaPlacement.add_member(:event_ingestion_url, Shapes::ShapeRef.new(shape: UriType, location_name: "EventIngestionUrl"))
|
1866
1923
|
MediaPlacement.struct_class = Types::MediaPlacement
|
1867
1924
|
|
1868
1925
|
Meeting.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, location_name: "MeetingId"))
|
@@ -2182,6 +2239,9 @@ module Aws::Chime
|
|
2182
2239
|
RoomRetentionSettings.add_member(:retention_days, Shapes::ShapeRef.new(shape: RetentionDays, location_name: "RetentionDays"))
|
2183
2240
|
RoomRetentionSettings.struct_class = Types::RoomRetentionSettings
|
2184
2241
|
|
2242
|
+
SMAUpdateCallArgumentsMap.key = Shapes::ShapeRef.new(shape: SensitiveString)
|
2243
|
+
SMAUpdateCallArgumentsMap.value = Shapes::ShapeRef.new(shape: SensitiveString)
|
2244
|
+
|
2185
2245
|
SearchAvailablePhoneNumbersRequest.add_member(:area_code, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "area-code"))
|
2186
2246
|
SearchAvailablePhoneNumbersRequest.add_member(:city, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "city"))
|
2187
2247
|
SearchAvailablePhoneNumbersRequest.add_member(:country, Shapes::ShapeRef.new(shape: Alpha2CountryCode, location: "querystring", location_name: "country"))
|
@@ -2452,6 +2512,14 @@ module Aws::Chime
|
|
2452
2512
|
UpdateRoomResponse.add_member(:room, Shapes::ShapeRef.new(shape: Room, location_name: "Room"))
|
2453
2513
|
UpdateRoomResponse.struct_class = Types::UpdateRoomResponse
|
2454
2514
|
|
2515
|
+
UpdateSipMediaApplicationCallRequest.add_member(:sip_media_application_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "sipMediaApplicationId"))
|
2516
|
+
UpdateSipMediaApplicationCallRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "transactionId"))
|
2517
|
+
UpdateSipMediaApplicationCallRequest.add_member(:arguments, Shapes::ShapeRef.new(shape: SMAUpdateCallArgumentsMap, required: true, location_name: "Arguments"))
|
2518
|
+
UpdateSipMediaApplicationCallRequest.struct_class = Types::UpdateSipMediaApplicationCallRequest
|
2519
|
+
|
2520
|
+
UpdateSipMediaApplicationCallResponse.add_member(:sip_media_application_call, Shapes::ShapeRef.new(shape: SipMediaApplicationCall, location_name: "SipMediaApplicationCall"))
|
2521
|
+
UpdateSipMediaApplicationCallResponse.struct_class = Types::UpdateSipMediaApplicationCallResponse
|
2522
|
+
|
2455
2523
|
UpdateSipMediaApplicationRequest.add_member(:sip_media_application_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "sipMediaApplicationId"))
|
2456
2524
|
UpdateSipMediaApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: SipMediaApplicationName, location_name: "Name"))
|
2457
2525
|
UpdateSipMediaApplicationRequest.add_member(:endpoints, Shapes::ShapeRef.new(shape: SipMediaApplicationEndpointList, location_name: "Endpoints"))
|
@@ -2950,6 +3018,21 @@ module Aws::Chime
|
|
2950
3018
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
2951
3019
|
end)
|
2952
3020
|
|
3021
|
+
api.add_operation(:create_media_capture_pipeline, Seahorse::Model::Operation.new.tap do |o|
|
3022
|
+
o.name = "CreateMediaCapturePipeline"
|
3023
|
+
o.http_method = "POST"
|
3024
|
+
o.http_request_uri = "/media-capture-pipelines"
|
3025
|
+
o.input = Shapes::ShapeRef.new(shape: CreateMediaCapturePipelineRequest)
|
3026
|
+
o.output = Shapes::ShapeRef.new(shape: CreateMediaCapturePipelineResponse)
|
3027
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
3028
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
3029
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
3030
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
3031
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
3032
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
3033
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
3034
|
+
end)
|
3035
|
+
|
2953
3036
|
api.add_operation(:create_meeting, Seahorse::Model::Operation.new.tap do |o|
|
2954
3037
|
o.name = "CreateMeeting"
|
2955
3038
|
o.http_method = "POST"
|
@@ -3354,6 +3437,21 @@ module Aws::Chime
|
|
3354
3437
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
3355
3438
|
end)
|
3356
3439
|
|
3440
|
+
api.add_operation(:delete_media_capture_pipeline, Seahorse::Model::Operation.new.tap do |o|
|
3441
|
+
o.name = "DeleteMediaCapturePipeline"
|
3442
|
+
o.http_method = "DELETE"
|
3443
|
+
o.http_request_uri = "/media-capture-pipelines/{mediaPipelineId}"
|
3444
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteMediaCapturePipelineRequest)
|
3445
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3446
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
3447
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
3448
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
3449
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
3450
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
3451
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
3452
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
3453
|
+
end)
|
3454
|
+
|
3357
3455
|
api.add_operation(:delete_meeting, Seahorse::Model::Operation.new.tap do |o|
|
3358
3456
|
o.name = "DeleteMeeting"
|
3359
3457
|
o.http_method = "DELETE"
|
@@ -3939,6 +4037,21 @@ module Aws::Chime
|
|
3939
4037
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
3940
4038
|
end)
|
3941
4039
|
|
4040
|
+
api.add_operation(:get_media_capture_pipeline, Seahorse::Model::Operation.new.tap do |o|
|
4041
|
+
o.name = "GetMediaCapturePipeline"
|
4042
|
+
o.http_method = "GET"
|
4043
|
+
o.http_request_uri = "/media-capture-pipelines/{mediaPipelineId}"
|
4044
|
+
o.input = Shapes::ShapeRef.new(shape: GetMediaCapturePipelineRequest)
|
4045
|
+
o.output = Shapes::ShapeRef.new(shape: GetMediaCapturePipelineResponse)
|
4046
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
4047
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
4048
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
4049
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
4050
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
4051
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
4052
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
4053
|
+
end)
|
4054
|
+
|
3942
4055
|
api.add_operation(:get_meeting, Seahorse::Model::Operation.new.tap do |o|
|
3943
4056
|
o.name = "GetMeeting"
|
3944
4057
|
o.http_method = "GET"
|
@@ -4592,6 +4705,26 @@ module Aws::Chime
|
|
4592
4705
|
)
|
4593
4706
|
end)
|
4594
4707
|
|
4708
|
+
api.add_operation(:list_media_capture_pipelines, Seahorse::Model::Operation.new.tap do |o|
|
4709
|
+
o.name = "ListMediaCapturePipelines"
|
4710
|
+
o.http_method = "GET"
|
4711
|
+
o.http_request_uri = "/media-capture-pipelines"
|
4712
|
+
o.input = Shapes::ShapeRef.new(shape: ListMediaCapturePipelinesRequest)
|
4713
|
+
o.output = Shapes::ShapeRef.new(shape: ListMediaCapturePipelinesResponse)
|
4714
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
4715
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
4716
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
4717
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
4718
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
4719
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
4720
|
+
o[:pager] = Aws::Pager.new(
|
4721
|
+
limit_key: "max_results",
|
4722
|
+
tokens: {
|
4723
|
+
"next_token" => "next_token"
|
4724
|
+
}
|
4725
|
+
)
|
4726
|
+
end)
|
4727
|
+
|
4595
4728
|
api.add_operation(:list_meeting_tags, Seahorse::Model::Operation.new.tap do |o|
|
4596
4729
|
o.name = "ListMeetingTags"
|
4597
4730
|
o.http_method = "GET"
|
@@ -5540,6 +5673,22 @@ module Aws::Chime
|
|
5540
5673
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
5541
5674
|
end)
|
5542
5675
|
|
5676
|
+
api.add_operation(:update_sip_media_application_call, Seahorse::Model::Operation.new.tap do |o|
|
5677
|
+
o.name = "UpdateSipMediaApplicationCall"
|
5678
|
+
o.http_method = "POST"
|
5679
|
+
o.http_request_uri = "/sip-media-applications/{sipMediaApplicationId}/calls/{transactionId}"
|
5680
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateSipMediaApplicationCallRequest)
|
5681
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateSipMediaApplicationCallResponse)
|
5682
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
5683
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
5684
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
5685
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
5686
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
5687
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
5688
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
5689
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
5690
|
+
end)
|
5691
|
+
|
5543
5692
|
api.add_operation(:update_sip_rule, Seahorse::Model::Operation.new.tap do |o|
|
5544
5693
|
o.name = "UpdateSipRule"
|
5545
5694
|
o.http_method = "PUT"
|
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -64,6 +64,10 @@ module Aws::Chime
|
|
64
64
|
# Supported licenses for the Amazon Chime account.
|
65
65
|
# @return [Array<String>]
|
66
66
|
#
|
67
|
+
# @!attribute [rw] account_status
|
68
|
+
# The status of the account, `Suspended` or `Active`.
|
69
|
+
# @return [String]
|
70
|
+
#
|
67
71
|
# @!attribute [rw] signin_delegate_groups
|
68
72
|
# The sign-in delegate groups associated with the account.
|
69
73
|
# @return [Array<Types::SigninDelegateGroup>]
|
@@ -78,6 +82,7 @@ module Aws::Chime
|
|
78
82
|
:created_timestamp,
|
79
83
|
:default_license,
|
80
84
|
:supported_licenses,
|
85
|
+
:account_status,
|
81
86
|
:signin_delegate_groups)
|
82
87
|
SENSITIVE = []
|
83
88
|
include Aws::Structure
|
@@ -2126,6 +2131,67 @@ module Aws::Chime
|
|
2126
2131
|
include Aws::Structure
|
2127
2132
|
end
|
2128
2133
|
|
2134
|
+
# @note When making an API call, you may pass CreateMediaCapturePipelineRequest
|
2135
|
+
# data as a hash:
|
2136
|
+
#
|
2137
|
+
# {
|
2138
|
+
# source_type: "ChimeSdkMeeting", # required, accepts ChimeSdkMeeting
|
2139
|
+
# source_arn: "Arn", # required
|
2140
|
+
# sink_type: "S3Bucket", # required, accepts S3Bucket
|
2141
|
+
# sink_arn: "Arn", # required
|
2142
|
+
# client_request_token: "ClientRequestToken",
|
2143
|
+
# }
|
2144
|
+
#
|
2145
|
+
# @!attribute [rw] source_type
|
2146
|
+
# Source type from which the media artifacts will be captured. A Chime
|
2147
|
+
# SDK Meeting is the only supported source.
|
2148
|
+
# @return [String]
|
2149
|
+
#
|
2150
|
+
# @!attribute [rw] source_arn
|
2151
|
+
# ARN of the source from which the media artifacts are captured.
|
2152
|
+
# @return [String]
|
2153
|
+
#
|
2154
|
+
# @!attribute [rw] sink_type
|
2155
|
+
# Destination type to which the media artifacts are saved. You must
|
2156
|
+
# use an S3 bucket.
|
2157
|
+
# @return [String]
|
2158
|
+
#
|
2159
|
+
# @!attribute [rw] sink_arn
|
2160
|
+
# The ARN of the sink type.
|
2161
|
+
# @return [String]
|
2162
|
+
#
|
2163
|
+
# @!attribute [rw] client_request_token
|
2164
|
+
# The token assigned to the client making the pipeline request.
|
2165
|
+
#
|
2166
|
+
# **A suitable default value is auto-generated.** You should normally
|
2167
|
+
# not need to pass this option.
|
2168
|
+
# @return [String]
|
2169
|
+
#
|
2170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipelineRequest AWS API Documentation
|
2171
|
+
#
|
2172
|
+
class CreateMediaCapturePipelineRequest < Struct.new(
|
2173
|
+
:source_type,
|
2174
|
+
:source_arn,
|
2175
|
+
:sink_type,
|
2176
|
+
:sink_arn,
|
2177
|
+
:client_request_token)
|
2178
|
+
SENSITIVE = [:source_arn, :sink_arn, :client_request_token]
|
2179
|
+
include Aws::Structure
|
2180
|
+
end
|
2181
|
+
|
2182
|
+
# @!attribute [rw] media_capture_pipeline
|
2183
|
+
# A media capture pipeline object, the ID, source type, source ARN,
|
2184
|
+
# sink type, and sink ARN of a media capture pipeline object.
|
2185
|
+
# @return [Types::MediaCapturePipeline]
|
2186
|
+
#
|
2187
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipelineResponse AWS API Documentation
|
2188
|
+
#
|
2189
|
+
class CreateMediaCapturePipelineResponse < Struct.new(
|
2190
|
+
:media_capture_pipeline)
|
2191
|
+
SENSITIVE = []
|
2192
|
+
include Aws::Structure
|
2193
|
+
end
|
2194
|
+
|
2129
2195
|
# @note When making an API call, you may pass CreateMeetingDialOutRequest
|
2130
2196
|
# data as a hash:
|
2131
2197
|
#
|
@@ -3252,6 +3318,25 @@ module Aws::Chime
|
|
3252
3318
|
include Aws::Structure
|
3253
3319
|
end
|
3254
3320
|
|
3321
|
+
# @note When making an API call, you may pass DeleteMediaCapturePipelineRequest
|
3322
|
+
# data as a hash:
|
3323
|
+
#
|
3324
|
+
# {
|
3325
|
+
# media_pipeline_id: "GuidString", # required
|
3326
|
+
# }
|
3327
|
+
#
|
3328
|
+
# @!attribute [rw] media_pipeline_id
|
3329
|
+
# The ID of the media capture pipeline being deleted.
|
3330
|
+
# @return [String]
|
3331
|
+
#
|
3332
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteMediaCapturePipelineRequest AWS API Documentation
|
3333
|
+
#
|
3334
|
+
class DeleteMediaCapturePipelineRequest < Struct.new(
|
3335
|
+
:media_pipeline_id)
|
3336
|
+
SENSITIVE = []
|
3337
|
+
include Aws::Structure
|
3338
|
+
end
|
3339
|
+
|
3255
3340
|
# @note When making an API call, you may pass DeleteMeetingRequest
|
3256
3341
|
# data as a hash:
|
3257
3342
|
#
|
@@ -4458,6 +4543,37 @@ module Aws::Chime
|
|
4458
4543
|
include Aws::Structure
|
4459
4544
|
end
|
4460
4545
|
|
4546
|
+
# @note When making an API call, you may pass GetMediaCapturePipelineRequest
|
4547
|
+
# data as a hash:
|
4548
|
+
#
|
4549
|
+
# {
|
4550
|
+
# media_pipeline_id: "GuidString", # required
|
4551
|
+
# }
|
4552
|
+
#
|
4553
|
+
# @!attribute [rw] media_pipeline_id
|
4554
|
+
# The ID of the pipeline that you want to get.
|
4555
|
+
# @return [String]
|
4556
|
+
#
|
4557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipelineRequest AWS API Documentation
|
4558
|
+
#
|
4559
|
+
class GetMediaCapturePipelineRequest < Struct.new(
|
4560
|
+
:media_pipeline_id)
|
4561
|
+
SENSITIVE = []
|
4562
|
+
include Aws::Structure
|
4563
|
+
end
|
4564
|
+
|
4565
|
+
# @!attribute [rw] media_capture_pipeline
|
4566
|
+
# The media capture pipeline object.
|
4567
|
+
# @return [Types::MediaCapturePipeline]
|
4568
|
+
#
|
4569
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipelineResponse AWS API Documentation
|
4570
|
+
#
|
4571
|
+
class GetMediaCapturePipelineResponse < Struct.new(
|
4572
|
+
:media_capture_pipeline)
|
4573
|
+
SENSITIVE = []
|
4574
|
+
include Aws::Structure
|
4575
|
+
end
|
4576
|
+
|
4461
4577
|
# @note When making an API call, you may pass GetMeetingRequest
|
4462
4578
|
# data as a hash:
|
4463
4579
|
#
|
@@ -6028,6 +6144,49 @@ module Aws::Chime
|
|
6028
6144
|
include Aws::Structure
|
6029
6145
|
end
|
6030
6146
|
|
6147
|
+
# @note When making an API call, you may pass ListMediaCapturePipelinesRequest
|
6148
|
+
# data as a hash:
|
6149
|
+
#
|
6150
|
+
# {
|
6151
|
+
# next_token: "String",
|
6152
|
+
# max_results: 1,
|
6153
|
+
# }
|
6154
|
+
#
|
6155
|
+
# @!attribute [rw] next_token
|
6156
|
+
# The token used to retrieve the next page of results.
|
6157
|
+
# @return [String]
|
6158
|
+
#
|
6159
|
+
# @!attribute [rw] max_results
|
6160
|
+
# The maximum number of results to return in a single call. Valid
|
6161
|
+
# Range: 1 - 99.
|
6162
|
+
# @return [Integer]
|
6163
|
+
#
|
6164
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelinesRequest AWS API Documentation
|
6165
|
+
#
|
6166
|
+
class ListMediaCapturePipelinesRequest < Struct.new(
|
6167
|
+
:next_token,
|
6168
|
+
:max_results)
|
6169
|
+
SENSITIVE = []
|
6170
|
+
include Aws::Structure
|
6171
|
+
end
|
6172
|
+
|
6173
|
+
# @!attribute [rw] media_capture_pipelines
|
6174
|
+
# The media capture pipeline objects in the list.
|
6175
|
+
# @return [Array<Types::MediaCapturePipeline>]
|
6176
|
+
#
|
6177
|
+
# @!attribute [rw] next_token
|
6178
|
+
# The token used to retrieve the next page of results.
|
6179
|
+
# @return [String]
|
6180
|
+
#
|
6181
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelinesResponse AWS API Documentation
|
6182
|
+
#
|
6183
|
+
class ListMediaCapturePipelinesResponse < Struct.new(
|
6184
|
+
:media_capture_pipelines,
|
6185
|
+
:next_token)
|
6186
|
+
SENSITIVE = []
|
6187
|
+
include Aws::Structure
|
6188
|
+
end
|
6189
|
+
|
6031
6190
|
# @note When making an API call, you may pass ListMeetingTagsRequest
|
6032
6191
|
# data as a hash:
|
6033
6192
|
#
|
@@ -6754,6 +6913,60 @@ module Aws::Chime
|
|
6754
6913
|
#
|
6755
6914
|
class LogoutUserResponse < Aws::EmptyStructure; end
|
6756
6915
|
|
6916
|
+
# A media capture pipeline object. A string consisting of an ID, source
|
6917
|
+
# type, a source ARN, a sink type, and a sink ARN.
|
6918
|
+
#
|
6919
|
+
# @!attribute [rw] media_pipeline_id
|
6920
|
+
# The ID of a media capture pipeline.
|
6921
|
+
# @return [String]
|
6922
|
+
#
|
6923
|
+
# @!attribute [rw] source_type
|
6924
|
+
# Source type from which media artifacts are saved. You must use
|
6925
|
+
# `ChimeMeeting`.
|
6926
|
+
# @return [String]
|
6927
|
+
#
|
6928
|
+
# @!attribute [rw] source_arn
|
6929
|
+
# ARN of the source from which the media artifacts will be saved.
|
6930
|
+
# @return [String]
|
6931
|
+
#
|
6932
|
+
# @!attribute [rw] status
|
6933
|
+
# The status of the media capture pipeline.
|
6934
|
+
# @return [String]
|
6935
|
+
#
|
6936
|
+
# @!attribute [rw] sink_type
|
6937
|
+
# Destination type to which the media artifacts are saved. You must
|
6938
|
+
# use an S3 Bucket.
|
6939
|
+
# @return [String]
|
6940
|
+
#
|
6941
|
+
# @!attribute [rw] sink_arn
|
6942
|
+
# ARN of the destination to which the media artifacts are saved.
|
6943
|
+
# @return [String]
|
6944
|
+
#
|
6945
|
+
# @!attribute [rw] created_timestamp
|
6946
|
+
# The time at which the capture pipeline was created, in ISO 8601
|
6947
|
+
# format.
|
6948
|
+
# @return [Time]
|
6949
|
+
#
|
6950
|
+
# @!attribute [rw] updated_timestamp
|
6951
|
+
# The time at which the capture pipeline was updated, in ISO 8601
|
6952
|
+
# format.
|
6953
|
+
# @return [Time]
|
6954
|
+
#
|
6955
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaCapturePipeline AWS API Documentation
|
6956
|
+
#
|
6957
|
+
class MediaCapturePipeline < Struct.new(
|
6958
|
+
:media_pipeline_id,
|
6959
|
+
:source_type,
|
6960
|
+
:source_arn,
|
6961
|
+
:status,
|
6962
|
+
:sink_type,
|
6963
|
+
:sink_arn,
|
6964
|
+
:created_timestamp,
|
6965
|
+
:updated_timestamp)
|
6966
|
+
SENSITIVE = [:source_arn, :sink_arn]
|
6967
|
+
include Aws::Structure
|
6968
|
+
end
|
6969
|
+
|
6757
6970
|
# A set of endpoints used by clients to connect to the media service
|
6758
6971
|
# group for a Amazon Chime SDK meeting.
|
6759
6972
|
#
|
@@ -6785,6 +6998,10 @@ module Aws::Chime
|
|
6785
6998
|
# The turn control URL.
|
6786
6999
|
# @return [String]
|
6787
7000
|
#
|
7001
|
+
# @!attribute [rw] event_ingestion_url
|
7002
|
+
# The event ingestion URL.
|
7003
|
+
# @return [String]
|
7004
|
+
#
|
6788
7005
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaPlacement AWS API Documentation
|
6789
7006
|
#
|
6790
7007
|
class MediaPlacement < Struct.new(
|
@@ -6794,7 +7011,8 @@ module Aws::Chime
|
|
6794
7011
|
:screen_sharing_url,
|
6795
7012
|
:screen_viewing_url,
|
6796
7013
|
:signaling_url,
|
6797
|
-
:turn_control_url
|
7014
|
+
:turn_control_url,
|
7015
|
+
:event_ingestion_url)
|
6798
7016
|
SENSITIVE = []
|
6799
7017
|
include Aws::Structure
|
6800
7018
|
end
|
@@ -9803,6 +10021,52 @@ module Aws::Chime
|
|
9803
10021
|
include Aws::Structure
|
9804
10022
|
end
|
9805
10023
|
|
10024
|
+
# @note When making an API call, you may pass UpdateSipMediaApplicationCallRequest
|
10025
|
+
# data as a hash:
|
10026
|
+
#
|
10027
|
+
# {
|
10028
|
+
# sip_media_application_id: "NonEmptyString", # required
|
10029
|
+
# transaction_id: "NonEmptyString", # required
|
10030
|
+
# arguments: { # required
|
10031
|
+
# "SensitiveString" => "SensitiveString",
|
10032
|
+
# },
|
10033
|
+
# }
|
10034
|
+
#
|
10035
|
+
# @!attribute [rw] sip_media_application_id
|
10036
|
+
# The ID of the SIP media application handling the call.
|
10037
|
+
# @return [String]
|
10038
|
+
#
|
10039
|
+
# @!attribute [rw] transaction_id
|
10040
|
+
# The ID of the call transaction.
|
10041
|
+
# @return [String]
|
10042
|
+
#
|
10043
|
+
# @!attribute [rw] arguments
|
10044
|
+
# Arguments made available to the Lambda function as part of the
|
10045
|
+
# `CALL_UPDATE_REQUESTED` event. Can contain 0-20 key-value pairs.
|
10046
|
+
# @return [Hash<String,String>]
|
10047
|
+
#
|
10048
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateSipMediaApplicationCallRequest AWS API Documentation
|
10049
|
+
#
|
10050
|
+
class UpdateSipMediaApplicationCallRequest < Struct.new(
|
10051
|
+
:sip_media_application_id,
|
10052
|
+
:transaction_id,
|
10053
|
+
:arguments)
|
10054
|
+
SENSITIVE = []
|
10055
|
+
include Aws::Structure
|
10056
|
+
end
|
10057
|
+
|
10058
|
+
# @!attribute [rw] sip_media_application_call
|
10059
|
+
# A `Call` instance for a SIP media application.
|
10060
|
+
# @return [Types::SipMediaApplicationCall]
|
10061
|
+
#
|
10062
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateSipMediaApplicationCallResponse AWS API Documentation
|
10063
|
+
#
|
10064
|
+
class UpdateSipMediaApplicationCallResponse < Struct.new(
|
10065
|
+
:sip_media_application_call)
|
10066
|
+
SENSITIVE = []
|
10067
|
+
include Aws::Structure
|
10068
|
+
end
|
10069
|
+
|
9806
10070
|
# @note When making an API call, you may pass UpdateSipMediaApplicationRequest
|
9807
10071
|
# data as a hash:
|
9808
10072
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-chime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.51.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: 2021-
|
11
|
+
date: 2021-07-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|