aws-sdk-mediatailor 1.64.0 → 1.66.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb4366f1977bf4bb37b4017ba94865c9208a33c438c59218cb2ec6a9038c30a7
4
- data.tar.gz: c088504f0829306dca562fd4bcede725be8f345a8ec0db8d1df26d068dbf40a6
3
+ metadata.gz: b7961c05d57a99569df4aec937ab0c228760fccad2d02e66e7fd2f504a7a6ca0
4
+ data.tar.gz: a129390e1ac205752a6c35251e34d539ace9827036a529684773182bc13216d2
5
5
  SHA512:
6
- metadata.gz: 687ea463472627fa783a11d3949d7674c7e0c58cdd3b4062d93fd5bab3ea7898e16fbf8df19f7102392d9887f4d5cc8e20a3dec41afafb97ab08b3810332d036
7
- data.tar.gz: 9c0bfabcee4cbe6a6395087a37e838009dbebe1d92a7aebee6d9f3e2fc68842a7a5743b68b946e9232b02b4dc415a6ef41669d1d4e9d2af3f6bd8e26a38e8e67
6
+ metadata.gz: 6fd9967a53f797f4af287b16c4d3ba50898ceae87fafd74a51a8e79e040b77d236e0734fca6c90d168eb41cedd918d373871cdd01b36b6bb60617099480dfea3
7
+ data.tar.gz: 778b96ad2c6e003d4d7da411d088a3f36aae6c01c2f07b027ef35bbb6335acaa6b78296600cf269cec386e16f65f0af318f641bf57d3747c437b8becb56ff46e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2023-07-07)
5
+ ------------------
6
+
7
+ * Feature - The AWS Elemental MediaTailor SDK for Channel Assembly has added support for EXT-X-CUE-OUT and EXT-X-CUE-IN tags to specify ad breaks in HLS outputs, including support for EXT-OATCLS, EXT-X-ASSET, and EXT-X-CUE-OUT-CONT accessory tags.
8
+
9
+ 1.65.0 (2023-07-06)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.64.0 (2023-06-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.0
1
+ 1.66.0
@@ -28,6 +28,7 @@ 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
30
  require 'aws-sdk-core/plugins/checksum_algorithm.rb'
31
+ require 'aws-sdk-core/plugins/request_compression.rb'
31
32
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
33
  require 'aws-sdk-core/plugins/recursion_detection.rb'
33
34
  require 'aws-sdk-core/plugins/sign.rb'
@@ -77,6 +78,7 @@ module Aws::MediaTailor
77
78
  add_plugin(Aws::Plugins::TransferEncoding)
78
79
  add_plugin(Aws::Plugins::HttpChecksum)
79
80
  add_plugin(Aws::Plugins::ChecksumAlgorithm)
81
+ add_plugin(Aws::Plugins::RequestCompression)
80
82
  add_plugin(Aws::Plugins::DefaultsMode)
81
83
  add_plugin(Aws::Plugins::RecursionDetection)
82
84
  add_plugin(Aws::Plugins::Sign)
@@ -190,6 +192,10 @@ module Aws::MediaTailor
190
192
  # Set to true to disable SDK automatically adding host prefix
191
193
  # to default service endpoint when available.
192
194
  #
195
+ # @option options [Boolean] :disable_request_compression (false)
196
+ # When set to 'true' the request body will not be compressed
197
+ # for supported operations.
198
+ #
193
199
  # @option options [String] :endpoint
194
200
  # The client endpoint is normally constructed from the `:region`
195
201
  # option. You should only configure an `:endpoint` when connecting
@@ -230,6 +236,11 @@ module Aws::MediaTailor
230
236
  # Used when loading credentials from the shared credentials file
231
237
  # at HOME/.aws/credentials. When not specified, 'default' is used.
232
238
  #
239
+ # @option options [Integer] :request_min_compression_size_bytes (10240)
240
+ # The minimum size in bytes that triggers compression for request
241
+ # bodies. The value must be non-negative integer value between 0
242
+ # and 10485780 bytes inclusive.
243
+ #
233
244
  # @option options [Proc] :retry_backoff
234
245
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
235
246
  # This option is only used in the `legacy` retry mode.
@@ -526,6 +537,7 @@ module Aws::MediaTailor
526
537
  # suggested_presentation_delay_seconds: 1,
527
538
  # },
528
539
  # hls_playlist_settings: {
540
+ # ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
529
541
  # manifest_window_seconds: 1,
530
542
  # },
531
543
  # manifest_name: "__string", # required
@@ -553,6 +565,8 @@ module Aws::MediaTailor
553
565
  # resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
554
566
  # resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
555
567
  # resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
568
+ # resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
569
+ # resp.outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
556
570
  # resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
557
571
  # resp.outputs[0].manifest_name #=> String
558
572
  # resp.outputs[0].playback_url #=> String
@@ -784,6 +798,12 @@ module Aws::MediaTailor
784
798
  # resp = client.create_program({
785
799
  # ad_breaks: [
786
800
  # {
801
+ # ad_break_metadata: [
802
+ # {
803
+ # key: "String", # required
804
+ # value: "String", # required
805
+ # },
806
+ # ],
787
807
  # message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
788
808
  # offset_millis: 1,
789
809
  # slate: {
@@ -834,6 +854,9 @@ module Aws::MediaTailor
834
854
  # @example Response structure
835
855
  #
836
856
  # resp.ad_breaks #=> Array
857
+ # resp.ad_breaks[0].ad_break_metadata #=> Array
858
+ # resp.ad_breaks[0].ad_break_metadata[0].key #=> String
859
+ # resp.ad_breaks[0].ad_break_metadata[0].value #=> String
837
860
  # resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
838
861
  # resp.ad_breaks[0].offset_millis #=> Integer
839
862
  # resp.ad_breaks[0].slate.source_location_name #=> String
@@ -1314,6 +1337,8 @@ module Aws::MediaTailor
1314
1337
  # resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
1315
1338
  # resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
1316
1339
  # resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
1340
+ # resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
1341
+ # resp.outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
1317
1342
  # resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
1318
1343
  # resp.outputs[0].manifest_name #=> String
1319
1344
  # resp.outputs[0].playback_url #=> String
@@ -1417,6 +1442,9 @@ module Aws::MediaTailor
1417
1442
  # @example Response structure
1418
1443
  #
1419
1444
  # resp.ad_breaks #=> Array
1445
+ # resp.ad_breaks[0].ad_break_metadata #=> Array
1446
+ # resp.ad_breaks[0].ad_break_metadata[0].key #=> String
1447
+ # resp.ad_breaks[0].ad_break_metadata[0].value #=> String
1420
1448
  # resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
1421
1449
  # resp.ad_breaks[0].offset_millis #=> Integer
1422
1450
  # resp.ad_breaks[0].slate.source_location_name #=> String
@@ -1897,6 +1925,8 @@ module Aws::MediaTailor
1897
1925
  # resp.items[0].outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
1898
1926
  # resp.items[0].outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
1899
1927
  # resp.items[0].outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
1928
+ # resp.items[0].outputs[0].hls_playlist_settings.ad_markup_type #=> Array
1929
+ # resp.items[0].outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
1900
1930
  # resp.items[0].outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
1901
1931
  # resp.items[0].outputs[0].manifest_name #=> String
1902
1932
  # resp.items[0].outputs[0].playback_url #=> String
@@ -2678,6 +2708,7 @@ module Aws::MediaTailor
2678
2708
  # suggested_presentation_delay_seconds: 1,
2679
2709
  # },
2680
2710
  # hls_playlist_settings: {
2711
+ # ad_markup_type: ["DATERANGE"], # accepts DATERANGE, SCTE35_ENHANCED
2681
2712
  # manifest_window_seconds: 1,
2682
2713
  # },
2683
2714
  # manifest_name: "__string", # required
@@ -2700,6 +2731,8 @@ module Aws::MediaTailor
2700
2731
  # resp.outputs[0].dash_playlist_settings.min_buffer_time_seconds #=> Integer
2701
2732
  # resp.outputs[0].dash_playlist_settings.min_update_period_seconds #=> Integer
2702
2733
  # resp.outputs[0].dash_playlist_settings.suggested_presentation_delay_seconds #=> Integer
2734
+ # resp.outputs[0].hls_playlist_settings.ad_markup_type #=> Array
2735
+ # resp.outputs[0].hls_playlist_settings.ad_markup_type[0] #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
2703
2736
  # resp.outputs[0].hls_playlist_settings.manifest_window_seconds #=> Integer
2704
2737
  # resp.outputs[0].manifest_name #=> String
2705
2738
  # resp.outputs[0].playback_url #=> String
@@ -2810,6 +2843,12 @@ module Aws::MediaTailor
2810
2843
  # resp = client.update_program({
2811
2844
  # ad_breaks: [
2812
2845
  # {
2846
+ # ad_break_metadata: [
2847
+ # {
2848
+ # key: "String", # required
2849
+ # value: "String", # required
2850
+ # },
2851
+ # ],
2813
2852
  # message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT, TIME_SIGNAL
2814
2853
  # offset_millis: 1,
2815
2854
  # slate: {
@@ -2854,6 +2893,9 @@ module Aws::MediaTailor
2854
2893
  # @example Response structure
2855
2894
  #
2856
2895
  # resp.ad_breaks #=> Array
2896
+ # resp.ad_breaks[0].ad_break_metadata #=> Array
2897
+ # resp.ad_breaks[0].ad_break_metadata[0].key #=> String
2898
+ # resp.ad_breaks[0].ad_break_metadata[0].value #=> String
2857
2899
  # resp.ad_breaks[0].message_type #=> String, one of "SPLICE_INSERT", "TIME_SIGNAL"
2858
2900
  # resp.ad_breaks[0].offset_millis #=> Integer
2859
2901
  # resp.ad_breaks[0].slate.source_location_name #=> String
@@ -3053,7 +3095,7 @@ module Aws::MediaTailor
3053
3095
  params: params,
3054
3096
  config: config)
