aws-sdk-chime 1.61.0 → 1.65.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/client.rb +23 -3
- data/lib/aws-sdk-chime/client_api.rb +13 -0
- data/lib/aws-sdk-chime/types.rb +76 -2
- 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: 2919645c3336a75c9d4462a86930a27e6c2501eb04b791c9cdbecf7826665409
|
4
|
+
data.tar.gz: a63ff2087b09be802e6ce93fc933e9f464a87de01d755fffce0a9f8414b963d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1726d206a0c5ad10e88dd7068bfd2c2436777b1af940f7c81b730b56f4cc82caece0f9604cbab8e5ac9608949026e783406622f15d3ed16f7438f22e3a369f3
|
7
|
+
data.tar.gz: 3899ab794e0df1cb994170b2b8f97d3867f81fffe843032dfd6a028e68f572608aa182a3e96e42c5d5b95dc491915ae640dcc2084bfb3c0bfb415ac8b1d0d650
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.65.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.64.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.63.0 (2021-11-30)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.62.0 (2021-11-18)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Adds new Transcribe API parameters to StartMeetingTranscription, including support for content identification and redaction (PII & PHI), partial results stabilization, and custom language models.
|
23
|
+
|
4
24
|
1.61.0 (2021-11-04)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.65.0
|
data/lib/aws-sdk-chime/client.rb
CHANGED
@@ -27,6 +27,8 @@ 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/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::Chime
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::Chime
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::Chime
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -295,7 +305,7 @@ module Aws::Chime
|
|
295
305
|
# seconds to wait when opening a HTTP session before raising a
|
296
306
|
# `Timeout::Error`.
|
297
307
|
#
|
298
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
309
|
# number of seconds to wait for response data. This value can
|
300
310
|
# safely be set per-request on the session.
|
301
311
|
#
|
@@ -311,6 +321,9 @@ module Aws::Chime
|
|
311
321
|
# disables this behaviour. This value can safely be set per
|
312
322
|
# request on the session.
|
313
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
314
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
328
|
# HTTP debug output will be sent to the `:logger`.
|
316
329
|
#
|
@@ -7289,6 +7302,12 @@ module Aws::Chime
|
|
7289
7302
|
# vocabulary_filter_name: "String",
|
7290
7303
|
# vocabulary_name: "String",
|
7291
7304
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
7305
|
+
# enable_partial_results_stabilization: false,
|
7306
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
7307
|
+
# content_identification_type: "PII", # accepts PII
|
7308
|
+
# content_redaction_type: "PII", # accepts PII
|
7309
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
7310
|
+
# language_model_name: "TranscribeLanguageModelName",
|
7292
7311
|
# },
|
7293
7312
|
# engine_transcribe_medical_settings: {
|
7294
7313
|
# language_code: "en-US", # required, accepts en-US
|
@@ -7296,6 +7315,7 @@ module Aws::Chime
|
|
7296
7315
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
7297
7316
|
# vocabulary_name: "String",
|
7298
7317
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
7318
|
+
# content_identification_type: "PHI", # accepts PHI
|
7299
7319
|
# },
|
7300
7320
|
# },
|
7301
7321
|
# })
|
@@ -8480,7 +8500,7 @@ module Aws::Chime
|
|
8480
8500
|
params: params,
|
8481
8501
|
config: config)
|
8482
8502
|
context[:gem_name] = 'aws-sdk-chime'
|
8483
|
-
context[:gem_version] = '1.
|
8503
|
+
context[:gem_version] = '1.65.0'
|
8484
8504
|
Seahorse::Client::Request.new(handlers, context)
|
8485
8505
|
end
|
8486
8506
|
|
@@ -561,11 +561,17 @@ module Aws::Chime
|
|
561
561
|
ThrottledClientException = Shapes::StructureShape.new(name: 'ThrottledClientException')
|
562
562
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
563
563
|
TollFreePrefix = Shapes::StringShape.new(name: 'TollFreePrefix')
|
564
|
+
TranscribeContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeContentIdentificationType')
|
565
|
+
TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
|
564
566
|
TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
|
567
|
+
TranscribeLanguageModelName = Shapes::StringShape.new(name: 'TranscribeLanguageModelName')
|
568
|
+
TranscribeMedicalContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeMedicalContentIdentificationType')
|
565
569
|
TranscribeMedicalLanguageCode = Shapes::StringShape.new(name: 'TranscribeMedicalLanguageCode')
|
566
570
|
TranscribeMedicalRegion = Shapes::StringShape.new(name: 'TranscribeMedicalRegion')
|
567
571
|
TranscribeMedicalSpecialty = Shapes::StringShape.new(name: 'TranscribeMedicalSpecialty')
|
568
572
|
TranscribeMedicalType = Shapes::StringShape.new(name: 'TranscribeMedicalType')
|
573
|
+
TranscribePartialResultsStability = Shapes::StringShape.new(name: 'TranscribePartialResultsStability')
|
574
|
+
TranscribePiiEntityTypes = Shapes::StringShape.new(name: 'TranscribePiiEntityTypes')
|
569
575
|
TranscribeRegion = Shapes::StringShape.new(name: 'TranscribeRegion')
|
570
576
|
TranscribeVocabularyFilterMethod = Shapes::StringShape.new(name: 'TranscribeVocabularyFilterMethod')
|
571
577
|
TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
|
@@ -1435,6 +1441,7 @@ module Aws::Chime
|
|
1435
1441
|
EngineTranscribeMedicalSettings.add_member(:type, Shapes::ShapeRef.new(shape: TranscribeMedicalType, required: true, location_name: "Type"))
|
1436
1442
|
EngineTranscribeMedicalSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
|
1437
1443
|
EngineTranscribeMedicalSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeMedicalRegion, location_name: "Region"))
|
1444
|
+
EngineTranscribeMedicalSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeMedicalContentIdentificationType, location_name: "ContentIdentificationType"))
|
1438
1445
|
EngineTranscribeMedicalSettings.struct_class = Types::EngineTranscribeMedicalSettings
|
1439
1446
|
|
1440
1447
|
EngineTranscribeSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeLanguageCode, required: true, location_name: "LanguageCode"))
|
@@ -1442,6 +1449,12 @@ module Aws::Chime
|
|
1442
1449
|
EngineTranscribeSettings.add_member(:vocabulary_filter_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyFilterName"))
|
1443
1450
|
EngineTranscribeSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
|
1444
1451
|
EngineTranscribeSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeRegion, location_name: "Region"))
|
1452
|
+
EngineTranscribeSettings.add_member(:enable_partial_results_stabilization, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePartialResultsStabilization"))
|
1453
|
+
EngineTranscribeSettings.add_member(:partial_results_stability, Shapes::ShapeRef.new(shape: TranscribePartialResultsStability, location_name: "PartialResultsStability"))
|
1454
|
+
EngineTranscribeSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeContentIdentificationType, location_name: "ContentIdentificationType"))
|
1455
|
+
EngineTranscribeSettings.add_member(:content_redaction_type, Shapes::ShapeRef.new(shape: TranscribeContentRedactionType, location_name: "ContentRedactionType"))
|
1456
|
+
EngineTranscribeSettings.add_member(:pii_entity_types, Shapes::ShapeRef.new(shape: TranscribePiiEntityTypes, location_name: "PiiEntityTypes"))
|
1457
|
+
EngineTranscribeSettings.add_member(:language_model_name, Shapes::ShapeRef.new(shape: TranscribeLanguageModelName, location_name: "LanguageModelName"))
|
1445
1458
|
EngineTranscribeSettings.struct_class = Types::EngineTranscribeSettings
|
1446
1459
|
|
1447
1460
|
EventsConfiguration.add_member(:bot_id, Shapes::ShapeRef.new(shape: String, location_name: "BotId"))
|
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -4353,6 +4353,7 @@ module Aws::Chime
|
|
4353
4353
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
4354
4354
|
# vocabulary_name: "String",
|
4355
4355
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
4356
|
+
# content_identification_type: "PHI", # accepts PHI
|
4356
4357
|
# }
|
4357
4358
|
#
|
4358
4359
|
# @!attribute [rw] language_code
|
@@ -4377,6 +4378,11 @@ module Aws::Chime
|
|
4377
4378
|
# specify a Region, Amazon Chime uses the meeting's Region.
|
4378
4379
|
# @return [String]
|
4379
4380
|
#
|
4381
|
+
# @!attribute [rw] content_identification_type
|
4382
|
+
# Set this field to `PHI` to identify personal health information in
|
4383
|
+
# the transcription output.
|
4384
|
+
# @return [String]
|
4385
|
+
#
|
4380
4386
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeMedicalSettings AWS API Documentation
|
4381
4387
|
#
|
4382
4388
|
class EngineTranscribeMedicalSettings < Struct.new(
|
@@ -4384,7 +4390,8 @@ module Aws::Chime
|
|
4384
4390
|
:specialty,
|
4385
4391
|
:type,
|
4386
4392
|
:vocabulary_name,
|
4387
|
-
:region
|
4393
|
+
:region,
|
4394
|
+
:content_identification_type)
|
4388
4395
|
SENSITIVE = []
|
4389
4396
|
include Aws::Structure
|
4390
4397
|
end
|
@@ -4400,6 +4407,12 @@ module Aws::Chime
|
|
4400
4407
|
# vocabulary_filter_name: "String",
|
4401
4408
|
# vocabulary_name: "String",
|
4402
4409
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
4410
|
+
# enable_partial_results_stabilization: false,
|
4411
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
4412
|
+
# content_identification_type: "PII", # accepts PII
|
4413
|
+
# content_redaction_type: "PII", # accepts PII
|
4414
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
4415
|
+
# language_model_name: "TranscribeLanguageModelName",
|
4403
4416
|
# }
|
4404
4417
|
#
|
4405
4418
|
# @!attribute [rw] language_code
|
@@ -4423,6 +4436,47 @@ module Aws::Chime
|
|
4423
4436
|
# Region, Amazon Chime uses the meeting's Region.
|
4424
4437
|
# @return [String]
|
4425
4438
|
#
|
4439
|
+
# @!attribute [rw] enable_partial_results_stabilization
|
4440
|
+
# Generates partial transcription results that are less likely to
|
4441
|
+
# change as meeting attendees speak. It does so by only allowing the
|
4442
|
+
# last few words from the partial results to change.
|
4443
|
+
# @return [Boolean]
|
4444
|
+
#
|
4445
|
+
# @!attribute [rw] partial_results_stability
|
4446
|
+
# The stabity level of a partial results transcription. Determines how
|
4447
|
+
# stable you want the transcription results to be. A higher level
|
4448
|
+
# means the transcription results are less likely to change.
|
4449
|
+
# @return [String]
|
4450
|
+
#
|
4451
|
+
# @!attribute [rw] content_identification_type
|
4452
|
+
# Set this field to `PII` to identify personal health information in
|
4453
|
+
# the transcription output.
|
4454
|
+
# @return [String]
|
4455
|
+
#
|
4456
|
+
# @!attribute [rw] content_redaction_type
|
4457
|
+
# Set this field to `PII` to redact personally identifiable
|
4458
|
+
# information in the transcription output. Content redaction is
|
4459
|
+
# performed only upon complete transcription of the audio segments.
|
4460
|
+
# @return [String]
|
4461
|
+
#
|
4462
|
+
# @!attribute [rw] pii_entity_types
|
4463
|
+
# Lists the PII entity types you want to identify or redact. To
|
4464
|
+
# specify entity types, you must enable `ContentIdentificationType` or
|
4465
|
+
# `ContentRedactionType`.
|
4466
|
+
#
|
4467
|
+
# `PIIEntityTypes` must be comma-separated. The available values are:
|
4468
|
+
# `BANK_ACCOUNT_NUMBER`, `BANK_ROUTING, CREDIT_DEBIT_NUMBER`,
|
4469
|
+
# `CREDIT_DEBIT_CVV`, `CREDIT_DEBIT_EXPIRY`, `PIN`, `EMAIL`,
|
4470
|
+
# `ADDRESS`, `NAME`, `PHONE`, `SSN`, and `ALL`.
|
4471
|
+
#
|
4472
|
+
# `PiiEntityTypes` is an optional parameter with a default value of
|
4473
|
+
# `ALL`.
|
4474
|
+
# @return [String]
|
4475
|
+
#
|
4476
|
+
# @!attribute [rw] language_model_name
|
4477
|
+
# The name of the language model used during transcription.
|
4478
|
+
# @return [String]
|
4479
|
+
#
|
4426
4480
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeSettings AWS API Documentation
|
4427
4481
|
#
|
4428
4482
|
class EngineTranscribeSettings < Struct.new(
|
@@ -4430,7 +4484,13 @@ module Aws::Chime
|
|
4430
4484
|
:vocabulary_filter_method,
|
4431
4485
|
:vocabulary_filter_name,
|
4432
4486
|
:vocabulary_name,
|
4433
|
-
:region
|
4487
|
+
:region,
|
4488
|
+
:enable_partial_results_stabilization,
|
4489
|
+
:partial_results_stability,
|
4490
|
+
:content_identification_type,
|
4491
|
+
:content_redaction_type,
|
4492
|
+
:pii_entity_types,
|
4493
|
+
:language_model_name)
|
4434
4494
|
SENSITIVE = []
|
4435
4495
|
include Aws::Structure
|
4436
4496
|
end
|
@@ -9325,6 +9385,12 @@ module Aws::Chime
|
|
9325
9385
|
# vocabulary_filter_name: "String",
|
9326
9386
|
# vocabulary_name: "String",
|
9327
9387
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
9388
|
+
# enable_partial_results_stabilization: false,
|
9389
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
9390
|
+
# content_identification_type: "PII", # accepts PII
|
9391
|
+
# content_redaction_type: "PII", # accepts PII
|
9392
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
9393
|
+
# language_model_name: "TranscribeLanguageModelName",
|
9328
9394
|
# },
|
9329
9395
|
# engine_transcribe_medical_settings: {
|
9330
9396
|
# language_code: "en-US", # required, accepts en-US
|
@@ -9332,6 +9398,7 @@ module Aws::Chime
|
|
9332
9398
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
9333
9399
|
# vocabulary_name: "String",
|
9334
9400
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
9401
|
+
# content_identification_type: "PHI", # accepts PHI
|
9335
9402
|
# },
|
9336
9403
|
# },
|
9337
9404
|
# }
|
@@ -9701,6 +9768,12 @@ module Aws::Chime
|
|
9701
9768
|
# vocabulary_filter_name: "String",
|
9702
9769
|
# vocabulary_name: "String",
|
9703
9770
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
9771
|
+
# enable_partial_results_stabilization: false,
|
9772
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
9773
|
+
# content_identification_type: "PII", # accepts PII
|
9774
|
+
# content_redaction_type: "PII", # accepts PII
|
9775
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
9776
|
+
# language_model_name: "TranscribeLanguageModelName",
|
9704
9777
|
# },
|
9705
9778
|
# engine_transcribe_medical_settings: {
|
9706
9779
|
# language_code: "en-US", # required, accepts en-US
|
@@ -9708,6 +9781,7 @@ module Aws::Chime
|
|
9708
9781
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
9709
9782
|
# vocabulary_name: "String",
|
9710
9783
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
9784
|
+
# content_identification_type: "PHI", # accepts PHI
|
9711
9785
|
# },
|
9712
9786
|
# }
|
9713
9787
|
#
|
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.65.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:
|
11
|
+
date: 2022-02-03 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.126.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.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|