aws-sdk-connect 1.64.0 → 1.67.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +31 -8
- data/lib/aws-sdk-connect/client_api.rb +5 -0
- data/lib/aws-sdk-connect/types.rb +14 -7
- data/lib/aws-sdk-connect.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: fe5fe6fc3975de22364cd0e1c90e727851634c881bf615bc5430ca5802e84493
|
4
|
+
data.tar.gz: 8cf499683773b2e21b03e7ebc3bc829d004f42e739ba4cd2a8ad6b4bd1ee3d32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7fde0574c2897e88e9b90b4c4f974f7f8ae2588de567c5f588672897b6a52b7ebe79539a44795ac1930b1631aecffa084944f63fb41a8653f71aa02f2104114
|
7
|
+
data.tar.gz: ad171091580af25be6ff687a96bfadaffd0cd8518bb1339d7306121115fa343dd0570b8a2e919fda30d7933b52ccdc442818dddb1faef0d84d452c0821969f98
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.67.0 (2022-03-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for enabling Rich Messaging when starting a new chat session via the StartChatContact API. Rich Messaging enables the following formatting options: bold, italics, hyperlinks, bulleted lists, and numbered lists.
|
8
|
+
|
9
|
+
1.66.0 (2022-03-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release updates the *InstanceStorageConfig APIs so they support a new ResourceType: REAL_TIME_CONTACT_ANALYSIS_SEGMENTS. Use this resource type to enable streaming for real-time contact analysis and to associate the Kinesis stream where real-time contact analysis segments will be published.
|
13
|
+
|
14
|
+
1.65.0 (2022-02-24)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.64.0 (2022-02-03)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.67.0
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
32
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
@@ -75,6 +76,7 @@ module Aws::Connect
|
|
75
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
76
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
77
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
78
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
79
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
80
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
@@ -490,7 +492,7 @@ module Aws::Connect
|
|
490
492
|
#
|
491
493
|
# resp = client.associate_instance_storage_config({
|
492
494
|
# instance_id: "InstanceId", # required
|
493
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
495
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
494
496
|
# storage_config: { # required
|
495
497
|
# association_id: "AssociationId",
|
496
498
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
@@ -2289,7 +2291,7 @@ module Aws::Connect
|
|
2289
2291
|
# resp = client.describe_instance_storage_config({
|
2290
2292
|
# instance_id: "InstanceId", # required
|
2291
2293
|
# association_id: "AssociationId", # required
|
2292
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
2294
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
2293
2295
|
# })
|
2294
2296
|
#
|
2295
2297
|
# @example Response structure
|
@@ -2777,7 +2779,7 @@ module Aws::Connect
|
|
2777
2779
|
# resp = client.disassociate_instance_storage_config({
|
2778
2780
|
# instance_id: "InstanceId", # required
|
2779
2781
|
# association_id: "AssociationId", # required
|
2780
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
2782
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
2781
2783
|
# })
|
2782
2784
|
#
|
2783
2785
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateInstanceStorageConfig AWS API Documentation
|
@@ -4048,7 +4050,7 @@ module Aws::Connect
|
|
4048
4050
|
#
|
4049
4051
|
# resp = client.list_instance_storage_configs({
|
4050
4052
|
# instance_id: "InstanceId", # required
|
4051
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
4053
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
4052
4054
|
# next_token: "NextToken",
|
4053
4055
|
# max_results: 1,
|
4054
4056
|
# })
|
@@ -5200,6 +5202,10 @@ module Aws::Connect
|
|
5200
5202
|
# configurable time is 60 minutes. The maximum configurable time is
|
5201
5203
|
# 10,080 minutes (7 days).
|
5202
5204
|
#
|
5205
|
+
# @option params [Array<String>] :supported_messaging_content_types
|
5206
|
+
# The supported chat message content types. Content types can be
|
5207
|
+
# text/plain or both text/plain and text/markdown.
|
5208
|
+
#
|
5203
5209
|
# @return [Types::StartChatContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5204
5210
|
#
|
5205
5211
|
# * {Types::StartChatContactResponse#contact_id #contact_id} => String
|
@@ -5223,6 +5229,7 @@ module Aws::Connect
|
|
5223
5229
|
# },
|
5224
5230
|
# client_token: "ClientToken",
|
5225
5231
|
# chat_duration_in_minutes: 1,
|
5232
|
+
# supported_messaging_content_types: ["SupportedMessagingContentType"],
|
5226
5233
|
# })
|
5227
5234
|
#
|
5228
5235
|
# @example Response structure
|
@@ -5240,7 +5247,14 @@ module Aws::Connect
|
|
5240
5247
|
req.send_request(options)
|
5241
5248
|
end
|
5242
5249
|
|
5243
|
-
# Starts recording the contact
|
5250
|
+
# Starts recording the contact:
|
5251
|
+
#
|
5252
|
+
# * If the API is called *before* the agent joins the call, recording
|
5253
|
+
# starts when the agent joins the call.
|
5254
|
+
#
|
5255
|
+
# * If the API is called *after* the agent joins the call, recording
|
5256
|
+
# starts at the time of the API call.
|
5257
|
+
#
|
5244
5258
|
# StartContactRecording is a one-time action. For example, if you use
|
5245
5259
|
# StopContactRecording to stop recording an ongoing call, you can't use
|
5246
5260
|
# StartContactRecording to restart it. For scenarios where the recording
|
@@ -5565,7 +5579,16 @@ module Aws::Connect
|
|
5565
5579
|
req.send_request(options)
|
5566
5580
|
end
|
5567
5581
|
|
5568
|
-
# Ends the specified contact.
|
5582
|
+
# Ends the specified contact. This call does not work for the following
|
5583
|
+
# initiation methods:
|
5584
|
+
#
|
5585
|
+
# * CALLBACK
|
5586
|
+
#
|
5587
|
+
# * DISCONNECT
|
5588
|
+
#
|
5589
|
+
# * TRANSFER
|
5590
|
+
#
|
5591
|
+
# * QUEUE\_TRANSFER
|
5569
5592
|
#
|
5570
5593
|
# @option params [required, String] :contact_id
|
5571
5594
|
# The ID of the contact.
|
@@ -6299,7 +6322,7 @@ module Aws::Connect
|
|
6299
6322
|
# resp = client.update_instance_storage_config({
|
6300
6323
|
# instance_id: "InstanceId", # required
|
6301
6324
|
# association_id: "AssociationId", # required
|
6302
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
6325
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
6303
6326
|
# storage_config: { # required
|
6304
6327
|
# association_id: "AssociationId",
|
6305
6328
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
@@ -7052,7 +7075,7 @@ module Aws::Connect
|
|
7052
7075
|
params: params,
|
7053
7076
|
config: config)
|
7054
7077
|
context[:gem_name] = 'aws-sdk-connect'
|
7055
|
-
context[:gem_version] = '1.
|
7078
|
+
context[:gem_version] = '1.67.0'
|
7056
7079
|
Seahorse::Client::Request.new(handlers, context)
|
7057
7080
|
end
|
7058
7081
|
|
@@ -462,6 +462,8 @@ module Aws::Connect
|
|
462
462
|
StorageType = Shapes::StringShape.new(name: 'StorageType')
|
463
463
|
StreamingId = Shapes::StringShape.new(name: 'StreamingId')
|
464
464
|
String = Shapes::StringShape.new(name: 'String')
|
465
|
+
SupportedMessagingContentType = Shapes::StringShape.new(name: 'SupportedMessagingContentType')
|
466
|
+
SupportedMessagingContentTypes = Shapes::ListShape.new(name: 'SupportedMessagingContentTypes')
|
465
467
|
SuspendContactRecordingRequest = Shapes::StructureShape.new(name: 'SuspendContactRecordingRequest')
|
466
468
|
SuspendContactRecordingResponse = Shapes::StructureShape.new(name: 'SuspendContactRecordingResponse')
|
467
469
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
@@ -1864,6 +1866,7 @@ module Aws::Connect
|
|
1864
1866
|
StartChatContactRequest.add_member(:initial_message, Shapes::ShapeRef.new(shape: ChatMessage, location_name: "InitialMessage"))
|
1865
1867
|
StartChatContactRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
1866
1868
|
StartChatContactRequest.add_member(:chat_duration_in_minutes, Shapes::ShapeRef.new(shape: ChatDurationInMinutes, location_name: "ChatDurationInMinutes"))
|
1869
|
+
StartChatContactRequest.add_member(:supported_messaging_content_types, Shapes::ShapeRef.new(shape: SupportedMessagingContentTypes, location_name: "SupportedMessagingContentTypes"))
|
1867
1870
|
StartChatContactRequest.struct_class = Types::StartChatContactRequest
|
1868
1871
|
|
1869
1872
|
StartChatContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
|
@@ -1937,6 +1940,8 @@ module Aws::Connect
|
|
1937
1940
|
|
1938
1941
|
StopContactStreamingResponse.struct_class = Types::StopContactStreamingResponse
|
1939
1942
|
|
1943
|
+
SupportedMessagingContentTypes.member = Shapes::ShapeRef.new(shape: SupportedMessagingContentType)
|
1944
|
+
|
1940
1945
|
SuspendContactRecordingRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
1941
1946
|
SuspendContactRecordingRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location_name: "ContactId"))
|
1942
1947
|
SuspendContactRecordingRequest.add_member(:initial_contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location_name: "InitialContactId"))
|
@@ -261,7 +261,7 @@ module Aws::Connect
|
|
261
261
|
#
|
262
262
|
# {
|
263
263
|
# instance_id: "InstanceId", # required
|
264
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
264
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
265
265
|
# storage_config: { # required
|
266
266
|
# association_id: "AssociationId",
|
267
267
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
@@ -549,7 +549,7 @@ module Aws::Connect
|
|
549
549
|
# }
|
550
550
|
#
|
551
551
|
# @!attribute [rw] content_type
|
552
|
-
# The type of the content. Supported types are text
|
552
|
+
# The type of the content. Supported types are `text/plain`.
|
553
553
|
# @return [String]
|
554
554
|
#
|
555
555
|
# @!attribute [rw] content
|
@@ -2697,7 +2697,7 @@ module Aws::Connect
|
|
2697
2697
|
# {
|
2698
2698
|
# instance_id: "InstanceId", # required
|
2699
2699
|
# association_id: "AssociationId", # required
|
2700
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
2700
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
2701
2701
|
# }
|
2702
2702
|
#
|
2703
2703
|
# @!attribute [rw] instance_id
|
@@ -3139,7 +3139,7 @@ module Aws::Connect
|
|
3139
3139
|
# {
|
3140
3140
|
# instance_id: "InstanceId", # required
|
3141
3141
|
# association_id: "AssociationId", # required
|
3142
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
3142
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
3143
3143
|
# }
|
3144
3144
|
#
|
3145
3145
|
# @!attribute [rw] instance_id
|
@@ -5445,7 +5445,7 @@ module Aws::Connect
|
|
5445
5445
|
#
|
5446
5446
|
# {
|
5447
5447
|
# instance_id: "InstanceId", # required
|
5448
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
5448
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
5449
5449
|
# next_token: "NextToken",
|
5450
5450
|
# max_results: 1,
|
5451
5451
|
# }
|
@@ -7527,6 +7527,7 @@ module Aws::Connect
|
|
7527
7527
|
# },
|
7528
7528
|
# client_token: "ClientToken",
|
7529
7529
|
# chat_duration_in_minutes: 1,
|
7530
|
+
# supported_messaging_content_types: ["SupportedMessagingContentType"],
|
7530
7531
|
# }
|
7531
7532
|
#
|
7532
7533
|
# @!attribute [rw] instance_id
|
@@ -7578,6 +7579,11 @@ module Aws::Connect
|
|
7578
7579
|
# time is 10,080 minutes (7 days).
|
7579
7580
|
# @return [Integer]
|
7580
7581
|
#
|
7582
|
+
# @!attribute [rw] supported_messaging_content_types
|
7583
|
+
# The supported chat message content types. Content types can be
|
7584
|
+
# text/plain or both text/plain and text/markdown.
|
7585
|
+
# @return [Array<String>]
|
7586
|
+
#
|
7581
7587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartChatContactRequest AWS API Documentation
|
7582
7588
|
#
|
7583
7589
|
class StartChatContactRequest < Struct.new(
|
@@ -7587,7 +7593,8 @@ module Aws::Connect
|
|
7587
7593
|
:participant_details,
|
7588
7594
|
:initial_message,
|
7589
7595
|
:client_token,
|
7590
|
-
:chat_duration_in_minutes
|
7596
|
+
:chat_duration_in_minutes,
|
7597
|
+
:supported_messaging_content_types)
|
7591
7598
|
SENSITIVE = []
|
7592
7599
|
include Aws::Structure
|
7593
7600
|
end
|
@@ -8690,7 +8697,7 @@ module Aws::Connect
|
|
8690
8697
|
# {
|
8691
8698
|
# instance_id: "InstanceId", # required
|
8692
8699
|
# association_id: "AssociationId", # required
|
8693
|
-
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS
|
8700
|
+
# resource_type: "CHAT_TRANSCRIPTS", # required, accepts CHAT_TRANSCRIPTS, CALL_RECORDINGS, SCHEDULED_REPORTS, MEDIA_STREAMS, CONTACT_TRACE_RECORDS, AGENT_EVENTS, REAL_TIME_CONTACT_ANALYSIS_SEGMENTS
|
8694
8701
|
# storage_config: { # required
|
8695
8702
|
# association_id: "AssociationId",
|
8696
8703
|
# storage_type: "S3", # required, accepts S3, KINESIS_VIDEO_STREAM, KINESIS_STREAM, KINESIS_FIREHOSE
|
data/lib/aws-sdk-connect.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.67.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-11 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.127.0
|
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.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|