3055
3097
  context[:gem_name] = 'aws-sdk-mediatailor'
3056
- context[:gem_version] = '1.64.0'
3098
+ context[:gem_version] = '1.66.0'
3057
3099
  Seahorse::Client::Request.new(handlers, context)
3058
3100
  end
3059
3101
 
@@ -16,7 +16,9 @@ module Aws::MediaTailor
16
16
  AccessConfiguration = Shapes::StructureShape.new(name: 'AccessConfiguration')
17
17
  AccessType = Shapes::StringShape.new(name: 'AccessType')
18
18
  AdBreak = Shapes::StructureShape.new(name: 'AdBreak')
19
+ AdBreakMetadataList = Shapes::ListShape.new(name: 'AdBreakMetadataList')
19
20
  AdMarkerPassthrough = Shapes::StructureShape.new(name: 'AdMarkerPassthrough')
21
+ AdMarkupType = Shapes::StringShape.new(name: 'AdMarkupType')
20
22
  Alert = Shapes::StructureShape.new(name: 'Alert')
21
23
  AvailMatchingCriteria = Shapes::StructureShape.new(name: 'AvailMatchingCriteria')
22
24
  AvailSuppression = Shapes::StructureShape.new(name: 'AvailSuppression')
@@ -89,6 +91,7 @@ module Aws::MediaTailor
89
91
  HttpPackageConfiguration = Shapes::StructureShape.new(name: 'HttpPackageConfiguration')
