aws-sdk-states 1.25.0 → 1.30.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-states.rb +9 -4
- data/lib/aws-sdk-states/client.rb +80 -14
- data/lib/aws-sdk-states/client_api.rb +2 -0
- data/lib/aws-sdk-states/errors.rb +47 -23
- data/lib/aws-sdk-states/resource.rb +3 -0
- data/lib/aws-sdk-states/types.rb +99 -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: 1ac8472fb63fc05e660772ca19271465bdc3d1d3ebf16d6b09f5739e04e9964d
|
4
|
+
data.tar.gz: c9c417edd7576625d4c025c83ed12fa5890a92406a37d1f237d09377136d7334
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32c4fda4a6b9b1cc87baa7da63c7997721627f6625cba0cd7e0156ecd162a594ed942b2eb69e1d2910610192589a30c357cd2ccd22f027d14246d0d19d0fbb48
|
7
|
+
data.tar.gz: 4ad57b3528be7005f8a5699191cd78ef61555d827e84d888f00d6cda40809b76d4704d7e344cda51d1c3140df9ddda30319cac4069ceb3be780f1a2a6083d8e2
|
data/lib/aws-sdk-states.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-states/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# states = Aws::States::Client.new
|
30
|
+
# resp = states.create_activity(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Step Functions
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Step Functions are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::States::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Step Functions API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-states/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::States
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.30.0'
|
46
51
|
|
47
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:states)
|
31
34
|
|
32
35
|
module Aws::States
|
36
|
+
# An API client for States. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::States::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::States
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::States
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::States
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
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
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::States
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
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
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::States
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::States
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# 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.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::States
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
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
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
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
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# 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.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# 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.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::States
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# 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.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# 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
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -219,16 +278,15 @@ module Aws::States
|
|
219
278
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
279
|
#
|
221
280
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
281
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
282
|
# `Timeout::Error`.
|
224
283
|
#
|
225
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
285
|
# number of seconds to wait for response data. This value can
|
227
|
-
# safely be set
|
228
|
-
# per-request on the session yeidled by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
229
287
|
#
|
230
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
289
|
+
# seconds a connection is allowed to sit idle before it is
|
232
290
|
# considered stale. Stale connections are closed and removed
|
233
291
|
# from the pool before making a request.
|
234
292
|
#
|
@@ -237,7 +295,7 @@ module Aws::States
|
|
237
295
|
# request body. This option has no effect unless the request has
|
238
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
297
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
298
|
+
# request on the session.
|
241
299
|
#
|
242
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -827,6 +885,8 @@ module Aws::States
|
|
827
885
|
# * {Types::GetExecutionHistoryOutput#events #events} => Array<Types::HistoryEvent>
|
828
886
|
# * {Types::GetExecutionHistoryOutput#next_token #next_token} => String
|
829
887
|
#
|
888
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
889
|
+
#
|
830
890
|
# @example Request syntax with placeholder values
|
831
891
|
#
|
832
892
|
# resp = client.get_execution_history({
|
@@ -964,6 +1024,8 @@ module Aws::States
|
|
964
1024
|
# * {Types::ListActivitiesOutput#activities #activities} => Array<Types::ActivityListItem>
|
965
1025
|
# * {Types::ListActivitiesOutput#next_token #next_token} => String
|
966
1026
|
#
|
1027
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1028
|
+
#
|
967
1029
|
# @example Request syntax with placeholder values
|
968
1030
|
#
|
969
1031
|
# resp = client.list_activities({
|
@@ -1035,6 +1097,8 @@ module Aws::States
|
|
1035
1097
|
# * {Types::ListExecutionsOutput#executions #executions} => Array<Types::ExecutionListItem>
|
1036
1098
|
# * {Types::ListExecutionsOutput#next_token #next_token} => String
|
1037
1099
|
#
|
1100
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1101
|
+
#
|
1038
1102
|
# @example Request syntax with placeholder values
|
1039
1103
|
#
|
1040
1104
|
# resp = client.list_executions({
|
@@ -1099,6 +1163,8 @@ module Aws::States
|
|
1099
1163
|
# * {Types::ListStateMachinesOutput#state_machines #state_machines} => Array<Types::StateMachineListItem>
|
1100
1164
|
# * {Types::ListStateMachinesOutput#next_token #next_token} => String
|
1101
1165
|
#
|
1166
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1167
|
+
#
|
1102
1168
|
# @example Request syntax with placeholder values
|
1103
1169
|
#
|
1104
1170
|
# resp = client.list_state_machines({
|
@@ -1557,7 +1623,7 @@ module Aws::States
|
|
1557
1623
|
params: params,
|
1558
1624
|
config: config)
|
1559
1625
|
context[:gem_name] = 'aws-sdk-states'
|
1560
|
-
context[:gem_version] = '1.
|
1626
|
+
context[:gem_version] = '1.30.0'
|
1561
1627
|
Seahorse::Client::Request.new(handlers, context)
|
1562
1628
|
end
|
1563
1629
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,51 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::States
|
11
|
+
|
12
|
+
# When States returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::States::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all States errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::States::Errors::ServiceError
|
20
|
+
# # rescues all States API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {ActivityDoesNotExist}
|
31
|
+
# * {ActivityLimitExceeded}
|
32
|
+
# * {ActivityWorkerLimitExceeded}
|
33
|
+
# * {ExecutionAlreadyExists}
|
34
|
+
# * {ExecutionDoesNotExist}
|
35
|
+
# * {ExecutionLimitExceeded}
|
36
|
+
# * {InvalidArn}
|
37
|
+
# * {InvalidDefinition}
|
38
|
+
# * {InvalidExecutionInput}
|
39
|
+
# * {InvalidLoggingConfiguration}
|
40
|
+
# * {InvalidName}
|
41
|
+
# * {InvalidOutput}
|
42
|
+
# * {InvalidToken}
|
43
|
+
# * {MissingRequiredParameter}
|
44
|
+
# * {ResourceNotFound}
|
45
|
+
# * {StateMachineAlreadyExists}
|
46
|
+
# * {StateMachineDeleting}
|
47
|
+
# * {StateMachineDoesNotExist}
|
48
|
+
# * {StateMachineLimitExceeded}
|
49
|
+
# * {StateMachineTypeNotSupported}
|
50
|
+
# * {TaskDoesNotExist}
|
51
|
+
# * {TaskTimedOut}
|
52
|
+
# * {TooManyTags}
|
53
|
+
#
|
54
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
55
|
+
# if they are not defined above.
|
9
56
|
module Errors
|
10
57
|
|
11
58
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +70,6 @@ module Aws::States
|
|
23
70
|
def message
|
24
71
|
@message || @data[:message]
|
25
72
|
end
|
26
|
-
|
27
73
|
end
|
28
74
|
|
29
75
|
class ActivityLimitExceeded < ServiceError
|
@@ -39,7 +85,6 @@ module Aws::States
|
|
39
85
|
def message
|
40
86
|
@message || @data[:message]
|
41
87
|
end
|
42
|
-
|
43
88
|
end
|
44
89
|
|
45
90
|
class ActivityWorkerLimitExceeded < ServiceError
|
@@ -55,7 +100,6 @@ module Aws::States
|
|
55
100
|
def message
|
56
101
|
@message || @data[:message]
|
57
102
|
end
|
58
|
-
|
59
103
|
end
|
60
104
|
|
61
105
|
class ExecutionAlreadyExists < ServiceError
|
@@ -71,7 +115,6 @@ module Aws::States
|
|
71
115
|
def message
|
72
116
|
@message || @data[:message]
|
73
117
|
end
|
74
|
-
|
75
118
|
end
|
76
119
|
|
77
120
|
class ExecutionDoesNotExist < ServiceError
|
@@ -87,7 +130,6 @@ module Aws::States
|
|
87
130
|
def message
|
88
131
|
@message || @data[:message]
|
89
132
|
end
|
90
|
-
|
91
133
|
end
|
92
134
|
|
93
135
|
class ExecutionLimitExceeded < ServiceError
|
@@ -103,7 +145,6 @@ module Aws::States
|
|
103
145
|
def message
|
104
146
|
@message || @data[:message]
|
105
147
|
end
|
106
|
-
|
107
148
|
end
|
108
149
|
|
109
150
|
class InvalidArn < ServiceError
|
@@ -119,7 +160,6 @@ module Aws::States
|
|
119
160
|
def message
|
120
161
|
@message || @data[:message]
|
121
162
|
end
|
122
|
-
|
123
163
|
end
|
124
164
|
|
125
165
|
class InvalidDefinition < ServiceError
|
@@ -135,7 +175,6 @@ module Aws::States
|
|
135
175
|
def message
|
136
176
|
@message || @data[:message]
|
137
177
|
end
|
138
|
-
|
139
178
|
end
|
140
179
|
|
141
180
|
class InvalidExecutionInput < ServiceError
|
@@ -151,7 +190,6 @@ module Aws::States
|
|
151
190
|
def message
|
152
191
|
@message || @data[:message]
|
153
192
|
end
|
154
|
-
|
155
193
|
end
|
156
194
|
|
157
195
|
class InvalidLoggingConfiguration < ServiceError
|
@@ -167,7 +205,6 @@ module Aws::States
|
|
167
205
|
def message
|
168
206
|
@message || @data[:message]
|
169
207
|
end
|
170
|
-
|
171
208
|
end
|
172
209
|
|
173
210
|
class InvalidName < ServiceError
|
@@ -183,7 +220,6 @@ module Aws::States
|
|
183
220
|
def message
|
184
221
|
@message || @data[:message]
|
185
222
|
end
|
186
|
-
|
187
223
|
end
|
188
224
|
|
189
225
|
class InvalidOutput < ServiceError
|
@@ -199,7 +235,6 @@ module Aws::States
|
|
199
235
|
def message
|
200
236
|
@message || @data[:message]
|
201
237
|
end
|
202
|
-
|
203
238
|
end
|
204
239
|
|
205
240
|
class InvalidToken < ServiceError
|
@@ -215,7 +250,6 @@ module Aws::States
|
|
215
250
|
def message
|
216
251
|
@message || @data[:message]
|
217
252
|
end
|
218
|
-
|
219
253
|
end
|
220
254
|
|
221
255
|
class MissingRequiredParameter < ServiceError
|
@@ -231,7 +265,6 @@ module Aws::States
|
|
231
265
|
def message
|
232
266
|
@message || @data[:message]
|
233
267
|
end
|
234
|
-
|
235
268
|
end
|
236
269
|
|
237
270
|
class ResourceNotFound < ServiceError
|
@@ -252,7 +285,6 @@ module Aws::States
|
|
252
285
|
def resource_name
|
253
286
|
@data[:resource_name]
|
254
287
|
end
|
255
|
-
|
256
288
|
end
|
257
289
|
|
258
290
|
class StateMachineAlreadyExists < ServiceError
|
@@ -268,7 +300,6 @@ module Aws::States
|
|
268
300
|
def message
|
269
301
|
@message || @data[:message]
|
270
302
|
end
|
271
|
-
|
272
303
|
end
|
273
304
|
|
274
305
|
class StateMachineDeleting < ServiceError
|
@@ -284,7 +315,6 @@ module Aws::States
|
|
284
315
|
def message
|
285
316
|
@message || @data[:message]
|
286
317
|
end
|
287
|
-
|
288
318
|
end
|
289
319
|
|
290
320
|
class StateMachineDoesNotExist < ServiceError
|
@@ -300,7 +330,6 @@ module Aws::States
|
|
300
330
|
def message
|
301
331
|
@message || @data[:message]
|
302
332
|
end
|
303
|
-
|
304
333
|
end
|
305
334
|
|
306
335
|
class StateMachineLimitExceeded < ServiceError
|
@@ -316,7 +345,6 @@ module Aws::States
|
|
316
345
|
def message
|
317
346
|
@message || @data[:message]
|
318
347
|
end
|
319
|
-
|
320
348
|
end
|
321
349
|
|
322
350
|
class StateMachineTypeNotSupported < ServiceError
|
@@ -332,7 +360,6 @@ module Aws::States
|
|
332
360
|
def message
|
333
361
|
@message || @data[:message]
|
334
362
|
end
|
335
|
-
|
336
363
|
end
|
337
364
|
|
338
365
|
class TaskDoesNotExist < ServiceError
|
@@ -348,7 +375,6 @@ module Aws::States
|
|
348
375
|
def message
|
349
376
|
@message || @data[:message]
|
350
377
|
end
|
351
|
-
|
352
378
|
end
|
353
379
|
|
354
380
|
class TaskTimedOut < ServiceError
|
@@ -364,7 +390,6 @@ module Aws::States
|
|
364
390
|
def message
|
365
391
|
@message || @data[:message]
|
366
392
|
end
|
367
|
-
|
368
393
|
end
|
369
394
|
|
370
395
|
class TooManyTags < ServiceError
|
@@ -385,7 +410,6 @@ module Aws::States
|
|
385
410
|
def resource_name
|
386
411
|
@data[:resource_name]
|
387
412
|
end
|
388
|
-
|
389
413
|
end
|
390
414
|
|
391
415
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::States
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
data/lib/aws-sdk-states/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -17,6 +19,7 @@ module Aws::States
|
|
17
19
|
#
|
18
20
|
class ActivityDoesNotExist < Struct.new(
|
19
21
|
:message)
|
22
|
+
SENSITIVE = []
|
20
23
|
include Aws::Structure
|
21
24
|
end
|
22
25
|
|
@@ -35,6 +38,7 @@ module Aws::States
|
|
35
38
|
class ActivityFailedEventDetails < Struct.new(
|
36
39
|
:error,
|
37
40
|
:cause)
|
41
|
+
SENSITIVE = [:error, :cause]
|
38
42
|
include Aws::Structure
|
39
43
|
end
|
40
44
|
|
@@ -48,6 +52,7 @@ module Aws::States
|
|
48
52
|
#
|
49
53
|
class ActivityLimitExceeded < Struct.new(
|
50
54
|
:message)
|
55
|
+
SENSITIVE = []
|
51
56
|
include Aws::Structure
|
52
57
|
end
|
53
58
|
|
@@ -86,6 +91,7 @@ module Aws::States
|
|
86
91
|
:activity_arn,
|
87
92
|
:name,
|
88
93
|
:creation_date)
|
94
|
+
SENSITIVE = []
|
89
95
|
include Aws::Structure
|
90
96
|
end
|
91
97
|
|
@@ -105,6 +111,7 @@ module Aws::States
|
|
105
111
|
class ActivityScheduleFailedEventDetails < Struct.new(
|
106
112
|
:error,
|
107
113
|
:cause)
|
114
|
+
SENSITIVE = [:error, :cause]
|
108
115
|
include Aws::Structure
|
109
116
|
end
|
110
117
|
|
@@ -134,6 +141,7 @@ module Aws::States
|
|
134
141
|
:input,
|
135
142
|
:timeout_in_seconds,
|
136
143
|
:heartbeat_in_seconds)
|
144
|
+
SENSITIVE = [:input]
|
137
145
|
include Aws::Structure
|
138
146
|
end
|
139
147
|
|
@@ -148,6 +156,7 @@ module Aws::States
|
|
148
156
|
#
|
149
157
|
class ActivityStartedEventDetails < Struct.new(
|
150
158
|
:worker_name)
|
159
|
+
SENSITIVE = []
|
151
160
|
include Aws::Structure
|
152
161
|
end
|
153
162
|
|
@@ -162,6 +171,7 @@ module Aws::States
|
|
162
171
|
#
|
163
172
|
class ActivitySucceededEventDetails < Struct.new(
|
164
173
|
:output)
|
174
|
+
SENSITIVE = [:output]
|
165
175
|
include Aws::Structure
|
166
176
|
end
|
167
177
|
|
@@ -181,6 +191,7 @@ module Aws::States
|
|
181
191
|
class ActivityTimedOutEventDetails < Struct.new(
|
182
192
|
:error,
|
183
193
|
:cause)
|
194
|
+
SENSITIVE = [:error, :cause]
|
184
195
|
include Aws::Structure
|
185
196
|
end
|
186
197
|
|
@@ -194,6 +205,7 @@ module Aws::States
|
|
194
205
|
#
|
195
206
|
class ActivityWorkerLimitExceeded < Struct.new(
|
196
207
|
:message)
|
208
|
+
SENSITIVE = []
|
197
209
|
include Aws::Structure
|
198
210
|
end
|
199
211
|
|
@@ -213,6 +225,7 @@ module Aws::States
|
|
213
225
|
#
|
214
226
|
class CloudWatchLogsLogGroup < Struct.new(
|
215
227
|
:log_group_arn)
|
228
|
+
SENSITIVE = []
|
216
229
|
include Aws::Structure
|
217
230
|
end
|
218
231
|
|
@@ -276,6 +289,7 @@ module Aws::States
|
|
276
289
|
class CreateActivityInput < Struct.new(
|
277
290
|
:name,
|
278
291
|
:tags)
|
292
|
+
SENSITIVE = []
|
279
293
|
include Aws::Structure
|
280
294
|
end
|
281
295
|
|
@@ -292,6 +306,7 @@ module Aws::States
|
|
292
306
|
class CreateActivityOutput < Struct.new(
|
293
307
|
:activity_arn,
|
294
308
|
:creation_date)
|
309
|
+
SENSITIVE = []
|
295
310
|
include Aws::Structure
|
296
311
|
end
|
297
312
|
|
@@ -400,6 +415,7 @@ module Aws::States
|
|
400
415
|
:type,
|
401
416
|
:logging_configuration,
|
402
417
|
:tags)
|
418
|
+
SENSITIVE = [:definition]
|
403
419
|
include Aws::Structure
|
404
420
|
end
|
405
421
|
|
@@ -417,6 +433,7 @@ module Aws::States
|
|
417
433
|
class CreateStateMachineOutput < Struct.new(
|
418
434
|
:state_machine_arn,
|
419
435
|
:creation_date)
|
436
|
+
SENSITIVE = []
|
420
437
|
include Aws::Structure
|
421
438
|
end
|
422
439
|
|
@@ -435,6 +452,7 @@ module Aws::States
|
|
435
452
|
#
|
436
453
|
class DeleteActivityInput < Struct.new(
|
437
454
|
:activity_arn)
|
455
|
+
SENSITIVE = []
|
438
456
|
include Aws::Structure
|
439
457
|
end
|
440
458
|
|
@@ -457,6 +475,7 @@ module Aws::States
|
|
457
475
|
#
|
458
476
|
class DeleteStateMachineInput < Struct.new(
|
459
477
|
:state_machine_arn)
|
478
|
+
SENSITIVE = []
|
460
479
|
include Aws::Structure
|
461
480
|
end
|
462
481
|
|
@@ -479,6 +498,7 @@ module Aws::States
|
|
479
498
|
#
|
480
499
|
class DescribeActivityInput < Struct.new(
|
481
500
|
:activity_arn)
|
501
|
+
SENSITIVE = []
|
482
502
|
include Aws::Structure
|
483
503
|
end
|
484
504
|
|
@@ -515,6 +535,7 @@ module Aws::States
|
|
515
535
|
:activity_arn,
|
516
536
|
:name,
|
517
537
|
:creation_date)
|
538
|
+
SENSITIVE = []
|
518
539
|
include Aws::Structure
|
519
540
|
end
|
520
541
|
|
@@ -533,6 +554,7 @@ module Aws::States
|
|
533
554
|
#
|
534
555
|
class DescribeExecutionInput < Struct.new(
|
535
556
|
:execution_arn)
|
557
|
+
SENSITIVE = []
|
536
558
|
include Aws::Structure
|
537
559
|
end
|
538
560
|
|
@@ -599,6 +621,7 @@ module Aws::States
|
|
599
621
|
:stop_date,
|
600
622
|
:input,
|
601
623
|
:output)
|
624
|
+
SENSITIVE = [:input, :output]
|
602
625
|
include Aws::Structure
|
603
626
|
end
|
604
627
|
|
@@ -618,6 +641,7 @@ module Aws::States
|
|
618
641
|
#
|
619
642
|
class DescribeStateMachineForExecutionInput < Struct.new(
|
620
643
|
:execution_arn)
|
644
|
+
SENSITIVE = []
|
621
645
|
include Aws::Structure
|
622
646
|
end
|
623
647
|
|
@@ -664,6 +688,7 @@ module Aws::States
|
|
664
688
|
:role_arn,
|
665
689
|
:update_date,
|
666
690
|
:logging_configuration)
|
691
|
+
SENSITIVE = [:definition]
|
667
692
|
include Aws::Structure
|
668
693
|
end
|
669
694
|
|
@@ -682,6 +707,7 @@ module Aws::States
|
|
682
707
|
#
|
683
708
|
class DescribeStateMachineInput < Struct.new(
|
684
709
|
:state_machine_arn)
|
710
|
+
SENSITIVE = []
|
685
711
|
include Aws::Structure
|
686
712
|
end
|
687
713
|
|
@@ -751,6 +777,7 @@ module Aws::States
|
|
751
777
|
:type,
|
752
778
|
:creation_date,
|
753
779
|
:logging_configuration)
|
780
|
+
SENSITIVE = [:definition]
|
754
781
|
include Aws::Structure
|
755
782
|
end
|
756
783
|
|
@@ -769,6 +796,7 @@ module Aws::States
|
|
769
796
|
class ExecutionAbortedEventDetails < Struct.new(
|
770
797
|
:error,
|
771
798
|
:cause)
|
799
|
+
SENSITIVE = [:error, :cause]
|
772
800
|
include Aws::Structure
|
773
801
|
end
|
774
802
|
|
@@ -786,6 +814,7 @@ module Aws::States
|
|
786
814
|
#
|
787
815
|
class ExecutionAlreadyExists < Struct.new(
|
788
816
|
:message)
|
817
|
+
SENSITIVE = []
|
789
818
|
include Aws::Structure
|
790
819
|
end
|
791
820
|
|
@@ -798,6 +827,7 @@ module Aws::States
|
|
798
827
|
#
|
799
828
|
class ExecutionDoesNotExist < Struct.new(
|
800
829
|
:message)
|
830
|
+
SENSITIVE = []
|
801
831
|
include Aws::Structure
|
802
832
|
end
|
803
833
|
|
@@ -816,6 +846,7 @@ module Aws::States
|
|
816
846
|
class ExecutionFailedEventDetails < Struct.new(
|
817
847
|
:error,
|
818
848
|
:cause)
|
849
|
+
SENSITIVE = [:error, :cause]
|
819
850
|
include Aws::Structure
|
820
851
|
end
|
821
852
|
|
@@ -830,6 +861,7 @@ module Aws::States
|
|
830
861
|
#
|
831
862
|
class ExecutionLimitExceeded < Struct.new(
|
832
863
|
:message)
|
864
|
+
SENSITIVE = []
|
833
865
|
include Aws::Structure
|
834
866
|
end
|
835
867
|
|
@@ -883,6 +915,7 @@ module Aws::States
|
|
883
915
|
:status,
|
884
916
|
:start_date,
|
885
917
|
:stop_date)
|
918
|
+
SENSITIVE = []
|
886
919
|
include Aws::Structure
|
887
920
|
end
|
888
921
|
|
@@ -902,6 +935,7 @@ module Aws::States
|
|
902
935
|
class ExecutionStartedEventDetails < Struct.new(
|
903
936
|
:input,
|
904
937
|
:role_arn)
|
938
|
+
SENSITIVE = [:input]
|
905
939
|
include Aws::Structure
|
906
940
|
end
|
907
941
|
|
@@ -915,6 +949,7 @@ module Aws::States
|
|
915
949
|
#
|
916
950
|
class ExecutionSucceededEventDetails < Struct.new(
|
917
951
|
:output)
|
952
|
+
SENSITIVE = [:output]
|
918
953
|
include Aws::Structure
|
919
954
|
end
|
920
955
|
|
@@ -934,6 +969,7 @@ module Aws::States
|
|
934
969
|
class ExecutionTimedOutEventDetails < Struct.new(
|
935
970
|
:error,
|
936
971
|
:cause)
|
972
|
+
SENSITIVE = [:error, :cause]
|
937
973
|
include Aws::Structure
|
938
974
|
end
|
939
975
|
|
@@ -961,6 +997,7 @@ module Aws::States
|
|
961
997
|
class GetActivityTaskInput < Struct.new(
|
962
998
|
:activity_arn,
|
963
999
|
:worker_name)
|
1000
|
+
SENSITIVE = []
|
964
1001
|
include Aws::Structure
|
965
1002
|
end
|
966
1003
|
|
@@ -980,6 +1017,7 @@ module Aws::States
|
|
980
1017
|
class GetActivityTaskOutput < Struct.new(
|
981
1018
|
:task_token,
|
982
1019
|
:input)
|
1020
|
+
SENSITIVE = [:input]
|
983
1021
|
include Aws::Structure
|
984
1022
|
end
|
985
1023
|
|
@@ -1027,6 +1065,7 @@ module Aws::States
|
|
1027
1065
|
:max_results,
|
1028
1066
|
:reverse_order,
|
1029
1067
|
:next_token)
|
1068
|
+
SENSITIVE = []
|
1030
1069
|
include Aws::Structure
|
1031
1070
|
end
|
1032
1071
|
|
@@ -1048,6 +1087,7 @@ module Aws::States
|
|
1048
1087
|
class GetExecutionHistoryOutput < Struct.new(
|
1049
1088
|
:events,
|
1050
1089
|
:next_token)
|
1090
|
+
SENSITIVE = []
|
1051
1091
|
include Aws::Structure
|
1052
1092
|
end
|
1053
1093
|
|
@@ -1247,6 +1287,7 @@ module Aws::States
|
|
1247
1287
|
:lambda_function_timed_out_event_details,
|
1248
1288
|
:state_entered_event_details,
|
1249
1289
|
:state_exited_event_details)
|
1290
|
+
SENSITIVE = []
|
1250
1291
|
include Aws::Structure
|
1251
1292
|
end
|
1252
1293
|
|
@@ -1259,6 +1300,7 @@ module Aws::States
|
|
1259
1300
|
#
|
1260
1301
|
class InvalidArn < Struct.new(
|
1261
1302
|
:message)
|
1303
|
+
SENSITIVE = []
|
1262
1304
|
include Aws::Structure
|
1263
1305
|
end
|
1264
1306
|
|
@@ -1271,6 +1313,7 @@ module Aws::States
|
|
1271
1313
|
#
|
1272
1314
|
class InvalidDefinition < Struct.new(
|
1273
1315
|
:message)
|
1316
|
+
SENSITIVE = []
|
1274
1317
|
include Aws::Structure
|
1275
1318
|
end
|
1276
1319
|
|
@@ -1283,6 +1326,7 @@ module Aws::States
|
|
1283
1326
|
#
|
1284
1327
|
class InvalidExecutionInput < Struct.new(
|
1285
1328
|
:message)
|
1329
|
+
SENSITIVE = []
|
1286
1330
|
include Aws::Structure
|
1287
1331
|
end
|
1288
1332
|
|
@@ -1293,6 +1337,7 @@ module Aws::States
|
|
1293
1337
|
#
|
1294
1338
|
class InvalidLoggingConfiguration < Struct.new(
|
1295
1339
|
:message)
|
1340
|
+
SENSITIVE = []
|
1296
1341
|
include Aws::Structure
|
1297
1342
|
end
|
1298
1343
|
|
@@ -1305,6 +1350,7 @@ module Aws::States
|
|
1305
1350
|
#
|
1306
1351
|
class InvalidName < Struct.new(
|
1307
1352
|
:message)
|
1353
|
+
SENSITIVE = []
|
1308
1354
|
include Aws::Structure
|
1309
1355
|
end
|
1310
1356
|
|
@@ -1317,6 +1363,7 @@ module Aws::States
|
|
1317
1363
|
#
|
1318
1364
|
class InvalidOutput < Struct.new(
|
1319
1365
|
:message)
|
1366
|
+
SENSITIVE = []
|
1320
1367
|
include Aws::Structure
|
1321
1368
|
end
|
1322
1369
|
|
@@ -1329,6 +1376,7 @@ module Aws::States
|
|
1329
1376
|
#
|
1330
1377
|
class InvalidToken < Struct.new(
|
1331
1378
|
:message)
|
1379
|
+
SENSITIVE = []
|
1332
1380
|
include Aws::Structure
|
1333
1381
|
end
|
1334
1382
|
|
@@ -1348,6 +1396,7 @@ module Aws::States
|
|
1348
1396
|
class LambdaFunctionFailedEventDetails < Struct.new(
|
1349
1397
|
:error,
|
1350
1398
|
:cause)
|
1399
|
+
SENSITIVE = [:error, :cause]
|
1351
1400
|
include Aws::Structure
|
1352
1401
|
end
|
1353
1402
|
|
@@ -1367,6 +1416,7 @@ module Aws::States
|
|
1367
1416
|
class LambdaFunctionScheduleFailedEventDetails < Struct.new(
|
1368
1417
|
:error,
|
1369
1418
|
:cause)
|
1419
|
+
SENSITIVE = [:error, :cause]
|
1370
1420
|
include Aws::Structure
|
1371
1421
|
end
|
1372
1422
|
|
@@ -1391,6 +1441,7 @@ module Aws::States
|
|
1391
1441
|
:resource,
|
1392
1442
|
:input,
|
1393
1443
|
:timeout_in_seconds)
|
1444
|
+
SENSITIVE = [:input]
|
1394
1445
|
include Aws::Structure
|
1395
1446
|
end
|
1396
1447
|
|
@@ -1410,6 +1461,7 @@ module Aws::States
|
|
1410
1461
|
class LambdaFunctionStartFailedEventDetails < Struct.new(
|
1411
1462
|
:error,
|
1412
1463
|
:cause)
|
1464
|
+
SENSITIVE = [:error, :cause]
|
1413
1465
|
include Aws::Structure
|
1414
1466
|
end
|
1415
1467
|
|
@@ -1424,6 +1476,7 @@ module Aws::States
|
|
1424
1476
|
#
|
1425
1477
|
class LambdaFunctionSucceededEventDetails < Struct.new(
|
1426
1478
|
:output)
|
1479
|
+
SENSITIVE = [:output]
|
1427
1480
|
include Aws::Structure
|
1428
1481
|
end
|
1429
1482
|
|
@@ -1443,6 +1496,7 @@ module Aws::States
|
|
1443
1496
|
class LambdaFunctionTimedOutEventDetails < Struct.new(
|
1444
1497
|
:error,
|
1445
1498
|
:cause)
|
1499
|
+
SENSITIVE = [:error, :cause]
|
1446
1500
|
include Aws::Structure
|
1447
1501
|
end
|
1448
1502
|
|
@@ -1478,6 +1532,7 @@ module Aws::States
|
|
1478
1532
|
class ListActivitiesInput < Struct.new(
|
1479
1533
|
:max_results,
|
1480
1534
|
:next_token)
|
1535
|
+
SENSITIVE = []
|
1481
1536
|
include Aws::Structure
|
1482
1537
|
end
|
1483
1538
|
|
@@ -1499,6 +1554,7 @@ module Aws::States
|
|
1499
1554
|
class ListActivitiesOutput < Struct.new(
|
1500
1555
|
:activities,
|
1501
1556
|
:next_token)
|
1557
|
+
SENSITIVE = []
|
1502
1558
|
include Aws::Structure
|
1503
1559
|
end
|
1504
1560
|
|
@@ -1548,6 +1604,7 @@ module Aws::States
|
|
1548
1604
|
:status_filter,
|
1549
1605
|
:max_results,
|
1550
1606
|
:next_token)
|
1607
|
+
SENSITIVE = []
|
1551
1608
|
include Aws::Structure
|
1552
1609
|
end
|
1553
1610
|
|
@@ -1569,6 +1626,7 @@ module Aws::States
|
|
1569
1626
|
class ListExecutionsOutput < Struct.new(
|
1570
1627
|
:executions,
|
1571
1628
|
:next_token)
|
1629
|
+
SENSITIVE = []
|
1572
1630
|
include Aws::Structure
|
1573
1631
|
end
|
1574
1632
|
|
@@ -1604,6 +1662,7 @@ module Aws::States
|
|
1604
1662
|
class ListStateMachinesInput < Struct.new(
|
1605
1663
|
:max_results,
|
1606
1664
|
:next_token)
|
1665
|
+
SENSITIVE = []
|
1607
1666
|
include Aws::Structure
|
1608
1667
|
end
|
1609
1668
|
|
@@ -1624,6 +1683,7 @@ module Aws::States
|
|
1624
1683
|
class ListStateMachinesOutput < Struct.new(
|
1625
1684
|
:state_machines,
|
1626
1685
|
:next_token)
|
1686
|
+
SENSITIVE = []
|
1627
1687
|
include Aws::Structure
|
1628
1688
|
end
|
1629
1689
|
|
@@ -1643,6 +1703,7 @@ module Aws::States
|
|
1643
1703
|
#
|
1644
1704
|
class ListTagsForResourceInput < Struct.new(
|
1645
1705
|
:resource_arn)
|
1706
|
+
SENSITIVE = []
|
1646
1707
|
include Aws::Structure
|
1647
1708
|
end
|
1648
1709
|
|
@@ -1654,6 +1715,7 @@ module Aws::States
|
|
1654
1715
|
#
|
1655
1716
|
class ListTagsForResourceOutput < Struct.new(
|
1656
1717
|
:tags)
|
1718
|
+
SENSITIVE = []
|
1657
1719
|
include Aws::Structure
|
1658
1720
|
end
|
1659
1721
|
|
@@ -1679,6 +1741,7 @@ module Aws::States
|
|
1679
1741
|
#
|
1680
1742
|
class LogDestination < Struct.new(
|
1681
1743
|
:cloud_watch_logs_log_group)
|
1744
|
+
SENSITIVE = []
|
1682
1745
|
include Aws::Structure
|
1683
1746
|
end
|
1684
1747
|
|
@@ -1721,6 +1784,7 @@ module Aws::States
|
|
1721
1784
|
:level,
|
1722
1785
|
:include_execution_data,
|
1723
1786
|
:destinations)
|
1787
|
+
SENSITIVE = []
|
1724
1788
|
include Aws::Structure
|
1725
1789
|
end
|
1726
1790
|
|
@@ -1739,6 +1803,7 @@ module Aws::States
|
|
1739
1803
|
class MapIterationEventDetails < Struct.new(
|
1740
1804
|
:name,
|
1741
1805
|
:index)
|
1806
|
+
SENSITIVE = []
|
1742
1807
|
include Aws::Structure
|
1743
1808
|
end
|
1744
1809
|
|
@@ -1752,6 +1817,7 @@ module Aws::States
|
|
1752
1817
|
#
|
1753
1818
|
class MapStateStartedEventDetails < Struct.new(
|
1754
1819
|
:length)
|
1820
|
+
SENSITIVE = []
|
1755
1821
|
include Aws::Structure
|
1756
1822
|
end
|
1757
1823
|
|
@@ -1765,6 +1831,7 @@ module Aws::States
|
|
1765
1831
|
#
|
1766
1832
|
class MissingRequiredParameter < Struct.new(
|
1767
1833
|
:message)
|
1834
|
+
SENSITIVE = []
|
1768
1835
|
include Aws::Structure
|
1769
1836
|
end
|
1770
1837
|
|
@@ -1782,6 +1849,7 @@ module Aws::States
|
|
1782
1849
|
class ResourceNotFound < Struct.new(
|
1783
1850
|
:message,
|
1784
1851
|
:resource_name)
|
1852
|
+
SENSITIVE = []
|
1785
1853
|
include Aws::Structure
|
1786
1854
|
end
|
1787
1855
|
|
@@ -1819,6 +1887,7 @@ module Aws::States
|
|
1819
1887
|
:task_token,
|
1820
1888
|
:error,
|
1821
1889
|
:cause)
|
1890
|
+
SENSITIVE = [:error, :cause]
|
1822
1891
|
include Aws::Structure
|
1823
1892
|
end
|
1824
1893
|
|
@@ -1848,6 +1917,7 @@ module Aws::States
|
|
1848
1917
|
#
|
1849
1918
|
class SendTaskHeartbeatInput < Struct.new(
|
1850
1919
|
:task_token)
|
1920
|
+
SENSITIVE = []
|
1851
1921
|
include Aws::Structure
|
1852
1922
|
end
|
1853
1923
|
|
@@ -1883,6 +1953,7 @@ module Aws::States
|
|
1883
1953
|
class SendTaskSuccessInput < Struct.new(
|
1884
1954
|
:task_token,
|
1885
1955
|
:output)
|
1956
|
+
SENSITIVE = [:output]
|
1886
1957
|
include Aws::Structure
|
1887
1958
|
end
|
1888
1959
|
|
@@ -1947,6 +2018,7 @@ module Aws::States
|
|
1947
2018
|
:state_machine_arn,
|
1948
2019
|
:name,
|
1949
2020
|
:input)
|
2021
|
+
SENSITIVE = [:input]
|
1950
2022
|
include Aws::Structure
|
1951
2023
|
end
|
1952
2024
|
|
@@ -1963,6 +2035,7 @@ module Aws::States
|
|
1963
2035
|
class StartExecutionOutput < Struct.new(
|
1964
2036
|
:execution_arn,
|
1965
2037
|
:start_date)
|
2038
|
+
SENSITIVE = []
|
1966
2039
|
include Aws::Structure
|
1967
2040
|
end
|
1968
2041
|
|
@@ -1981,6 +2054,7 @@ module Aws::States
|
|
1981
2054
|
class StateEnteredEventDetails < Struct.new(
|
1982
2055
|
:name,
|
1983
2056
|
:input)
|
2057
|
+
SENSITIVE = [:input]
|
1984
2058
|
include Aws::Structure
|
1985
2059
|
end
|
1986
2060
|
|
@@ -2014,6 +2088,7 @@ module Aws::States
|
|
2014
2088
|
class StateExitedEventDetails < Struct.new(
|
2015
2089
|
:name,
|
2016
2090
|
:output)
|
2091
|
+
SENSITIVE = [:output]
|
2017
2092
|
include Aws::Structure
|
2018
2093
|
end
|
2019
2094
|
|
@@ -2027,6 +2102,7 @@ module Aws::States
|
|
2027
2102
|
#
|
2028
2103
|
class StateMachineAlreadyExists < Struct.new(
|
2029
2104
|
:message)
|
2105
|
+
SENSITIVE = []
|
2030
2106
|
include Aws::Structure
|
2031
2107
|
end
|
2032
2108
|
|
@@ -2039,6 +2115,7 @@ module Aws::States
|
|
2039
2115
|
#
|
2040
2116
|
class StateMachineDeleting < Struct.new(
|
2041
2117
|
:message)
|
2118
|
+
SENSITIVE = []
|
2042
2119
|
include Aws::Structure
|
2043
2120
|
end
|
2044
2121
|
|
@@ -2051,6 +2128,7 @@ module Aws::States
|
|
2051
2128
|
#
|
2052
2129
|
class StateMachineDoesNotExist < Struct.new(
|
2053
2130
|
:message)
|
2131
|
+
SENSITIVE = []
|
2054
2132
|
include Aws::Structure
|
2055
2133
|
end
|
2056
2134
|
|
@@ -2064,6 +2142,7 @@ module Aws::States
|
|
2064
2142
|
#
|
2065
2143
|
class StateMachineLimitExceeded < Struct.new(
|
2066
2144
|
:message)
|
2145
|
+
SENSITIVE = []
|
2067
2146
|
include Aws::Structure
|
2068
2147
|
end
|
2069
2148
|
|
@@ -2106,6 +2185,7 @@ module Aws::States
|
|
2106
2185
|
:name,
|
2107
2186
|
:type,
|
2108
2187
|
:creation_date)
|
2188
|
+
SENSITIVE = []
|
2109
2189
|
include Aws::Structure
|
2110
2190
|
end
|
2111
2191
|
|
@@ -2116,6 +2196,7 @@ module Aws::States
|
|
2116
2196
|
#
|
2117
2197
|
class StateMachineTypeNotSupported < Struct.new(
|
2118
2198
|
:message)
|
2199
|
+
SENSITIVE = []
|
2119
2200
|
include Aws::Structure
|
2120
2201
|
end
|
2121
2202
|
|
@@ -2146,6 +2227,7 @@ module Aws::States
|
|
2146
2227
|
:execution_arn,
|
2147
2228
|
:error,
|
2148
2229
|
:cause)
|
2230
|
+
SENSITIVE = [:error, :cause]
|
2149
2231
|
include Aws::Structure
|
2150
2232
|
end
|
2151
2233
|
|
@@ -2157,6 +2239,7 @@ module Aws::States
|
|
2157
2239
|
#
|
2158
2240
|
class StopExecutionOutput < Struct.new(
|
2159
2241
|
:stop_date)
|
2242
|
+
SENSITIVE = []
|
2160
2243
|
include Aws::Structure
|
2161
2244
|
end
|
2162
2245
|
|
@@ -2196,6 +2279,7 @@ module Aws::States
|
|
2196
2279
|
class Tag < Struct.new(
|
2197
2280
|
:key,
|
2198
2281
|
:value)
|
2282
|
+
SENSITIVE = []
|
2199
2283
|
include Aws::Structure
|
2200
2284
|
end
|
2201
2285
|
|
@@ -2229,6 +2313,7 @@ module Aws::States
|
|
2229
2313
|
class TagResourceInput < Struct.new(
|
2230
2314
|
:resource_arn,
|
2231
2315
|
:tags)
|
2316
|
+
SENSITIVE = []
|
2232
2317
|
include Aws::Structure
|
2233
2318
|
end
|
2234
2319
|
|
@@ -2243,6 +2328,7 @@ module Aws::States
|
|
2243
2328
|
#
|
2244
2329
|
class TaskDoesNotExist < Struct.new(
|
2245
2330
|
:message)
|
2331
|
+
SENSITIVE = []
|
2246
2332
|
include Aws::Structure
|
2247
2333
|
end
|
2248
2334
|
|
@@ -2271,6 +2357,7 @@ module Aws::States
|
|
2271
2357
|
:resource,
|
2272
2358
|
:error,
|
2273
2359
|
:cause)
|
2360
|
+
SENSITIVE = [:error, :cause]
|
2274
2361
|
include Aws::Structure
|
2275
2362
|
end
|
2276
2363
|
|
@@ -2304,6 +2391,7 @@ module Aws::States
|
|
2304
2391
|
:region,
|
2305
2392
|
:parameters,
|
2306
2393
|
:timeout_in_seconds)
|
2394
|
+
SENSITIVE = [:parameters]
|
2307
2395
|
include Aws::Structure
|
2308
2396
|
end
|
2309
2397
|
|
@@ -2333,6 +2421,7 @@ module Aws::States
|
|
2333
2421
|
:resource,
|
2334
2422
|
:error,
|
2335
2423
|
:cause)
|
2424
|
+
SENSITIVE = [:error, :cause]
|
2336
2425
|
include Aws::Structure
|
2337
2426
|
end
|
2338
2427
|
|
@@ -2351,6 +2440,7 @@ module Aws::States
|
|
2351
2440
|
class TaskStartedEventDetails < Struct.new(
|
2352
2441
|
:resource_type,
|
2353
2442
|
:resource)
|
2443
|
+
SENSITIVE = []
|
2354
2444
|
include Aws::Structure
|
2355
2445
|
end
|
2356
2446
|
|
@@ -2380,6 +2470,7 @@ module Aws::States
|
|
2380
2470
|
:resource,
|
2381
2471
|
:error,
|
2382
2472
|
:cause)
|
2473
|
+
SENSITIVE = [:error, :cause]
|
2383
2474
|
include Aws::Structure
|
2384
2475
|
end
|
2385
2476
|
|
@@ -2403,6 +2494,7 @@ module Aws::States
|
|
2403
2494
|
:resource_type,
|
2404
2495
|
:resource,
|
2405
2496
|
:output)
|
2497
|
+
SENSITIVE = [:output]
|
2406
2498
|
include Aws::Structure
|
2407
2499
|
end
|
2408
2500
|
|
@@ -2427,6 +2519,7 @@ module Aws::States
|
|
2427
2519
|
:resource_type,
|
2428
2520
|
:resource,
|
2429
2521
|
:output)
|
2522
|
+
SENSITIVE = [:output]
|
2430
2523
|
include Aws::Structure
|
2431
2524
|
end
|
2432
2525
|
|
@@ -2437,6 +2530,7 @@ module Aws::States
|
|
2437
2530
|
#
|
2438
2531
|
class TaskTimedOut < Struct.new(
|
2439
2532
|
:message)
|
2533
|
+
SENSITIVE = []
|
2440
2534
|
include Aws::Structure
|
2441
2535
|
end
|
2442
2536
|
|
@@ -2466,6 +2560,7 @@ module Aws::States
|
|
2466
2560
|
:resource,
|
2467
2561
|
:error,
|
2468
2562
|
:cause)
|
2563
|
+
SENSITIVE = [:error, :cause]
|
2469
2564
|
include Aws::Structure
|
2470
2565
|
end
|
2471
2566
|
|
@@ -2487,6 +2582,7 @@ module Aws::States
|
|
2487
2582
|
class TooManyTags < Struct.new(
|
2488
2583
|
:message,
|
2489
2584
|
:resource_name)
|
2585
|
+
SENSITIVE = []
|
2490
2586
|
include Aws::Structure
|
2491
2587
|
end
|
2492
2588
|
|
@@ -2512,6 +2608,7 @@ module Aws::States
|
|
2512
2608
|
class UntagResourceInput < Struct.new(
|
2513
2609
|
:resource_arn,
|
2514
2610
|
:tag_keys)
|
2611
|
+
SENSITIVE = []
|
2515
2612
|
include Aws::Structure
|
2516
2613
|
end
|
2517
2614
|
|
@@ -2568,6 +2665,7 @@ module Aws::States
|
|
2568
2665
|
:definition,
|
2569
2666
|
:role_arn,
|
2570
2667
|
:logging_configuration)
|
2668
|
+
SENSITIVE = [:definition]
|
2571
2669
|
include Aws::Structure
|
2572
2670
|
end
|
2573
2671
|
|
@@ -2579,6 +2677,7 @@ module Aws::States
|
|
2579
2677
|
#
|
2580
2678
|
class UpdateStateMachineOutput < Struct.new(
|
2581
2679
|
:update_date)
|
2680
|
+
SENSITIVE = []
|
2582
2681
|
include Aws::Structure
|
2583
2682
|
end
|
2584
2683
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-states
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.30.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: 2020-
|
11
|
+
date: 2020-06-23 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
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - AWS SFN
|