aws-sdk-swf 1.16.0 → 1.21.1
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 +5 -5
- data/lib/aws-sdk-swf.rb +7 -4
- data/lib/aws-sdk-swf/client.rb +84 -14
- data/lib/aws-sdk-swf/errors.rb +32 -10
- data/lib/aws-sdk-swf/resource.rb +1 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 7aa87696b78327774c6af86c50c9d954f82fcc2fa4e09c7df5fe4e1f35bad23e
|
4
|
+
data.tar.gz: 8f351b0fe0f45d90048d84a1135c433e8cefa4940f6f4952b6fea2dab206f501
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65d970adbe79f0db1a84c66fb0dfc248a5057638c4198f4e0c16998f40c833853d629e4cc99f55c1e923b1e4b940653a292622608330cf392062af9b1d03d9b9
|
7
|
+
data.tar.gz: 3477035ab2dd1715e51c3acb7a69c9e17eb699572ceaec1254fa6ba890f1a7b1e255f8110646381a88ed123ed957c650ba8a2eb2939772472e0ef75a51ab3915
|
data/lib/aws-sdk-swf.rb
CHANGED
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-swf/customizations'
|
|
24
24
|
# methods each accept a hash of request parameters and return a response
|
25
25
|
# structure.
|
26
26
|
#
|
27
|
+
# swf = Aws::SWF::Client.new
|
28
|
+
# resp = swf.count_closed_workflow_executions(params)
|
29
|
+
#
|
27
30
|
# See {Client} for more information.
|
28
31
|
#
|
29
32
|
# # Errors
|
30
33
|
#
|
31
|
-
# Errors returned from Amazon Simple Workflow Service
|
32
|
-
# extend {Errors::ServiceError}.
|
34
|
+
# Errors returned from Amazon Simple Workflow Service are defined in the
|
35
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
36
|
#
|
34
37
|
# begin
|
35
38
|
# # do stuff
|
36
39
|
# rescue Aws::SWF::Errors::ServiceError
|
37
|
-
# # rescues all
|
40
|
+
# # rescues all Amazon Simple Workflow Service API errors
|
38
41
|
# end
|
39
42
|
#
|
40
43
|
# See {Errors} for more information.
|
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-swf/customizations'
|
|
42
45
|
# @service
|
43
46
|
module Aws::SWF
|
44
47
|
|
45
|
-
GEM_VERSION = '1.
|
48
|
+
GEM_VERSION = '1.21.1'
|
46
49
|
|
47
50
|
end
|
data/lib/aws-sdk-swf/client.rb
CHANGED
@@ -24,6 +24,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
26
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
27
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
28
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
29
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
30
|
require 'aws-sdk-swf/plugins/read_timeouts.rb'
|
@@ -31,6 +32,18 @@ require 'aws-sdk-swf/plugins/read_timeouts.rb'
|
|
31
32
|
Aws::Plugins::GlobalConfiguration.add_identifier(:swf)
|
32
33
|
|
33
34
|
module Aws::SWF
|
35
|
+
# An API client for SWF. To construct a client, you need to configure a `:region` and `:credentials`.
|
36
|
+
#
|
37
|
+
# client = Aws::SWF::Client.new(
|
38
|
+
# region: region_name,
|
39
|
+
# credentials: credentials,
|
40
|
+
# # ...
|
41
|
+
# )
|
42
|
+
#
|
43
|
+
# For details on configuring region and credentials see
|
44
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
45
|
+
#
|
46
|
+
# See {#initialize} for a full list of supported configuration options.
|
34
47
|
class Client < Seahorse::Client::Base
|
35
48
|
|
36
49
|
include Aws::ClientStubs
|
@@ -58,6 +71,7 @@ module Aws::SWF
|
|
58
71
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
59
72
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
60
73
|
add_plugin(Aws::Plugins::TransferEncoding)
|
74
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
61
75
|
add_plugin(Aws::Plugins::SignatureV4)
|
62
76
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
63
77
|
add_plugin(Aws::SWF::Plugins::ReadTimeouts)
|
@@ -95,7 +109,7 @@ module Aws::SWF
|
|
95
109
|
# @option options [required, String] :region
|
96
110
|
# The AWS region to connect to. The configured `:region` is
|
97
111
|
# used to determine the service `:endpoint`. When not passed,
|
98
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
99
113
|
#
|
100
114
|
# * `Aws.config[:region]`
|
101
115
|
# * `ENV['AWS_REGION']`
|
@@ -110,6 +124,12 @@ module Aws::SWF
|
|
110
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
111
125
|
# the background every 60 secs (default). Defaults to `false`.
|
112
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
113
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
114
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
115
135
|
# this client.
|
@@ -134,6 +154,10 @@ module Aws::SWF
|
|
134
154
|
# When `true`, an attempt is made to coerce request parameters into
|
135
155
|
# the required types.
|
136
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
137
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
138
162
|
# Set to true to disable SDK automatically adding host prefix
|
139
163
|
# to default service endpoint when available.
|
@@ -141,7 +165,7 @@ module Aws::SWF
|
|
141
165
|
# @option options [String] :endpoint
|
142
166
|
# The client endpoint is normally constructed from the `:region`
|
143
167
|
# option. You should only configure an `:endpoint` when connecting
|
144
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
145
169
|
#
|
146
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
147
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -156,7 +180,7 @@ module Aws::SWF
|
|
156
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
157
181
|
#
|
158
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
159
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
160
184
|
#
|
161
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
162
186
|
# The log formatter.
|
@@ -168,15 +192,29 @@ module Aws::SWF
|
|
168
192
|
# The Logger instance to send log messages to. If this option
|
169
193
|
# is not set, logging will be disabled.
|
170
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
171
201
|
# @option options [String] :profile ("default")
|
172
202
|
# Used when loading credentials from the shared credentials file
|
173
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
174
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
175
209
|
# @option options [Float] :retry_base_delay (0.3)
|
176
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
177
212
|
#
|
178
213
|
# @option options [Symbol] :retry_jitter (:none)
|
179
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
180
218
|
#
|
181
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
182
220
|
#
|
@@ -184,11 +222,30 @@ module Aws::SWF
|
|
184
222
|
# The maximum number of times to retry failed requests. Only
|
185
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
186
224
|
# are retried. Generally, these are throttling errors, data
|
187
|
-
# checksum errors, networking errors, timeout errors
|
188
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
189
228
|
#
|
190
229
|
# @option options [Integer] :retry_max_delay (0)
|
191
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
192
249
|
#
|
193
250
|
# @option options [String] :secret_access_key
|
194
251
|
#
|
@@ -221,16 +278,15 @@ module Aws::SWF
|
|
221
278
|
# requests through. Formatted like 'http://proxy.com:123'.
|
222
279
|
#
|
223
280
|
# @option options [Float] :http_open_timeout (15) The number of
|
224
|
-
# seconds to wait when opening a HTTP session before
|
281
|
+
# seconds to wait when opening a HTTP session before raising a
|
225
282
|
# `Timeout::Error`.
|
226
283
|
#
|
227
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
228
285
|
# number of seconds to wait for response data. This value can
|
229
|
-
# safely be set
|
230
|
-
# per-request on the session yeidled by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
231
287
|
#
|
232
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
233
|
-
# seconds a connection is allowed to sit
|
289
|
+
# seconds a connection is allowed to sit idle before it is
|
234
290
|
# considered stale. Stale connections are closed and removed
|
235
291
|
# from the pool before making a request.
|
236
292
|
#
|
@@ -239,7 +295,7 @@ module Aws::SWF
|
|
239
295
|
# request body. This option has no effect unless the request has
|
240
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
241
297
|
# disables this behaviour. This value can safely be set per
|
242
|
-
# request on the session
|
298
|
+
# request on the session.
|
243
299
|
#
|
244
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
245
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1210,6 +1266,8 @@ module Aws::SWF
|
|
1210
1266
|
# * {Types::History#events #events} => Array<Types::HistoryEvent>
|
1211
1267
|
# * {Types::History#next_page_token #next_page_token} => String
|
1212
1268
|
#
|
1269
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1270
|
+
#
|
1213
1271
|
# @example Request syntax with placeholder values
|
1214
1272
|
#
|
1215
1273
|
# resp = client.get_workflow_execution_history({
|
@@ -1547,6 +1605,8 @@ module Aws::SWF
|
|
1547
1605
|
# * {Types::ActivityTypeInfos#type_infos #type_infos} => Array<Types::ActivityTypeInfo>
|
1548
1606
|
# * {Types::ActivityTypeInfos#next_page_token #next_page_token} => String
|
1549
1607
|
#
|
1608
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1609
|
+
#
|
1550
1610
|
# @example Request syntax with placeholder values
|
1551
1611
|
#
|
1552
1612
|
# resp = client.list_activity_types({
|
@@ -1711,6 +1771,8 @@ module Aws::SWF
|
|
1711
1771
|
# * {Types::WorkflowExecutionInfos#execution_infos #execution_infos} => Array<Types::WorkflowExecutionInfo>
|
1712
1772
|
# * {Types::WorkflowExecutionInfos#next_page_token #next_page_token} => String
|
1713
1773
|
#
|
1774
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1775
|
+
#
|
1714
1776
|
# @example Request syntax with placeholder values
|
1715
1777
|
#
|
1716
1778
|
# resp = client.list_closed_workflow_executions({
|
@@ -1830,6 +1892,8 @@ module Aws::SWF
|
|
1830
1892
|
# * {Types::DomainInfos#domain_infos #domain_infos} => Array<Types::DomainInfo>
|
1831
1893
|
# * {Types::DomainInfos#next_page_token #next_page_token} => String
|
1832
1894
|
#
|
1895
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1896
|
+
#
|
1833
1897
|
# @example Request syntax with placeholder values
|
1834
1898
|
#
|
1835
1899
|
# resp = client.list_domains({
|
@@ -1959,6 +2023,8 @@ module Aws::SWF
|
|
1959
2023
|
# * {Types::WorkflowExecutionInfos#execution_infos #execution_infos} => Array<Types::WorkflowExecutionInfo>
|
1960
2024
|
# * {Types::WorkflowExecutionInfos#next_page_token #next_page_token} => String
|
1961
2025
|
#
|
2026
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2027
|
+
#
|
1962
2028
|
# @example Request syntax with placeholder values
|
1963
2029
|
#
|
1964
2030
|
# resp = client.list_open_workflow_executions({
|
@@ -2099,6 +2165,8 @@ module Aws::SWF
|
|
2099
2165
|
# * {Types::WorkflowTypeInfos#type_infos #type_infos} => Array<Types::WorkflowTypeInfo>
|
2100
2166
|
# * {Types::WorkflowTypeInfos#next_page_token #next_page_token} => String
|
2101
2167
|
#
|
2168
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2169
|
+
#
|
2102
2170
|
# @example Request syntax with placeholder values
|
2103
2171
|
#
|
2104
2172
|
# resp = client.list_workflow_types({
|
@@ -2332,6 +2400,8 @@ module Aws::SWF
|
|
2332
2400
|
# * {Types::DecisionTask#next_page_token #next_page_token} => String
|
2333
2401
|
# * {Types::DecisionTask#previous_started_event_id #previous_started_event_id} => Integer
|
2334
2402
|
#
|
2403
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2404
|
+
#
|
2335
2405
|
# @example Request syntax with placeholder values
|
2336
2406
|
#
|
2337
2407
|
# resp = client.poll_for_decision_task({
|
@@ -4201,7 +4271,7 @@ module Aws::SWF
|
|
4201
4271
|
params: params,
|
4202
4272
|
config: config)
|
4203
4273
|
context[:gem_name] = 'aws-sdk-swf'
|
4204
|
-
context[:gem_version] = '1.
|
4274
|
+
context[:gem_version] = '1.21.1'
|
4205
4275
|
Seahorse::Client::Request.new(handlers, context)
|
4206
4276
|
end
|
4207
4277
|
|
data/lib/aws-sdk-swf/errors.rb
CHANGED
@@ -6,6 +6,38 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::SWF
|
9
|
+
|
10
|
+
# When SWF returns an error response, the Ruby SDK constructs and raises an error.
|
11
|
+
# These errors all extend Aws::SWF::Errors::ServiceError < {Aws::Errors::ServiceError}
|
12
|
+
#
|
13
|
+
# You can rescue all SWF errors using ServiceError:
|
14
|
+
#
|
15
|
+
# begin
|
16
|
+
# # do stuff
|
17
|
+
# rescue Aws::SWF::Errors::ServiceError
|
18
|
+
# # rescues all SWF API errors
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# ## Request Context
|
23
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
24
|
+
# information about the request that generated the error.
|
25
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
26
|
+
#
|
27
|
+
# ## Error Classes
|
28
|
+
# * {DefaultUndefinedFault}
|
29
|
+
# * {DomainAlreadyExistsFault}
|
30
|
+
# * {DomainDeprecatedFault}
|
31
|
+
# * {LimitExceededFault}
|
32
|
+
# * {OperationNotPermittedFault}
|
33
|
+
# * {TooManyTagsFault}
|
34
|
+
# * {TypeAlreadyExistsFault}
|
35
|
+
# * {TypeDeprecatedFault}
|
36
|
+
# * {UnknownResourceFault}
|
37
|
+
# * {WorkflowExecutionAlreadyStartedFault}
|
38
|
+
#
|
39
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
40
|
+
# if they are not defined above.
|
9
41
|
module Errors
|
10
42
|
|
11
43
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +55,6 @@ module Aws::SWF
|
|
23
55
|
def message
|
24
56
|
@message || @data[:message]
|
25
57
|
end
|
26
|
-
|
27
58
|
end
|
28
59
|
|
29
60
|
class DomainAlreadyExistsFault < ServiceError
|
@@ -39,7 +70,6 @@ module Aws::SWF
|
|
39
70
|
def message
|
40
71
|
@message || @data[:message]
|
41
72
|
end
|
42
|
-
|
43
73
|
end
|
44
74
|
|
45
75
|
class DomainDeprecatedFault < ServiceError
|
@@ -55,7 +85,6 @@ module Aws::SWF
|
|
55
85
|
def message
|
56
86
|
@message || @data[:message]
|
57
87
|
end
|
58
|
-
|
59
88
|
end
|
60
89
|
|
61
90
|
class LimitExceededFault < ServiceError
|
@@ -71,7 +100,6 @@ module Aws::SWF
|
|
71
100
|
def message
|
72
101
|
@message || @data[:message]
|
73
102
|
end
|
74
|
-
|
75
103
|
end
|
76
104
|
|
77
105
|
class OperationNotPermittedFault < ServiceError
|
@@ -87,7 +115,6 @@ module Aws::SWF
|
|
87
115
|
def message
|
88
116
|
@message || @data[:message]
|
89
117
|
end
|
90
|
-
|
91
118
|
end
|
92
119
|
|
93
120
|
class TooManyTagsFault < ServiceError
|
@@ -103,7 +130,6 @@ module Aws::SWF
|
|
103
130
|
def message
|
104
131
|
@message || @data[:message]
|
105
132
|
end
|
106
|
-
|
107
133
|
end
|
108
134
|
|
109
135
|
class TypeAlreadyExistsFault < ServiceError
|
@@ -119,7 +145,6 @@ module Aws::SWF
|
|
119
145
|
def message
|
120
146
|
@message || @data[:message]
|
121
147
|
end
|
122
|
-
|
123
148
|
end
|
124
149
|
|
125
150
|
class TypeDeprecatedFault < ServiceError
|
@@ -135,7 +160,6 @@ module Aws::SWF
|
|
135
160
|
def message
|
136
161
|
@message || @data[:message]
|
137
162
|
end
|
138
|
-
|
139
163
|
end
|
140
164
|
|
141
165
|
class UnknownResourceFault < ServiceError
|
@@ -151,7 +175,6 @@ module Aws::SWF
|
|
151
175
|
def message
|
152
176
|
@message || @data[:message]
|
153
177
|
end
|
154
|
-
|
155
178
|
end
|
156
179
|
|
157
180
|
class WorkflowExecutionAlreadyStartedFault < ServiceError
|
@@ -167,7 +190,6 @@ module Aws::SWF
|
|
167
190
|
def message
|
168
191
|
@message || @data[:message]
|
169
192
|
end
|
170
|
-
|
171
193
|
end
|
172
194
|
|
173
195
|
end
|
data/lib/aws-sdk-swf/resource.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-swf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.21.1
|
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: 2020-06-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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -82,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
82
|
version: '0'
|
83
83
|
requirements: []
|
84
84
|
rubyforge_project:
|
85
|
-
rubygems_version: 2.
|
85
|
+
rubygems_version: 2.7.6.2
|
86
86
|
signing_key:
|
87
87
|
specification_version: 4
|
88
88
|
summary: AWS SDK for Ruby - Amazon SWF
|