90
92
  HttpPackageConfigurations = Shapes::ListShape.new(name: 'HttpPackageConfigurations')
91
93
  Integer = Shapes::IntegerShape.new(name: 'Integer')
94
+ KeyValuePair = Shapes::StructureShape.new(name: 'KeyValuePair')
92
95
  ListAlertsRequest = Shapes::StructureShape.new(name: 'ListAlertsRequest')
93
96
  ListAlertsResponse = Shapes::StructureShape.new(name: 'ListAlertsResponse')
94
97
  ListChannelsRequest = Shapes::StructureShape.new(name: 'ListChannelsRequest')
@@ -188,11 +191,13 @@ module Aws::MediaTailor
188
191
  __mapOf__string = Shapes::MapShape.new(name: '__mapOf__string')
189
192
  __string = Shapes::StringShape.new(name: '__string')
190
193
  __timestampUnix = Shapes::TimestampShape.new(name: '__timestampUnix', timestampFormat: "unixTimestamp")
194
+ adMarkupTypes = Shapes::ListShape.new(name: 'adMarkupTypes')
191
195
 
192
196
  AccessConfiguration.add_member(:access_type, Shapes::ShapeRef.new(shape: AccessType, location_name: "AccessType"))
193
197
  AccessConfiguration.add_member(:secrets_manager_access_token_configuration, Shapes::ShapeRef.new(shape: SecretsManagerAccessTokenConfiguration, location_name: "SecretsManagerAccessTokenConfiguration"))
