aws-sdk-chime 1.56.0 → 1.60.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chime/client.rb +72 -6
- data/lib/aws-sdk-chime/client_api.rb +57 -2
- data/lib/aws-sdk-chime/types.rb +294 -14
- data/lib/aws-sdk-chime.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e3ec0b01b78bfbe0429930aed5864aca3971dae50e7fae8714c6c4ead0e9d83
|
4
|
+
data.tar.gz: 99fe70a860076ef937e75b4b8321ae1d924f69eb11cb41a0a180d6b42e9e11cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70206ee5c014f5c5b1c6d34de2ab33bd9ab19c0c587ce76eb76a9b15790cf4b11ef02f81d3b498a0a7b77c4dd7f07e724f46a726bcc91e81bbfdb8224947e658
|
7
|
+
data.tar.gz: d738af32712dad9b73f86decd9d580ba65fd45f31a15e001bf5180352babb2506ba4116ad83b5b7b062dcff395c938b7946c9edd4afe5ea3e22bfa02f59ef592
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.60.0 (2021-10-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Chime VoiceConnector and VoiceConnectorGroup APIs will now return an ARN.
|
8
|
+
|
9
|
+
1.59.0 (2021-10-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.58.0 (2021-10-07)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release enables customers to configure Chime MediaCapturePipeline via API.
|
18
|
+
|
19
|
+
1.57.0 (2021-09-14)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Adds support for SipHeaders parameter for CreateSipMediaApplicationCall.
|
23
|
+
|
4
24
|
1.56.0 (2021-09-01)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.60.0
|
data/lib/aws-sdk-chime/client.rb
CHANGED
@@ -1433,6 +1433,10 @@ module Aws::Chime
|
|
1433
1433
|
# **A suitable default value is auto-generated.** You should normally
|
1434
1434
|
# not need to pass this option.**
|
1435
1435
|
#
|
1436
|
+
# @option params [Types::ChimeSdkMeetingConfiguration] :chime_sdk_meeting_configuration
|
1437
|
+
# The configuration for a specified media capture pipeline. `SourceType`
|
1438
|
+
# must be `ChimeSdkMeeting`.
|
1439
|
+
#
|
1436
1440
|
# @return [Types::CreateMediaCapturePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1437
1441
|
#
|
1438
1442
|
# * {Types::CreateMediaCapturePipelineResponse#media_capture_pipeline #media_capture_pipeline} => Types::MediaCapturePipeline
|
@@ -1445,6 +1449,27 @@ module Aws::Chime
|
|
1445
1449
|
# sink_type: "S3Bucket", # required, accepts S3Bucket
|
1446
1450
|
# sink_arn: "Arn", # required
|
1447
1451
|
# client_request_token: "ClientRequestToken",
|
1452
|
+
# chime_sdk_meeting_configuration: {
|
1453
|
+
# source_configuration: {
|
1454
|
+
# selected_video_streams: {
|
1455
|
+
# attendee_ids: ["GuidString"],
|
1456
|
+
# external_user_ids: ["ExternalUserIdType"],
|
1457
|
+
# },
|
1458
|
+
# },
|
1459
|
+
# artifacts_configuration: {
|
1460
|
+
# audio: { # required
|
1461
|
+
# mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
|
1462
|
+
# },
|
1463
|
+
# video: { # required
|
1464
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1465
|
+
# mux_type: "VideoOnly", # accepts VideoOnly
|
1466
|
+
# },
|
1467
|
+
# content: { # required
|
1468
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1469
|
+
# mux_type: "ContentOnly", # accepts ContentOnly
|
1470
|
+
# },
|
1471
|
+
# },
|
1472
|
+
# },
|
1448
1473
|
# })
|
1449
1474
|
#
|
1450
1475
|
# @example Response structure
|
@@ -1457,6 +1482,15 @@ module Aws::Chime
|
|
1457
1482
|
# resp.media_capture_pipeline.sink_arn #=> String
|
1458
1483
|
# resp.media_capture_pipeline.created_timestamp #=> Time
|
1459
1484
|
# resp.media_capture_pipeline.updated_timestamp #=> Time
|
1485
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids #=> Array
|
1486
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids[0] #=> String
|
1487
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids #=> Array
|
1488
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids[0] #=> String
|
1489
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.audio.mux_type #=> String, one of "AudioOnly", "AudioWithActiveSpeakerVideo"
|
1490
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.video.state #=> String, one of "Enabled", "Disabled"
|
1491
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.video.mux_type #=> String, one of "VideoOnly"
|
1492
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.content.state #=> String, one of "Enabled", "Disabled"
|
1493
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.content.mux_type #=> String, one of "ContentOnly"
|
1460
1494
|
#
|
1461
1495
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipeline AWS API Documentation
|
1462
1496
|
#
|
@@ -1995,6 +2029,9 @@ module Aws::Chime
|
|
1995
2029
|
# @option params [required, String] :sip_media_application_id
|
1996
2030
|
# The ID of the SIP media application.
|
1997
2031
|
#
|
2032
|
+
# @option params [Hash<String,String>] :sip_headers
|
2033
|
+
# The SIP headers added to an outbound call leg.
|
2034
|
+
#
|
1998
2035
|
# @return [Types::CreateSipMediaApplicationCallResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1999
2036
|
#
|
2000
2037
|
# * {Types::CreateSipMediaApplicationCallResponse#sip_media_application_call #sip_media_application_call} => Types::SipMediaApplicationCall
|
@@ -2005,6 +2042,9 @@ module Aws::Chime
|
|
2005
2042
|
# from_phone_number: "E164PhoneNumber", # required
|
2006
2043
|
# to_phone_number: "E164PhoneNumber", # required
|
2007
2044
|
# sip_media_application_id: "NonEmptyString", # required
|
2045
|
+
# sip_headers: {
|
2046
|
+
# "SensitiveString" => "SensitiveString",
|
2047
|
+
# },
|
2008
2048
|
# })
|
2009
2049
|
#
|
2010
2050
|
# @example Response structure
|
@@ -2184,6 +2224,7 @@ module Aws::Chime
|
|
2184
2224
|
# resp.voice_connector.require_encryption #=> Boolean
|
2185
2225
|
# resp.voice_connector.created_timestamp #=> Time
|
2186
2226
|
# resp.voice_connector.updated_timestamp #=> Time
|
2227
|
+
# resp.voice_connector.voice_connector_arn #=> String
|
2187
2228
|
#
|
2188
2229
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateVoiceConnector AWS API Documentation
|
2189
2230
|
#
|
@@ -2234,6 +2275,7 @@ module Aws::Chime
|
|
2234
2275
|
# resp.voice_connector_group.voice_connector_items[0].priority #=> Integer
|
2235
2276
|
# resp.voice_connector_group.created_timestamp #=> Time
|
2236
2277
|
# resp.voice_connector_group.updated_timestamp #=> Time
|
2278
|
+
# resp.voice_connector_group.voice_connector_group_arn #=> String
|
2237
2279
|
#
|
2238
2280
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateVoiceConnectorGroup AWS API Documentation
|
2239
2281
|
#
|
@@ -3890,6 +3932,15 @@ module Aws::Chime
|
|
3890
3932
|
# resp.media_capture_pipeline.sink_arn #=> String
|
3891
3933
|
# resp.media_capture_pipeline.created_timestamp #=> Time
|
3892
3934
|
# resp.media_capture_pipeline.updated_timestamp #=> Time
|
3935
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids #=> Array
|
3936
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids[0] #=> String
|
3937
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids #=> Array
|
3938
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids[0] #=> String
|
3939
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.audio.mux_type #=> String, one of "AudioOnly", "AudioWithActiveSpeakerVideo"
|
3940
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.video.state #=> String, one of "Enabled", "Disabled"
|
3941
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.video.mux_type #=> String, one of "VideoOnly"
|
3942
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.content.state #=> String, one of "Enabled", "Disabled"
|
3943
|
+
# resp.media_capture_pipeline.chime_sdk_meeting_configuration.artifacts_configuration.content.mux_type #=> String, one of "ContentOnly"
|
3893
3944
|
#
|
3894
3945
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipeline AWS API Documentation
|
3895
3946
|
#
|
@@ -4408,6 +4459,7 @@ module Aws::Chime
|
|
4408
4459
|
# resp.voice_connector.require_encryption #=> Boolean
|
4409
4460
|
# resp.voice_connector.created_timestamp #=> Time
|
4410
4461
|
# resp.voice_connector.updated_timestamp #=> Time
|
4462
|
+
# resp.voice_connector.voice_connector_arn #=> String
|
4411
4463
|
#
|
4412
4464
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnector AWS API Documentation
|
4413
4465
|
#
|
@@ -4475,6 +4527,7 @@ module Aws::Chime
|
|
4475
4527
|
# resp.voice_connector_group.voice_connector_items[0].priority #=> Integer
|
4476
4528
|
# resp.voice_connector_group.created_timestamp #=> Time
|
4477
4529
|
# resp.voice_connector_group.updated_timestamp #=> Time
|
4530
|
+
# resp.voice_connector_group.voice_connector_group_arn #=> String
|
4478
4531
|
#
|
4479
4532
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnectorGroup AWS API Documentation
|
4480
4533
|
#
|
@@ -5529,6 +5582,15 @@ module Aws::Chime
|
|
5529
5582
|
# resp.media_capture_pipelines[0].sink_arn #=> String
|
5530
5583
|
# resp.media_capture_pipelines[0].created_timestamp #=> Time
|
5531
5584
|
# resp.media_capture_pipelines[0].updated_timestamp #=> Time
|
5585
|
+
# resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids #=> Array
|
5586
|
+
# resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids[0] #=> String
|
5587
|
+
# resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids #=> Array
|
5588
|
+
# resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids[0] #=> String
|
5589
|
+
# resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.audio.mux_type #=> String, one of "AudioOnly", "AudioWithActiveSpeakerVideo"
|
5590
|
+
# resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.video.state #=> String, one of "Enabled", "Disabled"
|
5591
|
+
# resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.video.mux_type #=> String, one of "VideoOnly"
|
5592
|
+
# resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.content.state #=> String, one of "Enabled", "Disabled"
|
5593
|
+
# resp.media_capture_pipelines[0].chime_sdk_meeting_configuration.artifacts_configuration.content.mux_type #=> String, one of "ContentOnly"
|
5532
5594
|
# resp.next_token #=> String
|
5533
5595
|
#
|
5534
5596
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelines AWS API Documentation
|
@@ -6168,6 +6230,7 @@ module Aws::Chime
|
|
6168
6230
|
# resp.voice_connector_groups[0].voice_connector_items[0].priority #=> Integer
|
6169
6231
|
# resp.voice_connector_groups[0].created_timestamp #=> Time
|
6170
6232
|
# resp.voice_connector_groups[0].updated_timestamp #=> Time
|
6233
|
+
# resp.voice_connector_groups[0].voice_connector_group_arn #=> String
|
6171
6234
|
# resp.next_token #=> String
|
6172
6235
|
#
|
6173
6236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListVoiceConnectorGroups AWS API Documentation
|
@@ -6242,6 +6305,7 @@ module Aws::Chime
|
|
6242
6305
|
# resp.voice_connectors[0].require_encryption #=> Boolean
|
6243
6306
|
# resp.voice_connectors[0].created_timestamp #=> Time
|
6244
6307
|
# resp.voice_connectors[0].updated_timestamp #=> Time
|
6308
|
+
# resp.voice_connectors[0].voice_connector_arn #=> String
|
6245
6309
|
# resp.next_token #=> String
|
6246
6310
|
#
|
6247
6311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListVoiceConnectors AWS API Documentation
|
@@ -7193,7 +7257,7 @@ module Aws::Chime
|
|
7193
7257
|
req.send_request(options)
|
7194
7258
|
end
|
7195
7259
|
|
7196
|
-
#
|
7260
|
+
# Starts transcription for the specified `meetingId`.
|
7197
7261
|
#
|
7198
7262
|
# @option params [required, String] :meeting_id
|
7199
7263
|
# The unique ID of the meeting being transcribed.
|
@@ -7789,10 +7853,10 @@ module Aws::Chime
|
|
7789
7853
|
# Amazon Chime Business Calling and Amazon Chime Voice Connector
|
7790
7854
|
# settings.
|
7791
7855
|
#
|
7792
|
-
# @option params [
|
7856
|
+
# @option params [Types::BusinessCallingSettings] :business_calling
|
7793
7857
|
# The Amazon Chime Business Calling settings.
|
7794
7858
|
#
|
7795
|
-
# @option params [
|
7859
|
+
# @option params [Types::VoiceConnectorSettings] :voice_connector
|
7796
7860
|
# The Amazon Chime Voice Connector settings.
|
7797
7861
|
#
|
7798
7862
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -7800,10 +7864,10 @@ module Aws::Chime
|
|
7800
7864
|
# @example Request syntax with placeholder values
|
7801
7865
|
#
|
7802
7866
|
# resp = client.update_global_settings({
|
7803
|
-
# business_calling: {
|
7867
|
+
# business_calling: {
|
7804
7868
|
# cdr_bucket: "String",
|
7805
7869
|
# },
|
7806
|
-
# voice_connector: {
|
7870
|
+
# voice_connector: {
|
7807
7871
|
# cdr_bucket: "String",
|
7808
7872
|
# },
|
7809
7873
|
# })
|
@@ -8334,6 +8398,7 @@ module Aws::Chime
|
|
8334
8398
|
# resp.voice_connector.require_encryption #=> Boolean
|
8335
8399
|
# resp.voice_connector.created_timestamp #=> Time
|
8336
8400
|
# resp.voice_connector.updated_timestamp #=> Time
|
8401
|
+
# resp.voice_connector.voice_connector_arn #=> String
|
8337
8402
|
#
|
8338
8403
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateVoiceConnector AWS API Documentation
|
8339
8404
|
#
|
@@ -8382,6 +8447,7 @@ module Aws::Chime
|
|
8382
8447
|
# resp.voice_connector_group.voice_connector_items[0].priority #=> Integer
|
8383
8448
|
# resp.voice_connector_group.created_timestamp #=> Time
|
8384
8449
|
# resp.voice_connector_group.updated_timestamp #=> Time
|
8450
|
+
# resp.voice_connector_group.voice_connector_group_arn #=> String
|
8385
8451
|
#
|
8386
8452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateVoiceConnectorGroup AWS API Documentation
|
8387
8453
|
#
|
@@ -8405,7 +8471,7 @@ module Aws::Chime
|
|
8405
8471
|
params: params,
|
8406
8472
|
config: config)
|
8407
8473
|
context[:gem_name] = 'aws-sdk-chime'
|
8408
|
-
context[:gem_version] = '1.
|
8474
|
+
context[:gem_version] = '1.60.0'
|
8409
8475
|
Seahorse::Client::Request.new(handlers, context)
|
8410
8476
|
end
|
8411
8477
|
|
@@ -38,6 +38,8 @@ module Aws::Chime
|
|
38
38
|
AppInstanceUserSummary = Shapes::StructureShape.new(name: 'AppInstanceUserSummary')
|
39
39
|
AreaCode = Shapes::StringShape.new(name: 'AreaCode')
|
40
40
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
41
|
+
ArtifactsConfiguration = Shapes::StructureShape.new(name: 'ArtifactsConfiguration')
|
42
|
+
ArtifactsState = Shapes::StringShape.new(name: 'ArtifactsState')
|
41
43
|
AssociatePhoneNumberWithUserRequest = Shapes::StructureShape.new(name: 'AssociatePhoneNumberWithUserRequest')
|
42
44
|
AssociatePhoneNumberWithUserResponse = Shapes::StructureShape.new(name: 'AssociatePhoneNumberWithUserResponse')
|
43
45
|
AssociatePhoneNumbersWithVoiceConnectorGroupRequest = Shapes::StructureShape.new(name: 'AssociatePhoneNumbersWithVoiceConnectorGroupRequest')
|
@@ -47,9 +49,12 @@ module Aws::Chime
|
|
47
49
|
AssociateSigninDelegateGroupsWithAccountRequest = Shapes::StructureShape.new(name: 'AssociateSigninDelegateGroupsWithAccountRequest')
|
48
50
|
AssociateSigninDelegateGroupsWithAccountResponse = Shapes::StructureShape.new(name: 'AssociateSigninDelegateGroupsWithAccountResponse')
|
49
51
|
Attendee = Shapes::StructureShape.new(name: 'Attendee')
|
52
|
+
AttendeeIdList = Shapes::ListShape.new(name: 'AttendeeIdList')
|
50
53
|
AttendeeList = Shapes::ListShape.new(name: 'AttendeeList')
|
51
54
|
AttendeeTagKeyList = Shapes::ListShape.new(name: 'AttendeeTagKeyList')
|
52
55
|
AttendeeTagList = Shapes::ListShape.new(name: 'AttendeeTagList')
|
56
|
+
AudioArtifactsConfiguration = Shapes::StructureShape.new(name: 'AudioArtifactsConfiguration')
|
57
|
+
AudioMuxType = Shapes::StringShape.new(name: 'AudioMuxType')
|
53
58
|
BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
|
54
59
|
BatchChannelMemberships = Shapes::StructureShape.new(name: 'BatchChannelMemberships')
|
55
60
|
BatchCreateAttendeeErrorList = Shapes::ListShape.new(name: 'BatchCreateAttendeeErrorList')
|
@@ -108,9 +113,12 @@ module Aws::Chime
|
|
108
113
|
ChannelSummary = Shapes::StructureShape.new(name: 'ChannelSummary')
|
109
114
|
ChannelSummaryList = Shapes::ListShape.new(name: 'ChannelSummaryList')
|
110
115
|
ChimeArn = Shapes::StringShape.new(name: 'ChimeArn')
|
116
|
+
ChimeSdkMeetingConfiguration = Shapes::StructureShape.new(name: 'ChimeSdkMeetingConfiguration')
|
111
117
|
ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
|
112
118
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
113
119
|
Content = Shapes::StringShape.new(name: 'Content')
|
120
|
+
ContentArtifactsConfiguration = Shapes::StructureShape.new(name: 'ContentArtifactsConfiguration')
|
121
|
+
ContentMuxType = Shapes::StringShape.new(name: 'ContentMuxType')
|
114
122
|
ConversationRetentionSettings = Shapes::StructureShape.new(name: 'ConversationRetentionSettings')
|
115
123
|
Country = Shapes::StringShape.new(name: 'Country')
|
116
124
|
CountryList = Shapes::ListShape.new(name: 'CountryList')
|
@@ -237,6 +245,7 @@ module Aws::Chime
|
|
237
245
|
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
238
246
|
EventsConfiguration = Shapes::StructureShape.new(name: 'EventsConfiguration')
|
239
247
|
ExternalMeetingIdType = Shapes::StringShape.new(name: 'ExternalMeetingIdType')
|
248
|
+
ExternalUserIdList = Shapes::ListShape.new(name: 'ExternalUserIdList')
|
240
249
|
ExternalUserIdType = Shapes::StringShape.new(name: 'ExternalUserIdType')
|
241
250
|
ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
|
242
251
|
FunctionArn = Shapes::StringShape.new(name: 'FunctionArn')
|
@@ -502,6 +511,7 @@ module Aws::Chime
|
|
502
511
|
SMAUpdateCallArgumentsMap = Shapes::MapShape.new(name: 'SMAUpdateCallArgumentsMap')
|
503
512
|
SearchAvailablePhoneNumbersRequest = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersRequest')
|
504
513
|
SearchAvailablePhoneNumbersResponse = Shapes::StructureShape.new(name: 'SearchAvailablePhoneNumbersResponse')
|
514
|
+
SelectedVideoStreams = Shapes::StructureShape.new(name: 'SelectedVideoStreams')
|
505
515
|
SendChannelMessageRequest = Shapes::StructureShape.new(name: 'SendChannelMessageRequest')
|
506
516
|
SendChannelMessageResponse = Shapes::StructureShape.new(name: 'SendChannelMessageResponse')
|
507
517
|
SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
|
@@ -511,6 +521,7 @@ module Aws::Chime
|
|
511
521
|
SigninDelegateGroup = Shapes::StructureShape.new(name: 'SigninDelegateGroup')
|
512
522
|
SigninDelegateGroupList = Shapes::ListShape.new(name: 'SigninDelegateGroupList')
|
513
523
|
SipApplicationPriority = Shapes::IntegerShape.new(name: 'SipApplicationPriority')
|
524
|
+
SipHeadersMap = Shapes::MapShape.new(name: 'SipHeadersMap')
|
514
525
|
SipMediaApplication = Shapes::StructureShape.new(name: 'SipMediaApplication')
|
515
526
|
SipMediaApplicationCall = Shapes::StructureShape.new(name: 'SipMediaApplicationCall')
|
516
527
|
SipMediaApplicationEndpoint = Shapes::StructureShape.new(name: 'SipMediaApplicationEndpoint')
|
@@ -525,6 +536,7 @@ module Aws::Chime
|
|
525
536
|
SipRuleTargetApplicationList = Shapes::ListShape.new(name: 'SipRuleTargetApplicationList')
|
526
537
|
SipRuleTriggerType = Shapes::StringShape.new(name: 'SipRuleTriggerType')
|
527
538
|
SortOrder = Shapes::StringShape.new(name: 'SortOrder')
|
539
|
+
SourceConfiguration = Shapes::StructureShape.new(name: 'SourceConfiguration')
|
528
540
|
StartMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionRequest')
|
529
541
|
StartMeetingTranscriptionResponse = Shapes::StructureShape.new(name: 'StartMeetingTranscriptionResponse')
|
530
542
|
StopMeetingTranscriptionRequest = Shapes::StructureShape.new(name: 'StopMeetingTranscriptionRequest')
|
@@ -617,6 +629,8 @@ module Aws::Chime
|
|
617
629
|
UserName = Shapes::StringShape.new(name: 'UserName')
|
618
630
|
UserSettings = Shapes::StructureShape.new(name: 'UserSettings')
|
619
631
|
UserType = Shapes::StringShape.new(name: 'UserType')
|
632
|
+
VideoArtifactsConfiguration = Shapes::StructureShape.new(name: 'VideoArtifactsConfiguration')
|
633
|
+
VideoMuxType = Shapes::StringShape.new(name: 'VideoMuxType')
|
620
634
|
VoiceConnector = Shapes::StructureShape.new(name: 'VoiceConnector')
|
621
635
|
VoiceConnectorAwsRegion = Shapes::StringShape.new(name: 'VoiceConnectorAwsRegion')
|
622
636
|
VoiceConnectorGroup = Shapes::StructureShape.new(name: 'VoiceConnectorGroup')
|
@@ -705,6 +719,11 @@ module Aws::Chime
|
|
705
719
|
AppInstanceUserSummary.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location_name: "Metadata"))
|
706
720
|
AppInstanceUserSummary.struct_class = Types::AppInstanceUserSummary
|
707
721
|
|
722
|
+
ArtifactsConfiguration.add_member(:audio, Shapes::ShapeRef.new(shape: AudioArtifactsConfiguration, required: true, location_name: "Audio"))
|
723
|
+
ArtifactsConfiguration.add_member(:video, Shapes::ShapeRef.new(shape: VideoArtifactsConfiguration, required: true, location_name: "Video"))
|
724
|
+
ArtifactsConfiguration.add_member(:content, Shapes::ShapeRef.new(shape: ContentArtifactsConfiguration, required: true, location_name: "Content"))
|
725
|
+
ArtifactsConfiguration.struct_class = Types::ArtifactsConfiguration
|
726
|
+
|
708
727
|
AssociatePhoneNumberWithUserRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "accountId"))
|
709
728
|
AssociatePhoneNumberWithUserRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "userId"))
|
710
729
|
AssociatePhoneNumberWithUserRequest.add_member(:e164_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "E164PhoneNumber"))
|
@@ -739,12 +758,17 @@ module Aws::Chime
|
|
739
758
|
Attendee.add_member(:join_token, Shapes::ShapeRef.new(shape: JoinTokenString, location_name: "JoinToken"))
|
740
759
|
Attendee.struct_class = Types::Attendee
|
741
760
|
|
761
|
+
AttendeeIdList.member = Shapes::ShapeRef.new(shape: GuidString)
|
762
|
+
|
742
763
|
AttendeeList.member = Shapes::ShapeRef.new(shape: Attendee)
|
743
764
|
|
744
765
|
AttendeeTagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
745
766
|
|
746
767
|
AttendeeTagList.member = Shapes::ShapeRef.new(shape: Tag)
|
747
768
|
|
769
|
+
AudioArtifactsConfiguration.add_member(:mux_type, Shapes::ShapeRef.new(shape: AudioMuxType, required: true, location_name: "MuxType"))
|
770
|
+
AudioArtifactsConfiguration.struct_class = Types::AudioArtifactsConfiguration
|
771
|
+
|
748
772
|
BadRequestException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
|
749
773
|
BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
750
774
|
BadRequestException.struct_class = Types::BadRequestException
|
@@ -939,10 +963,18 @@ module Aws::Chime
|
|
939
963
|
|
940
964
|
ChannelSummaryList.member = Shapes::ShapeRef.new(shape: ChannelSummary)
|
941
965
|
|
966
|
+
ChimeSdkMeetingConfiguration.add_member(:source_configuration, Shapes::ShapeRef.new(shape: SourceConfiguration, location_name: "SourceConfiguration"))
|
967
|
+
ChimeSdkMeetingConfiguration.add_member(:artifacts_configuration, Shapes::ShapeRef.new(shape: ArtifactsConfiguration, location_name: "ArtifactsConfiguration"))
|
968
|
+
ChimeSdkMeetingConfiguration.struct_class = Types::ChimeSdkMeetingConfiguration
|
969
|
+
|
942
970
|
ConflictException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
|
943
971
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
944
972
|
ConflictException.struct_class = Types::ConflictException
|
945
973
|
|
974
|
+
ContentArtifactsConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: ArtifactsState, required: true, location_name: "State"))
|
975
|
+
ContentArtifactsConfiguration.add_member(:mux_type, Shapes::ShapeRef.new(shape: ContentMuxType, location_name: "MuxType"))
|
976
|
+
ContentArtifactsConfiguration.struct_class = Types::ContentArtifactsConfiguration
|
977
|
+
|
946
978
|
ConversationRetentionSettings.add_member(:retention_days, Shapes::ShapeRef.new(shape: RetentionDays, location_name: "RetentionDays"))
|
947
979
|
ConversationRetentionSettings.struct_class = Types::ConversationRetentionSettings
|
948
980
|
|
@@ -1055,6 +1087,7 @@ module Aws::Chime
|
|
1055
1087
|
CreateMediaCapturePipelineRequest.add_member(:sink_type, Shapes::ShapeRef.new(shape: MediaPipelineSinkType, required: true, location_name: "SinkType"))
|
1056
1088
|
CreateMediaCapturePipelineRequest.add_member(:sink_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "SinkArn"))
|
1057
1089
|
CreateMediaCapturePipelineRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
1090
|
+
CreateMediaCapturePipelineRequest.add_member(:chime_sdk_meeting_configuration, Shapes::ShapeRef.new(shape: ChimeSdkMeetingConfiguration, location_name: "ChimeSdkMeetingConfiguration"))
|
1058
1091
|
CreateMediaCapturePipelineRequest.struct_class = Types::CreateMediaCapturePipelineRequest
|
1059
1092
|
|
1060
1093
|
CreateMediaCapturePipelineResponse.add_member(:media_capture_pipeline, Shapes::ShapeRef.new(shape: MediaCapturePipeline, location_name: "MediaCapturePipeline"))
|
@@ -1136,6 +1169,7 @@ module Aws::Chime
|
|
1136
1169
|
CreateSipMediaApplicationCallRequest.add_member(:from_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "FromPhoneNumber"))
|
1137
1170
|
CreateSipMediaApplicationCallRequest.add_member(:to_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "ToPhoneNumber"))
|
1138
1171
|
CreateSipMediaApplicationCallRequest.add_member(:sip_media_application_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "sipMediaApplicationId"))
|
1172
|
+
CreateSipMediaApplicationCallRequest.add_member(:sip_headers, Shapes::ShapeRef.new(shape: SipHeadersMap, location_name: "SipHeaders"))
|
1139
1173
|
CreateSipMediaApplicationCallRequest.struct_class = Types::CreateSipMediaApplicationCallRequest
|
1140
1174
|
|
1141
1175
|
CreateSipMediaApplicationCallResponse.add_member(:sip_media_application_call, Shapes::ShapeRef.new(shape: SipMediaApplicationCall, location_name: "SipMediaApplicationCall"))
|
@@ -1415,6 +1449,8 @@ module Aws::Chime
|
|
1415
1449
|
EventsConfiguration.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "LambdaFunctionArn"))
|
1416
1450
|
EventsConfiguration.struct_class = Types::EventsConfiguration
|
1417
1451
|
|
1452
|
+
ExternalUserIdList.member = Shapes::ShapeRef.new(shape: ExternalUserIdType)
|
1453
|
+
|
1418
1454
|
ForbiddenException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
|
1419
1455
|
ForbiddenException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
1420
1456
|
ForbiddenException.struct_class = Types::ForbiddenException
|
@@ -1936,6 +1972,7 @@ module Aws::Chime
|
|
1936
1972
|
MediaCapturePipeline.add_member(:sink_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SinkArn"))
|
1937
1973
|
MediaCapturePipeline.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
|
1938
1974
|
MediaCapturePipeline.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
|
1975
|
+
MediaCapturePipeline.add_member(:chime_sdk_meeting_configuration, Shapes::ShapeRef.new(shape: ChimeSdkMeetingConfiguration, location_name: "ChimeSdkMeetingConfiguration"))
|
1939
1976
|
MediaCapturePipeline.struct_class = Types::MediaCapturePipeline
|
1940
1977
|
|
1941
1978
|
MediaCapturePipelineList.member = Shapes::ShapeRef.new(shape: MediaCapturePipeline)
|
@@ -2284,6 +2321,10 @@ module Aws::Chime
|
|
2284
2321
|
SearchAvailablePhoneNumbersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
2285
2322
|
SearchAvailablePhoneNumbersResponse.struct_class = Types::SearchAvailablePhoneNumbersResponse
|
2286
2323
|
|
2324
|
+
SelectedVideoStreams.add_member(:attendee_ids, Shapes::ShapeRef.new(shape: AttendeeIdList, location_name: "AttendeeIds"))
|
2325
|
+
SelectedVideoStreams.add_member(:external_user_ids, Shapes::ShapeRef.new(shape: ExternalUserIdList, location_name: "ExternalUserIds"))
|
2326
|
+
SelectedVideoStreams.struct_class = Types::SelectedVideoStreams
|
2327
|
+
|
2287
2328
|
SendChannelMessageRequest.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "uri", location_name: "channelArn"))
|
2288
2329
|
SendChannelMessageRequest.add_member(:content, Shapes::ShapeRef.new(shape: NonEmptyContent, required: true, location_name: "Content"))
|
2289
2330
|
SendChannelMessageRequest.add_member(:type, Shapes::ShapeRef.new(shape: ChannelMessageType, required: true, location_name: "Type"))
|
@@ -2312,6 +2353,9 @@ module Aws::Chime
|
|
2312
2353
|
|
2313
2354
|
SigninDelegateGroupList.member = Shapes::ShapeRef.new(shape: SigninDelegateGroup)
|
2314
2355
|
|
2356
|
+
SipHeadersMap.key = Shapes::ShapeRef.new(shape: SensitiveString)
|
2357
|
+
SipHeadersMap.value = Shapes::ShapeRef.new(shape: SensitiveString)
|
2358
|
+
|
2315
2359
|
SipMediaApplication.add_member(:sip_media_application_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "SipMediaApplicationId"))
|
2316
2360
|
SipMediaApplication.add_member(:aws_region, Shapes::ShapeRef.new(shape: String, location_name: "AwsRegion"))
|
2317
2361
|
SipMediaApplication.add_member(:name, Shapes::ShapeRef.new(shape: SipMediaApplicationName, location_name: "Name"))
|
@@ -2352,6 +2396,9 @@ module Aws::Chime
|
|
2352
2396
|
|
2353
2397
|
SipRuleTargetApplicationList.member = Shapes::ShapeRef.new(shape: SipRuleTargetApplication)
|
2354
2398
|
|
2399
|
+
SourceConfiguration.add_member(:selected_video_streams, Shapes::ShapeRef.new(shape: SelectedVideoStreams, location_name: "SelectedVideoStreams"))
|
2400
|
+
SourceConfiguration.struct_class = Types::SourceConfiguration
|
2401
|
+
|
2355
2402
|
StartMeetingTranscriptionRequest.add_member(:meeting_id, Shapes::ShapeRef.new(shape: GuidString, required: true, location: "uri", location_name: "meetingId"))
|
2356
2403
|
StartMeetingTranscriptionRequest.add_member(:transcription_configuration, Shapes::ShapeRef.new(shape: TranscriptionConfiguration, required: true, location_name: "TranscriptionConfiguration"))
|
2357
2404
|
StartMeetingTranscriptionRequest.struct_class = Types::StartMeetingTranscriptionRequest
|
@@ -2507,8 +2554,8 @@ module Aws::Chime
|
|
2507
2554
|
UpdateChannelResponse.add_member(:channel_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "ChannelArn"))
|
2508
2555
|
UpdateChannelResponse.struct_class = Types::UpdateChannelResponse
|
2509
2556
|
|
2510
|
-
UpdateGlobalSettingsRequest.add_member(:business_calling, Shapes::ShapeRef.new(shape: BusinessCallingSettings,
|
2511
|
-
UpdateGlobalSettingsRequest.add_member(:voice_connector, Shapes::ShapeRef.new(shape: VoiceConnectorSettings,
|
2557
|
+
UpdateGlobalSettingsRequest.add_member(:business_calling, Shapes::ShapeRef.new(shape: BusinessCallingSettings, location_name: "BusinessCalling"))
|
2558
|
+
UpdateGlobalSettingsRequest.add_member(:voice_connector, Shapes::ShapeRef.new(shape: VoiceConnectorSettings, location_name: "VoiceConnector"))
|
2512
2559
|
UpdateGlobalSettingsRequest.struct_class = Types::UpdateGlobalSettingsRequest
|
2513
2560
|
|
2514
2561
|
UpdatePhoneNumberRequest.add_member(:phone_number_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "phoneNumberId"))
|
@@ -2650,6 +2697,10 @@ module Aws::Chime
|
|
2650
2697
|
UserSettings.add_member(:telephony, Shapes::ShapeRef.new(shape: TelephonySettings, required: true, location_name: "Telephony"))
|
2651
2698
|
UserSettings.struct_class = Types::UserSettings
|
2652
2699
|
|
2700
|
+
VideoArtifactsConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: ArtifactsState, required: true, location_name: "State"))
|
2701
|
+
VideoArtifactsConfiguration.add_member(:mux_type, Shapes::ShapeRef.new(shape: VideoMuxType, location_name: "MuxType"))
|
2702
|
+
VideoArtifactsConfiguration.struct_class = Types::VideoArtifactsConfiguration
|
2703
|
+
|
2653
2704
|
VoiceConnector.add_member(:voice_connector_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorId"))
|
2654
2705
|
VoiceConnector.add_member(:aws_region, Shapes::ShapeRef.new(shape: VoiceConnectorAwsRegion, location_name: "AwsRegion"))
|
2655
2706
|
VoiceConnector.add_member(:name, Shapes::ShapeRef.new(shape: VoiceConnectorName, location_name: "Name"))
|
@@ -2657,6 +2708,7 @@ module Aws::Chime
|
|
2657
2708
|
VoiceConnector.add_member(:require_encryption, Shapes::ShapeRef.new(shape: Boolean, location_name: "RequireEncryption"))
|
2658
2709
|
VoiceConnector.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
|
2659
2710
|
VoiceConnector.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
|
2711
|
+
VoiceConnector.add_member(:voice_connector_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorArn"))
|
2660
2712
|
VoiceConnector.struct_class = Types::VoiceConnector
|
2661
2713
|
|
2662
2714
|
VoiceConnectorGroup.add_member(:voice_connector_group_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorGroupId"))
|
@@ -2664,6 +2716,7 @@ module Aws::Chime
|
|
2664
2716
|
VoiceConnectorGroup.add_member(:voice_connector_items, Shapes::ShapeRef.new(shape: VoiceConnectorItemList, location_name: "VoiceConnectorItems"))
|
2665
2717
|
VoiceConnectorGroup.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "CreatedTimestamp"))
|
2666
2718
|
VoiceConnectorGroup.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
|
2719
|
+
VoiceConnectorGroup.add_member(:voice_connector_group_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorGroupArn"))
|
2667
2720
|
VoiceConnectorGroup.struct_class = Types::VoiceConnectorGroup
|
2668
2721
|
|
2669
2722
|
VoiceConnectorGroupList.member = Shapes::ShapeRef.new(shape: VoiceConnectorGroup)
|
@@ -3213,6 +3266,7 @@ module Aws::Chime
|
|
3213
3266
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
3214
3267
|
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
3215
3268
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
3269
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3216
3270
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
3217
3271
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
3218
3272
|
end)
|
@@ -5670,6 +5724,7 @@ module Aws::Chime
|
|
5670
5724
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
5671
5725
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
5672
5726
|
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
5727
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
5673
5728
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
5674
5729
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
5675
5730
|
end)
|
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -383,6 +383,47 @@ module Aws::Chime
|
|
383
383
|
include Aws::Structure
|
384
384
|
end
|
385
385
|
|
386
|
+
# The configuration for the artifacts.
|
387
|
+
#
|
388
|
+
# @note When making an API call, you may pass ArtifactsConfiguration
|
389
|
+
# data as a hash:
|
390
|
+
#
|
391
|
+
# {
|
392
|
+
# audio: { # required
|
393
|
+
# mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
|
394
|
+
# },
|
395
|
+
# video: { # required
|
396
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
397
|
+
# mux_type: "VideoOnly", # accepts VideoOnly
|
398
|
+
# },
|
399
|
+
# content: { # required
|
400
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
401
|
+
# mux_type: "ContentOnly", # accepts ContentOnly
|
402
|
+
# },
|
403
|
+
# }
|
404
|
+
#
|
405
|
+
# @!attribute [rw] audio
|
406
|
+
# The configuration for the audio artifacts.
|
407
|
+
# @return [Types::AudioArtifactsConfiguration]
|
408
|
+
#
|
409
|
+
# @!attribute [rw] video
|
410
|
+
# The configuration for the video artifacts.
|
411
|
+
# @return [Types::VideoArtifactsConfiguration]
|
412
|
+
#
|
413
|
+
# @!attribute [rw] content
|
414
|
+
# The configuration for the content artifacts.
|
415
|
+
# @return [Types::ContentArtifactsConfiguration]
|
416
|
+
#
|
417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ArtifactsConfiguration AWS API Documentation
|
418
|
+
#
|
419
|
+
class ArtifactsConfiguration < Struct.new(
|
420
|
+
:audio,
|
421
|
+
:video,
|
422
|
+
:content)
|
423
|
+
SENSITIVE = []
|
424
|
+
include Aws::Structure
|
425
|
+
end
|
426
|
+
|
386
427
|
# @note When making an API call, you may pass AssociatePhoneNumberWithUserRequest
|
387
428
|
# data as a hash:
|
388
429
|
#
|
@@ -580,6 +621,27 @@ module Aws::Chime
|
|
580
621
|
include Aws::Structure
|
581
622
|
end
|
582
623
|
|
624
|
+
# The audio artifact configuration object.
|
625
|
+
#
|
626
|
+
# @note When making an API call, you may pass AudioArtifactsConfiguration
|
627
|
+
# data as a hash:
|
628
|
+
#
|
629
|
+
# {
|
630
|
+
# mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
|
631
|
+
# }
|
632
|
+
#
|
633
|
+
# @!attribute [rw] mux_type
|
634
|
+
# The MUX type of the audio artifact configuration object.
|
635
|
+
# @return [String]
|
636
|
+
#
|
637
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/AudioArtifactsConfiguration AWS API Documentation
|
638
|
+
#
|
639
|
+
class AudioArtifactsConfiguration < Struct.new(
|
640
|
+
:mux_type)
|
641
|
+
SENSITIVE = []
|
642
|
+
include Aws::Structure
|
643
|
+
end
|
644
|
+
|
583
645
|
# The input parameters don't match the service's restrictions.
|
584
646
|
#
|
585
647
|
# @!attribute [rw] code
|
@@ -1498,6 +1560,52 @@ module Aws::Chime
|
|
1498
1560
|
include Aws::Structure
|
1499
1561
|
end
|
1500
1562
|
|
1563
|
+
# The configuration object of the Amazon Chime SDK meeting for a
|
1564
|
+
# specified media capture pipeline. `SourceType` must be
|
1565
|
+
# `ChimeSdkMeeting`.
|
1566
|
+
#
|
1567
|
+
# @note When making an API call, you may pass ChimeSdkMeetingConfiguration
|
1568
|
+
# data as a hash:
|
1569
|
+
#
|
1570
|
+
# {
|
1571
|
+
# source_configuration: {
|
1572
|
+
# selected_video_streams: {
|
1573
|
+
# attendee_ids: ["GuidString"],
|
1574
|
+
# external_user_ids: ["ExternalUserIdType"],
|
1575
|
+
# },
|
1576
|
+
# },
|
1577
|
+
# artifacts_configuration: {
|
1578
|
+
# audio: { # required
|
1579
|
+
# mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
|
1580
|
+
# },
|
1581
|
+
# video: { # required
|
1582
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1583
|
+
# mux_type: "VideoOnly", # accepts VideoOnly
|
1584
|
+
# },
|
1585
|
+
# content: { # required
|
1586
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1587
|
+
# mux_type: "ContentOnly", # accepts ContentOnly
|
1588
|
+
# },
|
1589
|
+
# },
|
1590
|
+
# }
|
1591
|
+
#
|
1592
|
+
# @!attribute [rw] source_configuration
|
1593
|
+
# The source configuration for a specified media capture pipline.
|
1594
|
+
# @return [Types::SourceConfiguration]
|
1595
|
+
#
|
1596
|
+
# @!attribute [rw] artifacts_configuration
|
1597
|
+
# The configuration for the artifacts in an Amazon Chime SDK meeting.
|
1598
|
+
# @return [Types::ArtifactsConfiguration]
|
1599
|
+
#
|
1600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ChimeSdkMeetingConfiguration AWS API Documentation
|
1601
|
+
#
|
1602
|
+
class ChimeSdkMeetingConfiguration < Struct.new(
|
1603
|
+
:source_configuration,
|
1604
|
+
:artifacts_configuration)
|
1605
|
+
SENSITIVE = []
|
1606
|
+
include Aws::Structure
|
1607
|
+
end
|
1608
|
+
|
1501
1609
|
# The request could not be processed because of conflict in the current
|
1502
1610
|
# state of the resource.
|
1503
1611
|
#
|
@@ -1516,6 +1624,33 @@ module Aws::Chime
|
|
1516
1624
|
include Aws::Structure
|
1517
1625
|
end
|
1518
1626
|
|
1627
|
+
# The content artifact object.
|
1628
|
+
#
|
1629
|
+
# @note When making an API call, you may pass ContentArtifactsConfiguration
|
1630
|
+
# data as a hash:
|
1631
|
+
#
|
1632
|
+
# {
|
1633
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
1634
|
+
# mux_type: "ContentOnly", # accepts ContentOnly
|
1635
|
+
# }
|
1636
|
+
#
|
1637
|
+
# @!attribute [rw] state
|
1638
|
+
# Indicates whether the content artifact is enabled or disabled.
|
1639
|
+
# @return [String]
|
1640
|
+
#
|
1641
|
+
# @!attribute [rw] mux_type
|
1642
|
+
# The MUX type of the artifact configuration.
|
1643
|
+
# @return [String]
|
1644
|
+
#
|
1645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ContentArtifactsConfiguration AWS API Documentation
|
1646
|
+
#
|
1647
|
+
class ContentArtifactsConfiguration < Struct.new(
|
1648
|
+
:state,
|
1649
|
+
:mux_type)
|
1650
|
+
SENSITIVE = []
|
1651
|
+
include Aws::Structure
|
1652
|
+
end
|
1653
|
+
|
1519
1654
|
# The retention settings that determine how long to retain conversation
|
1520
1655
|
# messages for an Amazon Chime Enterprise account.
|
1521
1656
|
#
|
@@ -2140,6 +2275,27 @@ module Aws::Chime
|
|
2140
2275
|
# sink_type: "S3Bucket", # required, accepts S3Bucket
|
2141
2276
|
# sink_arn: "Arn", # required
|
2142
2277
|
# client_request_token: "ClientRequestToken",
|
2278
|
+
# chime_sdk_meeting_configuration: {
|
2279
|
+
# source_configuration: {
|
2280
|
+
# selected_video_streams: {
|
2281
|
+
# attendee_ids: ["GuidString"],
|
2282
|
+
# external_user_ids: ["ExternalUserIdType"],
|
2283
|
+
# },
|
2284
|
+
# },
|
2285
|
+
# artifacts_configuration: {
|
2286
|
+
# audio: { # required
|
2287
|
+
# mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo
|
2288
|
+
# },
|
2289
|
+
# video: { # required
|
2290
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
2291
|
+
# mux_type: "VideoOnly", # accepts VideoOnly
|
2292
|
+
# },
|
2293
|
+
# content: { # required
|
2294
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
2295
|
+
# mux_type: "ContentOnly", # accepts ContentOnly
|
2296
|
+
# },
|
2297
|
+
# },
|
2298
|
+
# },
|
2143
2299
|
# }
|
2144
2300
|
#
|
2145
2301
|
# @!attribute [rw] source_type
|
@@ -2167,6 +2323,11 @@ module Aws::Chime
|
|
2167
2323
|
# not need to pass this option.
|
2168
2324
|
# @return [String]
|
2169
2325
|
#
|
2326
|
+
# @!attribute [rw] chime_sdk_meeting_configuration
|
2327
|
+
# The configuration for a specified media capture pipeline.
|
2328
|
+
# `SourceType` must be `ChimeSdkMeeting`.
|
2329
|
+
# @return [Types::ChimeSdkMeetingConfiguration]
|
2330
|
+
#
|
2170
2331
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipelineRequest AWS API Documentation
|
2171
2332
|
#
|
2172
2333
|
class CreateMediaCapturePipelineRequest < Struct.new(
|
@@ -2174,7 +2335,8 @@ module Aws::Chime
|
|
2174
2335
|
:source_arn,
|
2175
2336
|
:sink_type,
|
2176
2337
|
:sink_arn,
|
2177
|
-
:client_request_token
|
2338
|
+
:client_request_token,
|
2339
|
+
:chime_sdk_meeting_configuration)
|
2178
2340
|
SENSITIVE = [:source_arn, :sink_arn, :client_request_token]
|
2179
2341
|
include Aws::Structure
|
2180
2342
|
end
|
@@ -2655,6 +2817,9 @@ module Aws::Chime
|
|
2655
2817
|
# from_phone_number: "E164PhoneNumber", # required
|
2656
2818
|
# to_phone_number: "E164PhoneNumber", # required
|
2657
2819
|
# sip_media_application_id: "NonEmptyString", # required
|
2820
|
+
# sip_headers: {
|
2821
|
+
# "SensitiveString" => "SensitiveString",
|
2822
|
+
# },
|
2658
2823
|
# }
|
2659
2824
|
#
|
2660
2825
|
# @!attribute [rw] from_phone_number
|
@@ -2670,12 +2835,17 @@ module Aws::Chime
|
|
2670
2835
|
# The ID of the SIP media application.
|
2671
2836
|
# @return [String]
|
2672
2837
|
#
|
2838
|
+
# @!attribute [rw] sip_headers
|
2839
|
+
# The SIP headers added to an outbound call leg.
|
2840
|
+
# @return [Hash<String,String>]
|
2841
|
+
#
|
2673
2842
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateSipMediaApplicationCallRequest AWS API Documentation
|
2674
2843
|
#
|
2675
2844
|
class CreateSipMediaApplicationCallRequest < Struct.new(
|
2676
2845
|
:from_phone_number,
|
2677
2846
|
:to_phone_number,
|
2678
|
-
:sip_media_application_id
|
2847
|
+
:sip_media_application_id,
|
2848
|
+
:sip_headers)
|
2679
2849
|
SENSITIVE = [:from_phone_number, :to_phone_number]
|
2680
2850
|
include Aws::Structure
|
2681
2851
|
end
|
@@ -7006,8 +7176,8 @@ module Aws::Chime
|
|
7006
7176
|
#
|
7007
7177
|
class LogoutUserResponse < Aws::EmptyStructure; end
|
7008
7178
|
|
7009
|
-
# A media capture pipeline object
|
7010
|
-
#
|
7179
|
+
# A media capture pipeline object consisting of an ID, source type,
|
7180
|
+
# source ARN, a sink type, a sink ARN, and a configuration object.
|
7011
7181
|
#
|
7012
7182
|
# @!attribute [rw] media_pipeline_id
|
7013
7183
|
# The ID of a media capture pipeline.
|
@@ -7045,6 +7215,11 @@ module Aws::Chime
|
|
7045
7215
|
# format.
|
7046
7216
|
# @return [Time]
|
7047
7217
|
#
|
7218
|
+
# @!attribute [rw] chime_sdk_meeting_configuration
|
7219
|
+
# The configuration for a specified media capture pipeline.
|
7220
|
+
# `SourceType` must be `ChimeSdkMeeting`.
|
7221
|
+
# @return [Types::ChimeSdkMeetingConfiguration]
|
7222
|
+
#
|
7048
7223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaCapturePipeline AWS API Documentation
|
7049
7224
|
#
|
7050
7225
|
class MediaCapturePipeline < Struct.new(
|
@@ -7055,7 +7230,8 @@ module Aws::Chime
|
|
7055
7230
|
:sink_type,
|
7056
7231
|
:sink_arn,
|
7057
7232
|
:created_timestamp,
|
7058
|
-
:updated_timestamp
|
7233
|
+
:updated_timestamp,
|
7234
|
+
:chime_sdk_meeting_configuration)
|
7059
7235
|
SENSITIVE = [:source_arn, :sink_arn]
|
7060
7236
|
include Aws::Structure
|
7061
7237
|
end
|
@@ -7092,7 +7268,7 @@ module Aws::Chime
|
|
7092
7268
|
# @return [String]
|
7093
7269
|
#
|
7094
7270
|
# @!attribute [rw] event_ingestion_url
|
7095
|
-
# The
|
7271
|
+
# The event ingestion URL.
|
7096
7272
|
# @return [String]
|
7097
7273
|
#
|
7098
7274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaPlacement AWS API Documentation
|
@@ -7313,6 +7489,11 @@ module Aws::Chime
|
|
7313
7489
|
# Origination settings enable your SIP hosts to receive inbound calls
|
7314
7490
|
# using your Amazon Chime Voice Connector.
|
7315
7491
|
#
|
7492
|
+
# <note markdown="1"> The parameters listed below are not required, but you must use at
|
7493
|
+
# least one.
|
7494
|
+
#
|
7495
|
+
# </note>
|
7496
|
+
#
|
7316
7497
|
# @note When making an API call, you may pass Origination
|
7317
7498
|
# data as a hash:
|
7318
7499
|
#
|
@@ -7331,12 +7512,14 @@ module Aws::Chime
|
|
7331
7512
|
#
|
7332
7513
|
# @!attribute [rw] routes
|
7333
7514
|
# The call distribution properties defined for your SIP hosts. Valid
|
7334
|
-
# range: Minimum value of 1. Maximum value of 20.
|
7515
|
+
# range: Minimum value of 1. Maximum value of 20. This parameter is
|
7516
|
+
# not required, but you must specify this parameter or `Disabled`.
|
7335
7517
|
# @return [Array<Types::OriginationRoute>]
|
7336
7518
|
#
|
7337
7519
|
# @!attribute [rw] disabled
|
7338
7520
|
# When origination settings are disabled, inbound calls are not
|
7339
|
-
# enabled for your Amazon Chime Voice Connector.
|
7521
|
+
# enabled for your Amazon Chime Voice Connector. This parameter is not
|
7522
|
+
# required, but you must specify this parameter or `Routes`.
|
7340
7523
|
# @return [Boolean]
|
7341
7524
|
#
|
7342
7525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/Origination AWS API Documentation
|
@@ -7353,6 +7536,11 @@ module Aws::Chime
|
|
7353
7536
|
# Connector. Limit: Ten origination routes for each Amazon Chime Voice
|
7354
7537
|
# Connector.
|
7355
7538
|
#
|
7539
|
+
# <note markdown="1"> The parameters listed below are not required, but you must use at
|
7540
|
+
# least one.
|
7541
|
+
#
|
7542
|
+
# </note>
|
7543
|
+
#
|
7356
7544
|
# @note When making an API call, you may pass OriginationRoute
|
7357
7545
|
# data as a hash:
|
7358
7546
|
#
|
@@ -8745,6 +8933,36 @@ module Aws::Chime
|
|
8745
8933
|
include Aws::Structure
|
8746
8934
|
end
|
8747
8935
|
|
8936
|
+
# The video streams to capture for a specified media capture pipeline.
|
8937
|
+
# The total number of video streams can't exceed 25.
|
8938
|
+
#
|
8939
|
+
# @note When making an API call, you may pass SelectedVideoStreams
|
8940
|
+
# data as a hash:
|
8941
|
+
#
|
8942
|
+
# {
|
8943
|
+
# attendee_ids: ["GuidString"],
|
8944
|
+
# external_user_ids: ["ExternalUserIdType"],
|
8945
|
+
# }
|
8946
|
+
#
|
8947
|
+
# @!attribute [rw] attendee_ids
|
8948
|
+
# The attendee IDs of the streams selected for a media capture
|
8949
|
+
# pipeline.
|
8950
|
+
# @return [Array<String>]
|
8951
|
+
#
|
8952
|
+
# @!attribute [rw] external_user_ids
|
8953
|
+
# The external user IDs of the streams selected for a media capture
|
8954
|
+
# pipeline.
|
8955
|
+
# @return [Array<String>]
|
8956
|
+
#
|
8957
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/SelectedVideoStreams AWS API Documentation
|
8958
|
+
#
|
8959
|
+
class SelectedVideoStreams < Struct.new(
|
8960
|
+
:attendee_ids,
|
8961
|
+
:external_user_ids)
|
8962
|
+
SENSITIVE = []
|
8963
|
+
include Aws::Structure
|
8964
|
+
end
|
8965
|
+
|
8748
8966
|
# @note When making an API call, you may pass SendChannelMessageRequest
|
8749
8967
|
# data as a hash:
|
8750
8968
|
#
|
@@ -9070,6 +9288,31 @@ module Aws::Chime
|
|
9070
9288
|
include Aws::Structure
|
9071
9289
|
end
|
9072
9290
|
|
9291
|
+
# Source configuration for a specified media capture pipeline.
|
9292
|
+
#
|
9293
|
+
# @note When making an API call, you may pass SourceConfiguration
|
9294
|
+
# data as a hash:
|
9295
|
+
#
|
9296
|
+
# {
|
9297
|
+
# selected_video_streams: {
|
9298
|
+
# attendee_ids: ["GuidString"],
|
9299
|
+
# external_user_ids: ["ExternalUserIdType"],
|
9300
|
+
# },
|
9301
|
+
# }
|
9302
|
+
#
|
9303
|
+
# @!attribute [rw] selected_video_streams
|
9304
|
+
# The selected video streams to capture for a specified media capture
|
9305
|
+
# pipeline. The number of video streams can't exceed 25.
|
9306
|
+
# @return [Types::SelectedVideoStreams]
|
9307
|
+
#
|
9308
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/SourceConfiguration AWS API Documentation
|
9309
|
+
#
|
9310
|
+
class SourceConfiguration < Struct.new(
|
9311
|
+
:selected_video_streams)
|
9312
|
+
SENSITIVE = []
|
9313
|
+
include Aws::Structure
|
9314
|
+
end
|
9315
|
+
|
9073
9316
|
# @note When making an API call, you may pass StartMeetingTranscriptionRequest
|
9074
9317
|
# data as a hash:
|
9075
9318
|
#
|
@@ -9474,8 +9717,8 @@ module Aws::Chime
|
|
9474
9717
|
# @return [Types::EngineTranscribeSettings]
|
9475
9718
|
#
|
9476
9719
|
# @!attribute [rw] engine_transcribe_medical_settings
|
9477
|
-
# The transcription configuration settings passed to Amazon
|
9478
|
-
#
|
9720
|
+
# The transcription configuration settings passed to Amazon Transcribe
|
9721
|
+
# Medical.
|
9479
9722
|
# @return [Types::EngineTranscribeMedicalSettings]
|
9480
9723
|
#
|
9481
9724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/TranscriptionConfiguration AWS API Documentation
|
@@ -9964,10 +10207,10 @@ module Aws::Chime
|
|
9964
10207
|
# data as a hash:
|
9965
10208
|
#
|
9966
10209
|
# {
|
9967
|
-
# business_calling: {
|
10210
|
+
# business_calling: {
|
9968
10211
|
# cdr_bucket: "String",
|
9969
10212
|
# },
|
9970
|
-
# voice_connector: {
|
10213
|
+
# voice_connector: {
|
9971
10214
|
# cdr_bucket: "String",
|
9972
10215
|
# },
|
9973
10216
|
# }
|
@@ -10732,6 +10975,33 @@ module Aws::Chime
|
|
10732
10975
|
include Aws::Structure
|
10733
10976
|
end
|
10734
10977
|
|
10978
|
+
# The video artifact configuration object.
|
10979
|
+
#
|
10980
|
+
# @note When making an API call, you may pass VideoArtifactsConfiguration
|
10981
|
+
# data as a hash:
|
10982
|
+
#
|
10983
|
+
# {
|
10984
|
+
# state: "Enabled", # required, accepts Enabled, Disabled
|
10985
|
+
# mux_type: "VideoOnly", # accepts VideoOnly
|
10986
|
+
# }
|
10987
|
+
#
|
10988
|
+
# @!attribute [rw] state
|
10989
|
+
# Indicates whether the video artifact is enabled or disabled.
|
10990
|
+
# @return [String]
|
10991
|
+
#
|
10992
|
+
# @!attribute [rw] mux_type
|
10993
|
+
# The MUX type of the video artifact configuration object.
|
10994
|
+
# @return [String]
|
10995
|
+
#
|
10996
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/VideoArtifactsConfiguration AWS API Documentation
|
10997
|
+
#
|
10998
|
+
class VideoArtifactsConfiguration < Struct.new(
|
10999
|
+
:state,
|
11000
|
+
:mux_type)
|
11001
|
+
SENSITIVE = []
|
11002
|
+
include Aws::Structure
|
11003
|
+
end
|
11004
|
+
|
10735
11005
|
# The Amazon Chime Voice Connector configuration, including outbound
|
10736
11006
|
# host name and encryption settings.
|
10737
11007
|
#
|
@@ -10767,6 +11037,10 @@ module Aws::Chime
|
|
10767
11037
|
# format.
|
10768
11038
|
# @return [Time]
|
10769
11039
|
#
|
11040
|
+
# @!attribute [rw] voice_connector_arn
|
11041
|
+
# The ARN of the specified Amazon Chime Voice Connector.
|
11042
|
+
# @return [String]
|
11043
|
+
#
|
10770
11044
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/VoiceConnector AWS API Documentation
|
10771
11045
|
#
|
10772
11046
|
class VoiceConnector < Struct.new(
|
@@ -10776,7 +11050,8 @@ module Aws::Chime
|
|
10776
11050
|
:outbound_host_name,
|
10777
11051
|
:require_encryption,
|
10778
11052
|
:created_timestamp,
|
10779
|
-
:updated_timestamp
|
11053
|
+
:updated_timestamp,
|
11054
|
+
:voice_connector_arn)
|
10780
11055
|
SENSITIVE = []
|
10781
11056
|
include Aws::Structure
|
10782
11057
|
end
|
@@ -10809,6 +11084,10 @@ module Aws::Chime
|
|
10809
11084
|
# 8601 format.
|
10810
11085
|
# @return [Time]
|
10811
11086
|
#
|
11087
|
+
# @!attribute [rw] voice_connector_group_arn
|
11088
|
+
# The ARN of the specified Amazon Chime Voice Connector group.
|
11089
|
+
# @return [String]
|
11090
|
+
#
|
10812
11091
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/VoiceConnectorGroup AWS API Documentation
|
10813
11092
|
#
|
10814
11093
|
class VoiceConnectorGroup < Struct.new(
|
@@ -10816,7 +11095,8 @@ module Aws::Chime
|
|
10816
11095
|
:name,
|
10817
11096
|
:voice_connector_items,
|
10818
11097
|
:created_timestamp,
|
10819
|
-
:updated_timestamp
|
11098
|
+
:updated_timestamp,
|
11099
|
+
:voice_connector_group_arn)
|
10820
11100
|
SENSITIVE = []
|
10821
11101
|
include Aws::Structure
|
10822
11102
|
end
|
data/lib/aws-sdk-chime.rb
CHANGED
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.60.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-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.121.2
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.121.2
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|