194
198
  AccessConfiguration.struct_class = Types::AccessConfiguration
195
199
 
200
+ AdBreak.add_member(:ad_break_metadata, Shapes::ShapeRef.new(shape: AdBreakMetadataList, location_name: "AdBreakMetadata"))
196
201
  AdBreak.add_member(:message_type, Shapes::ShapeRef.new(shape: MessageType, location_name: "MessageType"))
197
202
  AdBreak.add_member(:offset_millis, Shapes::ShapeRef.new(shape: __long, location_name: "OffsetMillis"))
198
203
  AdBreak.add_member(:slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "Slate"))
@@ -200,6 +205,8 @@ module Aws::MediaTailor
200
205
  AdBreak.add_member(:time_signal_message, Shapes::ShapeRef.new(shape: TimeSignalMessage, location_name: "TimeSignalMessage"))
201
206
  AdBreak.struct_class = Types::AdBreak
202
207
 
208
+ AdBreakMetadataList.member = Shapes::ShapeRef.new(shape: KeyValuePair)
209
+
203
210
  AdMarkerPassthrough.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, location_name: "Enabled"))
204
211
  AdMarkerPassthrough.struct_class = Types::AdMarkerPassthrough
205
212
 
@@ -564,6 +571,7 @@ module Aws::MediaTailor
564
571
  HlsConfiguration.add_member(:manifest_endpoint_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "ManifestEndpointPrefix"))
565
572
  HlsConfiguration.struct_class = Types::HlsConfiguration
566
573
 
574
+ HlsPlaylistSettings.add_member(:ad_markup_type, Shapes::ShapeRef.new(shape: adMarkupTypes, location_name: "AdMarkupType"))
567
575
  HlsPlaylistSettings.add_member(:manifest_window_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "ManifestWindowSeconds"))
568
576
  HlsPlaylistSettings.struct_class = Types::HlsPlaylistSettings
569
577
 
@@ -577,6 +585,10 @@ module Aws::MediaTailor
577
585
 
578
586
  HttpPackageConfigurations.member = Shapes::ShapeRef.new(shape: HttpPackageConfiguration)
579
587
 
588
+ KeyValuePair.add_member(:key, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Key"))
589
+ KeyValuePair.add_member(:value, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Value"))
590
+ KeyValuePair.struct_class = Types::KeyValuePair
591
+
580
592
  ListAlertsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
581
593
  ListAlertsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
582
594
  ListAlertsRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "querystring", location_name: "resourceArn"))
@@ -987,6 +999,8 @@ module Aws::MediaTailor
987
999
  __mapOf__string.key = Shapes::ShapeRef.new(shape: __string)
988
1000
  __mapOf__string.value = Shapes::ShapeRef.new(shape: __string)
989
1001
 
1002
+ adMarkupTypes.member = Shapes::ShapeRef.new(shape: AdMarkupType)
1003
+
990
1004
 
991
1005
  # @api private
992
1006
  API = Seahorse::Model::Api.new.tap do |api|
@@ -56,6 +56,11 @@ module Aws::MediaTailor
56
56
 
57
57
  # Ad break configuration parameters.
58
58
  #
59
+ # @!attribute [rw] ad_break_metadata
60
+ # Defines a list of key/value pairs that MediaTailor generates within
61
+ # the `EXT-X-ASSET`tag for `SCTE35_ENHANCED` output.
62
+ # @return [Array<Types::KeyValuePair>]
63
+ #
59
64
  # @!attribute [rw] message_type
60
65
  # The SCTE-35 ad insertion type. Accepted value: `SPLICE_INSERT`,
61
66
  # `TIME_SIGNAL`.
@@ -91,6 +96,7 @@ module Aws::MediaTailor
91
96
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/AdBreak AWS API Documentation
92
97
  #
93
98
  class AdBreak < Struct.new(
99
+ :ad_break_metadata,
94
100
  :message_type,
95
101
  :offset_millis,
96
102
  :slate,
@@ -2088,6 +2094,13 @@ module Aws::MediaTailor
2088
2094
 
2089
2095
  # HLS playlist configuration parameters.
2090
2096
  #
2097
+ # @!attribute [rw] ad_markup_type
2098
+ # Determines the type of SCTE 35 tags to use in ad markup. Specify
2099
+ # `DATERANGE` to use `DATERANGE` tags (for live or VOD content).
2100
+ # Specify `SCTE35_ENHANCED` to use `EXT-X-CUE-OUT` and `EXT-X-CUE-IN`
2101
+ # tags (for VOD content only).
2102
+ # @return [Array<String>]
2103
+ #
2091
2104
  # @!attribute [rw] manifest_window_seconds
2092
2105
  # The total duration (in seconds) of each manifest. Minimum value:
2093
2106
  # `30` seconds. Maximum value: `3600` seconds.
@@ -2096,6 +2109,7 @@ module Aws::MediaTailor
2096
2109
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/HlsPlaylistSettings AWS API Documentation
2097
2110
  #
2098
2111
  class HlsPlaylistSettings < Struct.new(
2112
+ :ad_markup_type,
2099
2113
  :manifest_window_seconds)
2100
2114
  SENSITIVE = []
2101
2115
  include Aws::Structure
@@ -2145,6 +2159,32 @@ module Aws::MediaTailor
2145
2159
  include Aws::Structure
2146
2160
  end
2147
2161
 
2162
+ # For `SCTE35_ENHANCED` output, defines a key and corresponding value.
2163
+ # MediaTailor generates these pairs within the `EXT-X-ASSET`tag.
2164
+ #
2165
+ # @!attribute [rw] key
2166
+ # For `SCTE35_ENHANCED` output, defines a key. MediaTailor takes this
2167
+ # key, and its associated value, and generates the key/value pair
2168
+ # within the `EXT-X-ASSET`tag. If you specify a key, you must also
2169
+ # specify a corresponding value.
2170
+ # @return [String]
2171
+ #
2172
+ # @!attribute [rw] value
2173
+ # For `SCTE35_ENHANCED` output, defines a vaue. MediaTailor; takes
2174
+ # this value, and its associated key, and generates the key/value pair
2175
+ # within the `EXT-X-ASSET`tag. If you specify a value, you must also
2176
+ # specify a corresponding key.
2177
+ # @return [String]
2178
+ #
2179
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/KeyValuePair AWS API Documentation
2180
+ #
2181
+ class KeyValuePair < Struct.new(
2182
+ :key,
2183
+ :value)
2184
+ SENSITIVE = []
2185
+ include Aws::Structure
2186
+ end
2187
+
2148
2188
  # @!attribute [rw] max_results
2149
2189
  # The maximum number of alerts that you want MediaTailor to return in
2150
2190
  # response to the current request. If there are more than `MaxResults`
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
52
52
  # @!group service
53
53
  module Aws::MediaTailor
54
54
 
55
- GEM_VERSION = '1.64.0'
55
+ GEM_VERSION = '1.66.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediatailor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.64.0
4
+ version: 1.66.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: 2023-06-28 00:00:00.000000000 Z
11
+ date: 2023-07-07 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.176.0
22
+ version: 3.177.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.176.0
32
+ version: 3.177.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement