aws-sdk-swf 1.17.0 → 1.22.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
- SHA1:
3
- metadata.gz: 3dea98d06d2f2e3e0fc13bb9ea4d8f13c29788c9
4
- data.tar.gz: 38f89aec6fefe53a3d56a74141c4acfbec22a255
2
+ SHA256:
3
+ metadata.gz: ad143ccabdcf1f90846d2ca14b79790ca1e65cb22d65a5fb7b344bd5c3a33364
4
+ data.tar.gz: 79ac08d1c1fcafdcd91af41eafa4af24fd3ce70c94665cad0637785cd2afec51
5
5
  SHA512:
6
- metadata.gz: 648c62e2cd02c36a82f3725dc7eac60c02256d6900acfbba571971a5976ddff67f8445490510a70a688a5d5dad508bfd0e6de9f3a561c36d400310132d135ab5
7
- data.tar.gz: a9951369eb5917815e309584abacf3549047e0184764588e4735947c0275aa4752ed66c629fbf9d893d5d6f246ed6c916fc8b62598f73122a5f5d2ae11a24b97
6
+ metadata.gz: c726106c15a821874309095d0121571f31d02aaadff10db9b968defbe62562d4f578124f4066b042dc6c4cb7ec920f53dbecad0bfe6c7d96dcf91ed2bfa6f71a
7
+ data.tar.gz: 3e3b1e2095c59806775305104c40e53c8d229b13ae4aebdf468240f9bad357d6222bbd5cd1cc467b781e2db3a0f29feda23e2b32a1055962245d32bcfca5dda4
@@ -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-swf/customizations'
24
26
  # methods each accept a hash of request parameters and return a response
25
27
  # structure.
26
28
  #
29
+ # swf = Aws::SWF::Client.new
30
+ # resp = swf.count_closed_workflow_executions(params)
31
+ #
27
32
  # See {Client} for more information.
28
33
  #
29
34
  # # Errors
30
35
  #
31
- # Errors returned from Amazon Simple Workflow Service all
32
- # extend {Errors::ServiceError}.
36
+ # Errors returned from Amazon Simple Workflow Service 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::SWF::Errors::ServiceError
37
- # # rescues all service API errors
42
+ # # rescues all Amazon Simple Workflow Service API errors
38
43
  # end
39
44
  #
40
45
  # See {Errors} for more information.
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-swf/customizations'
42
47
  # @service
43
48
  module Aws::SWF
44
49
 
45
- GEM_VERSION = '1.17.0'
50
+ GEM_VERSION = '1.22.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,6 +26,7 @@ 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
  require 'aws-sdk-swf/plugins/read_timeouts.rb'
@@ -31,6 +34,18 @@ require 'aws-sdk-swf/plugins/read_timeouts.rb'
31
34
  Aws::Plugins::GlobalConfiguration.add_identifier(:swf)
32
35
 
33
36
  module Aws::SWF
37
+ # An API client for SWF. To construct a client, you need to configure a `:region` and `:credentials`.
38
+ #
39
+ # client = Aws::SWF::Client.new(
40
+ # region: region_name,
41
+ # credentials: credentials,
42
+ # # ...
43
+ # )
44
+ #
45
+ # For details on configuring region and credentials see
46
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
47
+ #
48
+ # See {#initialize} for a full list of supported configuration options.
34
49
  class Client < Seahorse::Client::Base
35
50
 
36
51
  include Aws::ClientStubs
@@ -58,6 +73,7 @@ module Aws::SWF
58
73
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
59
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
60
75
  add_plugin(Aws::Plugins::TransferEncoding)
76
+ add_plugin(Aws::Plugins::HttpChecksum)
61
77
  add_plugin(Aws::Plugins::SignatureV4)
62
78
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
63
79
  add_plugin(Aws::SWF::Plugins::ReadTimeouts)
@@ -95,7 +111,7 @@ module Aws::SWF
95
111
  # @option options [required, String] :region
96
112
  # The AWS region to connect to. The configured `:region` is
97
113
  # used to determine the service `:endpoint`. When not passed,
98
- # a default `:region` is search for in the following locations:
114
+ # a default `:region` is searched for in the following locations:
99
115
  #
100
116
  # * `Aws.config[:region]`
101
117
  # * `ENV['AWS_REGION']`
@@ -110,6 +126,12 @@ module Aws::SWF
110
126
  # When set to `true`, a thread polling for endpoints will be running in
111
127
  # the background every 60 secs (default). Defaults to `false`.
112
128
  #
129
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
130
+ # Used only in `adaptive` retry mode. When true, the request will sleep
131
+ # until there is sufficent client side capacity to retry the request.
132
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
133
+ # not retry instead of sleeping.
134
+ #
113
135
  # @option options [Boolean] :client_side_monitoring (false)
114
136
  # When `true`, client-side metrics will be collected for all API requests from
115
137
  # this client.
@@ -134,6 +156,10 @@ module Aws::SWF
134
156
  # When `true`, an attempt is made to coerce request parameters into
135
157
  # the required types.
136
158
  #
159
+ # @option options [Boolean] :correct_clock_skew (true)
160
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
161
+ # a clock skew correction and retry requests with skewed client clocks.
162
+ #
137
163
  # @option options [Boolean] :disable_host_prefix_injection (false)
138
164
  # Set to true to disable SDK automatically adding host prefix
139
165
  # to default service endpoint when available.
@@ -141,7 +167,7 @@ module Aws::SWF
141
167
  # @option options [String] :endpoint
142
168
  # The client endpoint is normally constructed from the `:region`
143
169
  # option. You should only configure an `:endpoint` when connecting
144
- # to test endpoints. This should be avalid HTTP(S) URI.
170
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
145
171
  #
146
172
  # @option options [Integer] :endpoint_cache_max_entries (1000)
147
173
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -156,7 +182,7 @@ module Aws::SWF
156
182
  # requests fetching endpoints information. Defaults to 60 sec.
157
183
  #
158
184
  # @option options [Boolean] :endpoint_discovery (false)
159
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
185
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
160
186
  #
161
187
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
162
188
  # The log formatter.
@@ -168,15 +194,29 @@ module Aws::SWF
168
194
  # The Logger instance to send log messages to. If this option
169
195
  # is not set, logging will be disabled.
170
196
  #
197
+ # @option options [Integer] :max_attempts (3)
198
+ # An integer representing the maximum number attempts that will be made for
199
+ # a single request, including the initial attempt. For example,
200
+ # setting this value to 5 will result in a request being retried up to
201
+ # 4 times. Used in `standard` and `adaptive` retry modes.
202
+ #
171
203
  # @option options [String] :profile ("default")
172
204
  # Used when loading credentials from the shared credentials file
173
205
  # at HOME/.aws/credentials. When not specified, 'default' is used.
174
206
  #
207
+ # @option options [Proc] :retry_backoff
208
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
209
+ # This option is only used in the `legacy` retry mode.
210
+ #
175
211
  # @option options [Float] :retry_base_delay (0.3)
176
- # The base delay in seconds used by the default backoff function.
212
+ # The base delay in seconds used by the default backoff function. This option
213
+ # is only used in the `legacy` retry mode.
177
214
  #
178
215
  # @option options [Symbol] :retry_jitter (:none)
179
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
216
+ # A delay randomiser function used by the default backoff function.
217
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
218
+ # otherwise a Proc that takes and returns a number. This option is only used
219
+ # in the `legacy` retry mode.
180
220
  #
181
221
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
182
222
  #
@@ -184,11 +224,30 @@ module Aws::SWF
184
224
  # The maximum number of times to retry failed requests. Only
185
225
  # ~ 500 level server errors and certain ~ 400 level client errors
186
226
  # are retried. Generally, these are throttling errors, data
187
- # checksum errors, networking errors, timeout errors and auth
188
- # errors from expired credentials.
227
+ # checksum errors, networking errors, timeout errors, auth errors,
228
+ # endpoint discovery, and errors from expired credentials.
229
+ # This option is only used in the `legacy` retry mode.
189
230
  #
190
231
  # @option options [Integer] :retry_max_delay (0)
191
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
232
+ # The maximum number of seconds to delay between retries (0 for no limit)
233
+ # used by the default backoff function. This option is only used in the
234
+ # `legacy` retry mode.
235
+ #
236
+ # @option options [String] :retry_mode ("legacy")
237
+ # Specifies which retry algorithm to use. Values are:
238
+ #
239
+ # * `legacy` - The pre-existing retry behavior. This is default value if
240
+ # no retry mode is provided.
241
+ #
242
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
243
+ # This includes support for retry quotas, which limit the number of
244
+ # unsuccessful retries a client can make.
245
+ #
246
+ # * `adaptive` - An experimental retry mode that includes all the
247
+ # functionality of `standard` mode along with automatic client side
248
+ # throttling. This is a provisional mode that may change behavior
249
+ # in the future.
250
+ #
192
251
  #
193
252
  # @option options [String] :secret_access_key
194
253
  #
@@ -221,16 +280,15 @@ module Aws::SWF
221
280
  # requests through. Formatted like 'http://proxy.com:123'.
222
281
  #
223
282
  # @option options [Float] :http_open_timeout (15) The number of
224
- # seconds to wait when opening a HTTP session before rasing a
283
+ # seconds to wait when opening a HTTP session before raising a
225
284
  # `Timeout::Error`.
226
285
  #
227
286
  # @option options [Integer] :http_read_timeout (60) The default
228
287
  # 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}.
288
+ # safely be set per-request on the session.
231
289
  #
232
290
  # @option options [Float] :http_idle_timeout (5) The number of
233
- # seconds a connection is allowed to sit idble before it is
291
+ # seconds a connection is allowed to sit idle before it is
234
292
  # considered stale. Stale connections are closed and removed
235
293
  # from the pool before making a request.
236
294
  #
@@ -239,7 +297,7 @@ module Aws::SWF
239
297
  # request body. This option has no effect unless the request has
240
298
  # "Expect" header set to "100-continue". Defaults to `nil` which
241
299
  # disables this behaviour. This value can safely be set per
242
- # request on the session yeidled by {#session_for}.
300
+ # request on the session.
243
301
  #
244
302
  # @option options [Boolean] :http_wire_trace (false) When `true`,
245
303
  # HTTP debug output will be sent to the `:logger`.
@@ -1210,6 +1268,8 @@ module Aws::SWF
1210
1268
  # * {Types::History#events #events} => Array&lt;Types::HistoryEvent&gt;
1211
1269
  # * {Types::History#next_page_token #next_page_token} => String
1212
1270
  #
1271
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1272
+ #
1213
1273
  # @example Request syntax with placeholder values
1214
1274
  #
1215
1275
  # resp = client.get_workflow_execution_history({
@@ -1547,6 +1607,8 @@ module Aws::SWF
1547
1607
  # * {Types::ActivityTypeInfos#type_infos #type_infos} => Array&lt;Types::ActivityTypeInfo&gt;
1548
1608
  # * {Types::ActivityTypeInfos#next_page_token #next_page_token} => String
1549
1609
  #
1610
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1611
+ #
1550
1612
  # @example Request syntax with placeholder values
1551
1613
  #
1552
1614
  # resp = client.list_activity_types({
@@ -1711,6 +1773,8 @@ module Aws::SWF
1711
1773
  # * {Types::WorkflowExecutionInfos#execution_infos #execution_infos} => Array&lt;Types::WorkflowExecutionInfo&gt;
1712
1774
  # * {Types::WorkflowExecutionInfos#next_page_token #next_page_token} => String
1713
1775
  #
1776
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1777
+ #
1714
1778
  # @example Request syntax with placeholder values
1715
1779
  #
1716
1780
  # resp = client.list_closed_workflow_executions({
@@ -1830,6 +1894,8 @@ module Aws::SWF
1830
1894
  # * {Types::DomainInfos#domain_infos #domain_infos} => Array&lt;Types::DomainInfo&gt;
1831
1895
  # * {Types::DomainInfos#next_page_token #next_page_token} => String
1832
1896
  #
1897
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1898
+ #
1833
1899
  # @example Request syntax with placeholder values
1834
1900
  #
1835
1901
  # resp = client.list_domains({
@@ -1959,6 +2025,8 @@ module Aws::SWF
1959
2025
  # * {Types::WorkflowExecutionInfos#execution_infos #execution_infos} => Array&lt;Types::WorkflowExecutionInfo&gt;
1960
2026
  # * {Types::WorkflowExecutionInfos#next_page_token #next_page_token} => String
1961
2027
  #
2028
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2029
+ #
1962
2030
  # @example Request syntax with placeholder values
1963
2031
  #
1964
2032
  # resp = client.list_open_workflow_executions({
@@ -2099,6 +2167,8 @@ module Aws::SWF
2099
2167
  # * {Types::WorkflowTypeInfos#type_infos #type_infos} => Array&lt;Types::WorkflowTypeInfo&gt;
2100
2168
  # * {Types::WorkflowTypeInfos#next_page_token #next_page_token} => String
2101
2169
  #
2170
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2171
+ #
2102
2172
  # @example Request syntax with placeholder values
2103
2173
  #
2104
2174
  # resp = client.list_workflow_types({
@@ -2332,6 +2402,8 @@ module Aws::SWF
2332
2402
  # * {Types::DecisionTask#next_page_token #next_page_token} => String
2333
2403
  # * {Types::DecisionTask#previous_started_event_id #previous_started_event_id} => Integer
2334
2404
  #
2405
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2406
+ #
2335
2407
  # @example Request syntax with placeholder values
2336
2408
  #
2337
2409
  # resp = client.poll_for_decision_task({
@@ -4201,7 +4273,7 @@ module Aws::SWF
4201
4273
  params: params,
4202
4274
  config: config)
4203
4275
  context[:gem_name] = 'aws-sdk-swf'
4204
- context[:gem_version] = '1.17.0'
4276
+ context[:gem_version] = '1.22.0'
4205
4277
  Seahorse::Client::Request.new(handlers, context)
4206
4278
  end
4207
4279
 
@@ -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:
@@ -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,38 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::SWF
11
+
12
+ # When SWF returns an error response, the Ruby SDK constructs and raises an error.
13
+ # These errors all extend Aws::SWF::Errors::ServiceError < {Aws::Errors::ServiceError}
14
+ #
15
+ # You can rescue all SWF errors using ServiceError:
16
+ #
17
+ # begin
18
+ # # do stuff
19
+ # rescue Aws::SWF::Errors::ServiceError
20
+ # # rescues all SWF 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
+ # * {DefaultUndefinedFault}
31
+ # * {DomainAlreadyExistsFault}
32
+ # * {DomainDeprecatedFault}
33
+ # * {LimitExceededFault}
34
+ # * {OperationNotPermittedFault}
35
+ # * {TooManyTagsFault}
36
+ # * {TypeAlreadyExistsFault}
37
+ # * {TypeDeprecatedFault}
38
+ # * {UnknownResourceFault}
39
+ # * {WorkflowExecutionAlreadyStartedFault}
40
+ #
41
+ # Additionally, error classes are dynamically generated for service errors based on the error code
42
+ # if they are not defined above.
9
43
  module Errors
10
44
 
11
45
  extend Aws::Errors::DynamicErrors
@@ -23,7 +57,6 @@ module Aws::SWF
23
57
  def message
24
58
  @message || @data[:message]
25
59
  end
26
-
27
60
  end
28
61
 
29
62
  class DomainAlreadyExistsFault < ServiceError
@@ -39,7 +72,6 @@ module Aws::SWF
39
72
  def message
40
73
  @message || @data[:message]
41
74
  end
42
-
43
75
  end
44
76
 
45
77
  class DomainDeprecatedFault < ServiceError
@@ -55,7 +87,6 @@ module Aws::SWF
55
87
  def message
56
88
  @message || @data[:message]
57
89
  end
58
-
59
90
  end
60
91
 
61
92
  class LimitExceededFault < ServiceError
@@ -71,7 +102,6 @@ module Aws::SWF
71
102
  def message
72
103
  @message || @data[:message]
73
104
  end
74
-
75
105
  end
76
106
 
77
107
  class OperationNotPermittedFault < ServiceError
@@ -87,7 +117,6 @@ module Aws::SWF
87
117
  def message
88
118
  @message || @data[:message]
89
119
  end
90
-
91
120
  end
92
121
 
93
122
  class TooManyTagsFault < ServiceError
@@ -103,7 +132,6 @@ module Aws::SWF
103
132
  def message
104
133
  @message || @data[:message]
105
134
  end
106
-
107
135
  end
108
136
 
109
137
  class TypeAlreadyExistsFault < ServiceError
@@ -119,7 +147,6 @@ module Aws::SWF
119
147
  def message
120
148
  @message || @data[:message]
121
149
  end
122
-
123
150
  end
124
151
 
125
152
  class TypeDeprecatedFault < ServiceError
@@ -135,7 +162,6 @@ module Aws::SWF
135
162
  def message
136
163
  @message || @data[:message]
137
164
  end
138
-
139
165
  end
140
166
 
141
167
  class UnknownResourceFault < ServiceError
@@ -151,7 +177,6 @@ module Aws::SWF
151
177
  def message
152
178
  @message || @data[:message]
153
179
  end
154
-
155
180
  end
156
181
 
157
182
  class WorkflowExecutionAlreadyStartedFault < ServiceError
@@ -167,7 +192,6 @@ module Aws::SWF
167
192
  def message
168
193
  @message || @data[:message]
169
194
  end
170
-
171
195
  end
172
196
 
173
197
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module SWF
3
5
  module Plugins
@@ -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::SWF
11
+
9
12
  class Resource
10
13
 
11
14
  # @param options ({})
@@ -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:
@@ -45,6 +47,7 @@ module Aws::SWF
45
47
  :workflow_execution,
46
48
  :activity_type,
47
49
  :input)
50
+ SENSITIVE = []
48
51
  include Aws::Structure
49
52
  end
50
53
 
@@ -65,6 +68,7 @@ module Aws::SWF
65
68
  class ActivityTaskCancelRequestedEventAttributes < Struct.new(
66
69
  :decision_task_completed_event_id,
67
70
  :activity_id)
71
+ SENSITIVE = []
68
72
  include Aws::Structure
69
73
  end
70
74
 
@@ -100,6 +104,7 @@ module Aws::SWF
100
104
  :scheduled_event_id,
101
105
  :started_event_id,
102
106
  :latest_cancel_requested_event_id)
107
+ SENSITIVE = []
103
108
  include Aws::Structure
104
109
  end
105
110
 
@@ -127,6 +132,7 @@ module Aws::SWF
127
132
  :result,
128
133
  :scheduled_event_id,
129
134
  :started_event_id)
135
+ SENSITIVE = []
130
136
  include Aws::Structure
131
137
  end
132
138
 
@@ -159,6 +165,7 @@ module Aws::SWF
159
165
  :details,
160
166
  :scheduled_event_id,
161
167
  :started_event_id)
168
+ SENSITIVE = []
162
169
  include Aws::Structure
163
170
  end
164
171
 
@@ -243,6 +250,7 @@ module Aws::SWF
243
250
  :task_priority,
244
251
  :decision_task_completed_event_id,
245
252
  :heartbeat_timeout)
253
+ SENSITIVE = []
246
254
  include Aws::Structure
247
255
  end
248
256
 
@@ -264,6 +272,7 @@ module Aws::SWF
264
272
  class ActivityTaskStartedEventAttributes < Struct.new(
265
273
  :identity,
266
274
  :scheduled_event_id)
275
+ SENSITIVE = []
267
276
  include Aws::Structure
268
277
  end
269
278
 
@@ -275,6 +284,7 @@ module Aws::SWF
275
284
  #
276
285
  class ActivityTaskStatus < Struct.new(
277
286
  :cancel_requested)
287
+ SENSITIVE = []
278
288
  include Aws::Structure
279
289
  end
280
290
 
@@ -308,6 +318,7 @@ module Aws::SWF
308
318
  :scheduled_event_id,
309
319
  :started_event_id,
310
320
  :details)
321
+ SENSITIVE = []
311
322
  include Aws::Structure
312
323
  end
313
324
 
@@ -342,6 +353,7 @@ module Aws::SWF
342
353
  class ActivityType < Struct.new(
343
354
  :name,
344
355
  :version)
356
+ SENSITIVE = []
345
357
  include Aws::Structure
346
358
  end
347
359
 
@@ -426,6 +438,7 @@ module Aws::SWF
426
438
  :default_task_priority,
427
439
  :default_task_schedule_to_start_timeout,
428
440
  :default_task_schedule_to_close_timeout)
441
+ SENSITIVE = []
429
442
  include Aws::Structure
430
443
  end
431
444
 
@@ -453,6 +466,7 @@ module Aws::SWF
453
466
  class ActivityTypeDetail < Struct.new(
454
467
  :type_info,
455
468
  :configuration)
469
+ SENSITIVE = []
456
470
  include Aws::Structure
457
471
  end
458
472
 
@@ -486,6 +500,7 @@ module Aws::SWF
486
500
  :description,
487
501
  :creation_date,
488
502
  :deprecation_date)
503
+ SENSITIVE = []
489
504
  include Aws::Structure
490
505
  end
491
506
 
@@ -508,6 +523,7 @@ module Aws::SWF
508
523
  class ActivityTypeInfos < Struct.new(
509
524
  :type_infos,
510
525
  :next_page_token)
526
+ SENSITIVE = []
511
527
  include Aws::Structure
512
528
  end
513
529
 
@@ -550,6 +566,7 @@ module Aws::SWF
550
566
  #
551
567
  class CancelTimerDecisionAttributes < Struct.new(
552
568
  :timer_id)
569
+ SENSITIVE = []
553
570
  include Aws::Structure
554
571
  end
555
572
 
@@ -586,6 +603,7 @@ module Aws::SWF
586
603
  :timer_id,
587
604
  :cause,
588
605
  :decision_task_completed_event_id)
606
+ SENSITIVE = []
589
607
  include Aws::Structure
590
608
  end
591
609
 
@@ -628,6 +646,7 @@ module Aws::SWF
628
646
  #
629
647
  class CancelWorkflowExecutionDecisionAttributes < Struct.new(
630
648
  :details)
649
+ SENSITIVE = []
631
650
  include Aws::Structure
632
651
  end
633
652
 
@@ -660,6 +679,7 @@ module Aws::SWF
660
679
  class CancelWorkflowExecutionFailedEventAttributes < Struct.new(
661
680
  :cause,
662
681
  :decision_task_completed_event_id)
682
+ SENSITIVE = []
663
683
  include Aws::Structure
664
684
  end
665
685
 
@@ -698,6 +718,7 @@ module Aws::SWF
698
718
  :details,
699
719
  :initiated_event_id,
700
720
  :started_event_id)
721
+ SENSITIVE = []
701
722
  include Aws::Structure
702
723
  end
703
724
 
@@ -736,6 +757,7 @@ module Aws::SWF
736
757
  :result,
737
758
  :initiated_event_id,
738
759
  :started_event_id)
760
+ SENSITIVE = []
739
761
  include Aws::Structure
740
762
  end
741
763
 
@@ -779,6 +801,7 @@ module Aws::SWF
779
801
  :details,
780
802
  :initiated_event_id,
781
803
  :started_event_id)
804
+ SENSITIVE = []
782
805
  include Aws::Structure
783
806
  end
784
807
 
@@ -804,6 +827,7 @@ module Aws::SWF
804
827
  :workflow_execution,
805
828
  :workflow_type,
806
829
  :initiated_event_id)
830
+ SENSITIVE = []
807
831
  include Aws::Structure
808
832
  end
809
833
 
@@ -837,6 +861,7 @@ module Aws::SWF
837
861
  :workflow_type,
838
862
  :initiated_event_id,
839
863
  :started_event_id)
864
+ SENSITIVE = []
840
865
  include Aws::Structure
841
866
  end
842
867
 
@@ -876,6 +901,7 @@ module Aws::SWF
876
901
  :timeout_type,
877
902
  :initiated_event_id,
878
903
  :started_event_id)
904
+ SENSITIVE = []
879
905
  include Aws::Structure
880
906
  end
881
907
 
@@ -896,6 +922,7 @@ module Aws::SWF
896
922
  #
897
923
  class CloseStatusFilter < Struct.new(
898
924
  :status)
925
+ SENSITIVE = []
899
926
  include Aws::Structure
900
927
  end
901
928
 
@@ -939,6 +966,7 @@ module Aws::SWF
939
966
  #
940
967
  class CompleteWorkflowExecutionDecisionAttributes < Struct.new(
941
968
  :result)
969
+ SENSITIVE = []
942
970
  include Aws::Structure
943
971
  end
944
972
 
@@ -971,6 +999,7 @@ module Aws::SWF
971
999
  class CompleteWorkflowExecutionFailedEventAttributes < Struct.new(
972
1000
  :cause,
973
1001
  :decision_task_completed_event_id)
1002
+ SENSITIVE = []
974
1003
  include Aws::Structure
975
1004
  end
976
1005
 
@@ -1137,6 +1166,7 @@ module Aws::SWF
1137
1166
  :tag_list,
1138
1167
  :workflow_type_version,
1139
1168
  :lambda_role)
1169
+ SENSITIVE = []
1140
1170
  include Aws::Structure
1141
1171
  end
1142
1172
 
@@ -1170,6 +1200,7 @@ module Aws::SWF
1170
1200
  class ContinueAsNewWorkflowExecutionFailedEventAttributes < Struct.new(
1171
1201
  :cause,
1172
1202
  :decision_task_completed_event_id)
1203
+ SENSITIVE = []
1173
1204
  include Aws::Structure
1174
1205
  end
1175
1206
 
@@ -1278,6 +1309,7 @@ module Aws::SWF
1278
1309
  :type_filter,
1279
1310
  :tag_filter,
1280
1311
  :close_status_filter)
1312
+ SENSITIVE = []
1281
1313
  include Aws::Structure
1282
1314
  end
1283
1315
 
@@ -1346,6 +1378,7 @@ module Aws::SWF
1346
1378
  :type_filter,
1347
1379
  :tag_filter,
1348
1380
  :execution_filter)
1381
+ SENSITIVE = []
1349
1382
  include Aws::Structure
1350
1383
  end
1351
1384
 
@@ -1370,6 +1403,7 @@ module Aws::SWF
1370
1403
  class CountPendingActivityTasksInput < Struct.new(
1371
1404
  :domain,
1372
1405
  :task_list)
1406
+ SENSITIVE = []
1373
1407
  include Aws::Structure
1374
1408
  end
1375
1409
 
@@ -1394,6 +1428,7 @@ module Aws::SWF
1394
1428
  class CountPendingDecisionTasksInput < Struct.new(
1395
1429
  :domain,
1396
1430
  :task_list)
1431
+ SENSITIVE = []
1397
1432
  include Aws::Structure
1398
1433
  end
1399
1434
 
@@ -1763,6 +1798,7 @@ module Aws::SWF
1763
1798
  :request_cancel_external_workflow_execution_decision_attributes,
1764
1799
  :start_child_workflow_execution_decision_attributes,
1765
1800
  :schedule_lambda_function_decision_attributes)
1801
+ SENSITIVE = []
1766
1802
  include Aws::Structure
1767
1803
  end
1768
1804
 
@@ -1818,6 +1854,7 @@ module Aws::SWF
1818
1854
  :events,
1819
1855
  :next_page_token,
1820
1856
  :previous_started_event_id)
1857
+ SENSITIVE = []
1821
1858
  include Aws::Structure
1822
1859
  end
1823
1860
 
@@ -1845,6 +1882,7 @@ module Aws::SWF
1845
1882
  :execution_context,
1846
1883
  :scheduled_event_id,
1847
1884
  :started_event_id)
1885
+ SENSITIVE = []
1848
1886
  include Aws::Structure
1849
1887
  end
1850
1888
 
@@ -1880,6 +1918,7 @@ module Aws::SWF
1880
1918
  :task_list,
1881
1919
  :task_priority,
1882
1920
  :start_to_close_timeout)
1921
+ SENSITIVE = []
1883
1922
  include Aws::Structure
1884
1923
  end
1885
1924
 
@@ -1901,6 +1940,7 @@ module Aws::SWF
1901
1940
  class DecisionTaskStartedEventAttributes < Struct.new(
1902
1941
  :identity,
1903
1942
  :scheduled_event_id)
1943
+ SENSITIVE = []
1904
1944
  include Aws::Structure
1905
1945
  end
1906
1946
 
@@ -1929,6 +1969,7 @@ module Aws::SWF
1929
1969
  :timeout_type,
1930
1970
  :scheduled_event_id,
1931
1971
  :started_event_id)
1972
+ SENSITIVE = []
1932
1973
  include Aws::Structure
1933
1974
  end
1934
1975
 
@@ -1952,6 +1993,7 @@ module Aws::SWF
1952
1993
  #
1953
1994
  class DefaultUndefinedFault < Struct.new(
1954
1995
  :message)
1996
+ SENSITIVE = []
1955
1997
  include Aws::Structure
1956
1998
  end
1957
1999
 
@@ -1977,6 +2019,7 @@ module Aws::SWF
1977
2019
  class DeprecateActivityTypeInput < Struct.new(
1978
2020
  :domain,
1979
2021
  :activity_type)
2022
+ SENSITIVE = []
1980
2023
  include Aws::Structure
1981
2024
  end
1982
2025
 
@@ -1993,6 +2036,7 @@ module Aws::SWF
1993
2036
  #
1994
2037
  class DeprecateDomainInput < Struct.new(
1995
2038
  :name)
2039
+ SENSITIVE = []
1996
2040
  include Aws::Structure
1997
2041
  end
1998
2042
 
@@ -2018,6 +2062,7 @@ module Aws::SWF
2018
2062
  class DeprecateWorkflowTypeInput < Struct.new(
2019
2063
  :domain,
2020
2064
  :workflow_type)
2065
+ SENSITIVE = []
2021
2066
  include Aws::Structure
2022
2067
  end
2023
2068
 
@@ -2045,6 +2090,7 @@ module Aws::SWF
2045
2090
  class DescribeActivityTypeInput < Struct.new(
2046
2091
  :domain,
2047
2092
  :activity_type)
2093
+ SENSITIVE = []
2048
2094
  include Aws::Structure
2049
2095
  end
2050
2096
 
@@ -2061,6 +2107,7 @@ module Aws::SWF
2061
2107
  #
2062
2108
  class DescribeDomainInput < Struct.new(
2063
2109
  :name)
2110
+ SENSITIVE = []
2064
2111
  include Aws::Structure
2065
2112
  end
2066
2113
 
@@ -2086,6 +2133,7 @@ module Aws::SWF
2086
2133
  class DescribeWorkflowExecutionInput < Struct.new(
2087
2134
  :domain,
2088
2135
  :execution)
2136
+ SENSITIVE = []
2089
2137
  include Aws::Structure
2090
2138
  end
2091
2139
 
@@ -2111,6 +2159,7 @@ module Aws::SWF
2111
2159
  class DescribeWorkflowTypeInput < Struct.new(
2112
2160
  :domain,
2113
2161
  :workflow_type)
2162
+ SENSITIVE = []
2114
2163
  include Aws::Structure
2115
2164
  end
2116
2165
 
@@ -2125,6 +2174,7 @@ module Aws::SWF
2125
2174
  #
2126
2175
  class DomainAlreadyExistsFault < Struct.new(
2127
2176
  :message)
2177
+ SENSITIVE = []
2128
2178
  include Aws::Structure
2129
2179
  end
2130
2180
 
@@ -2136,6 +2186,7 @@ module Aws::SWF
2136
2186
  #
2137
2187
  class DomainConfiguration < Struct.new(
2138
2188
  :workflow_execution_retention_period_in_days)
2189
+ SENSITIVE = []
2139
2190
  include Aws::Structure
2140
2191
  end
2141
2192
 
@@ -2147,6 +2198,7 @@ module Aws::SWF
2147
2198
  #
2148
2199
  class DomainDeprecatedFault < Struct.new(
2149
2200
  :message)
2201
+ SENSITIVE = []
2150
2202
  include Aws::Structure
2151
2203
  end
2152
2204
 
@@ -2165,6 +2217,7 @@ module Aws::SWF
2165
2217
  class DomainDetail < Struct.new(
2166
2218
  :domain_info,
2167
2219
  :configuration)
2220
+ SENSITIVE = []
2168
2221
  include Aws::Structure
2169
2222
  end
2170
2223
 
@@ -2199,6 +2252,7 @@ module Aws::SWF
2199
2252
  :status,
2200
2253
  :description,
2201
2254
  :arn)
2255
+ SENSITIVE = []
2202
2256
  include Aws::Structure
2203
2257
  end
2204
2258
 
@@ -2221,6 +2275,7 @@ module Aws::SWF
2221
2275
  class DomainInfos < Struct.new(
2222
2276
  :domain_infos,
2223
2277
  :next_page_token)
2278
+ SENSITIVE = []
2224
2279
  include Aws::Structure
2225
2280
  end
2226
2281
 
@@ -2253,6 +2308,7 @@ module Aws::SWF
2253
2308
  class ExecutionTimeFilter < Struct.new(
2254
2309
  :oldest_date,
2255
2310
  :latest_date)
2311
+ SENSITIVE = []
2256
2312
  include Aws::Structure
2257
2313
  end
2258
2314
 
@@ -2275,6 +2331,7 @@ module Aws::SWF
2275
2331
  class ExternalWorkflowExecutionCancelRequestedEventAttributes < Struct.new(
2276
2332
  :workflow_execution,
2277
2333
  :initiated_event_id)
2334
+ SENSITIVE = []
2278
2335
  include Aws::Structure
2279
2336
  end
2280
2337
 
@@ -2295,6 +2352,7 @@ module Aws::SWF
2295
2352
  class ExternalWorkflowExecutionSignaledEventAttributes < Struct.new(
2296
2353
  :workflow_execution,
2297
2354
  :initiated_event_id)
2355
+ SENSITIVE = []
2298
2356
  include Aws::Structure
2299
2357
  end
2300
2358
 
@@ -2343,6 +2401,7 @@ module Aws::SWF
2343
2401
  class FailWorkflowExecutionDecisionAttributes < Struct.new(
2344
2402
  :reason,
2345
2403
  :details)
2404
+ SENSITIVE = []
2346
2405
  include Aws::Structure
2347
2406
  end
2348
2407
 
@@ -2375,6 +2434,7 @@ module Aws::SWF
2375
2434
  class FailWorkflowExecutionFailedEventAttributes < Struct.new(
2376
2435
  :cause,
2377
2436
  :decision_task_completed_event_id)
2437
+ SENSITIVE = []
2378
2438
  include Aws::Structure
2379
2439
  end
2380
2440
 
@@ -2430,6 +2490,7 @@ module Aws::SWF
2430
2490
  :next_page_token,
2431
2491
  :maximum_page_size,
2432
2492
  :reverse_order)
2493
+ SENSITIVE = []
2433
2494
  include Aws::Structure
2434
2495
  end
2435
2496
 
@@ -2455,6 +2516,7 @@ module Aws::SWF
2455
2516
  class History < Struct.new(
2456
2517
  :events,
2457
2518
  :next_page_token)
2519
+ SENSITIVE = []
2458
2520
  include Aws::Structure
2459
2521
  end
2460
2522
 
@@ -3005,6 +3067,7 @@ module Aws::SWF
3005
3067
  :lambda_function_timed_out_event_attributes,
3006
3068
  :schedule_lambda_function_failed_event_attributes,
3007
3069
  :start_lambda_function_failed_event_attributes)
3070
+ SENSITIVE = []
3008
3071
  include Aws::Structure
3009
3072
  end
3010
3073
 
@@ -3032,6 +3095,7 @@ module Aws::SWF
3032
3095
  :scheduled_event_id,
3033
3096
  :started_event_id,
3034
3097
  :result)
3098
+ SENSITIVE = []
3035
3099
  include Aws::Structure
3036
3100
  end
3037
3101
 
@@ -3064,6 +3128,7 @@ module Aws::SWF
3064
3128
  :started_event_id,
3065
3129
  :reason,
3066
3130
  :details)
3131
+ SENSITIVE = []
3067
3132
  include Aws::Structure
3068
3133
  end
3069
3134
 
@@ -3106,6 +3171,7 @@ module Aws::SWF
3106
3171
  :input,
3107
3172
  :start_to_close_timeout,
3108
3173
  :decision_task_completed_event_id)
3174
+ SENSITIVE = []
3109
3175
  include Aws::Structure
3110
3176
  end
3111
3177
 
@@ -3121,6 +3187,7 @@ module Aws::SWF
3121
3187
  #
3122
3188
  class LambdaFunctionStartedEventAttributes < Struct.new(
3123
3189
  :scheduled_event_id)
3190
+ SENSITIVE = []
3124
3191
  include Aws::Structure
3125
3192
  end
3126
3193
 
@@ -3148,6 +3215,7 @@ module Aws::SWF
3148
3215
  :scheduled_event_id,
3149
3216
  :started_event_id,
3150
3217
  :timeout_type)
3218
+ SENSITIVE = []
3151
3219
  include Aws::Structure
3152
3220
  end
3153
3221
 
@@ -3161,6 +3229,7 @@ module Aws::SWF
3161
3229
  #
3162
3230
  class LimitExceededFault < Struct.new(
3163
3231
  :message)
3232
+ SENSITIVE = []
3164
3233
  include Aws::Structure
3165
3234
  end
3166
3235
 
@@ -3220,6 +3289,7 @@ module Aws::SWF
3220
3289
  :next_page_token,
3221
3290
  :maximum_page_size,
3222
3291
  :reverse_order)
3292
+ SENSITIVE = []
3223
3293
  include Aws::Structure
3224
3294
  end
3225
3295
 
@@ -3362,6 +3432,7 @@ module Aws::SWF
3362
3432
  :next_page_token,
3363
3433
  :maximum_page_size,
3364
3434
  :reverse_order)
3435
+ SENSITIVE = []
3365
3436
  include Aws::Structure
3366
3437
  end
3367
3438
 
@@ -3408,6 +3479,7 @@ module Aws::SWF
3408
3479
  :registration_status,
3409
3480
  :maximum_page_size,
3410
3481
  :reverse_order)
3482
+ SENSITIVE = []
3411
3483
  include Aws::Structure
3412
3484
  end
3413
3485
 
@@ -3508,6 +3580,7 @@ module Aws::SWF
3508
3580
  :maximum_page_size,
3509
3581
  :reverse_order,
3510
3582
  :execution_filter)
3583
+ SENSITIVE = []
3511
3584
  include Aws::Structure
3512
3585
  end
3513
3586
 
@@ -3524,6 +3597,7 @@ module Aws::SWF
3524
3597
  #
3525
3598
  class ListTagsForResourceInput < Struct.new(
3526
3599
  :resource_arn)
3600
+ SENSITIVE = []
3527
3601
  include Aws::Structure
3528
3602
  end
3529
3603
 
@@ -3533,6 +3607,7 @@ module Aws::SWF
3533
3607
  #
3534
3608
  class ListTagsForResourceOutput < Struct.new(
3535
3609
  :tags)
3610
+ SENSITIVE = []
3536
3611
  include Aws::Structure
3537
3612
  end
3538
3613
 
@@ -3592,6 +3667,7 @@ module Aws::SWF
3592
3667
  :next_page_token,
3593
3668
  :maximum_page_size,
3594
3669
  :reverse_order)
3670
+ SENSITIVE = []
3595
3671
  include Aws::Structure
3596
3672
  end
3597
3673
 
@@ -3617,6 +3693,7 @@ module Aws::SWF
3617
3693
  :marker_name,
3618
3694
  :details,
3619
3695
  :decision_task_completed_event_id)
3696
+ SENSITIVE = []
3620
3697
  include Aws::Structure
3621
3698
  end
3622
3699
 
@@ -3629,6 +3706,7 @@ module Aws::SWF
3629
3706
  #
3630
3707
  class OperationNotPermittedFault < Struct.new(
3631
3708
  :message)
3709
+ SENSITIVE = []
3632
3710
  include Aws::Structure
3633
3711
  end
3634
3712
 
@@ -3647,6 +3725,7 @@ module Aws::SWF
3647
3725
  class PendingTaskCount < Struct.new(
3648
3726
  :count,
3649
3727
  :truncated)
3728
+ SENSITIVE = []
3650
3729
  include Aws::Structure
3651
3730
  end
3652
3731
 
@@ -3685,6 +3764,7 @@ module Aws::SWF
3685
3764
  :domain,
3686
3765
  :task_list,
3687
3766
  :identity)
3767
+ SENSITIVE = []
3688
3768
  include Aws::Structure
3689
3769
  end
3690
3770
 
@@ -3764,6 +3844,7 @@ module Aws::SWF
3764
3844
  :next_page_token,
3765
3845
  :maximum_page_size,
3766
3846
  :reverse_order)
3847
+ SENSITIVE = []
3767
3848
  include Aws::Structure
3768
3849
  end
3769
3850
 
@@ -3791,6 +3872,7 @@ module Aws::SWF
3791
3872
  class RecordActivityTaskHeartbeatInput < Struct.new(
3792
3873
  :task_token,
3793
3874
  :details)
3875
+ SENSITIVE = []
3794
3876
  include Aws::Structure
3795
3877
  end
3796
3878
 
@@ -3839,6 +3921,7 @@ module Aws::SWF
3839
3921
  class RecordMarkerDecisionAttributes < Struct.new(
3840
3922
  :marker_name,
3841
3923
  :details)
3924
+ SENSITIVE = []
3842
3925
  include Aws::Structure
3843
3926
  end
3844
3927
 
@@ -3876,6 +3959,7 @@ module Aws::SWF
3876
3959
  :marker_name,
3877
3960
  :cause,
3878
3961
  :decision_task_completed_event_id)
3962
+ SENSITIVE = []
3879
3963
  include Aws::Structure
3880
3964
  end
3881
3965
 
@@ -4006,6 +4090,7 @@ module Aws::SWF
4006
4090
  :default_task_priority,
4007
4091
  :default_task_schedule_to_start_timeout,
4008
4092
  :default_task_schedule_to_close_timeout)
4093
+ SENSITIVE = []
4009
4094
  include Aws::Structure
4010
4095
  end
4011
4096
 
@@ -4069,6 +4154,7 @@ module Aws::SWF
4069
4154
  :description,
4070
4155
  :workflow_execution_retention_period_in_days,
4071
4156
  :tags)
4157
+ SENSITIVE = []
4072
4158
  include Aws::Structure
4073
4159
  end
4074
4160
 
@@ -4219,6 +4305,7 @@ module Aws::SWF
4219
4305
  :default_task_priority,
4220
4306
  :default_child_policy,
4221
4307
  :default_lambda_role)
4308
+ SENSITIVE = []
4222
4309
  include Aws::Structure
4223
4310
  end
4224
4311
 
@@ -4261,6 +4348,7 @@ module Aws::SWF
4261
4348
  #
4262
4349
  class RequestCancelActivityTaskDecisionAttributes < Struct.new(
4263
4350
  :activity_id)
4351
+ SENSITIVE = []
4264
4352
  include Aws::Structure
4265
4353
  end
4266
4354
 
@@ -4299,6 +4387,7 @@ module Aws::SWF
4299
4387
  :activity_id,
4300
4388
  :cause,
4301
4389
  :decision_task_completed_event_id)
4390
+ SENSITIVE = []
4302
4391
  include Aws::Structure
4303
4392
  end
4304
4393
 
@@ -4355,6 +4444,7 @@ module Aws::SWF
4355
4444
  :workflow_id,
4356
4445
  :run_id,
4357
4446
  :control)
4447
+ SENSITIVE = []
4358
4448
  include Aws::Structure
4359
4449
  end
4360
4450
 
@@ -4416,6 +4506,7 @@ module Aws::SWF
4416
4506
  :initiated_event_id,
4417
4507
  :decision_task_completed_event_id,
4418
4508
  :control)
4509
+ SENSITIVE = []
4419
4510
  include Aws::Structure
4420
4511
  end
4421
4512
 
@@ -4449,6 +4540,7 @@ module Aws::SWF
4449
4540
  :run_id,
4450
4541
  :decision_task_completed_event_id,
4451
4542
  :control)
4543
+ SENSITIVE = []
4452
4544
  include Aws::Structure
4453
4545
  end
4454
4546
 
@@ -4477,6 +4569,7 @@ module Aws::SWF
4477
4569
  :domain,
4478
4570
  :workflow_id,
4479
4571
  :run_id)
4572
+ SENSITIVE = []
4480
4573
  include Aws::Structure
4481
4574
  end
4482
4575
 
@@ -4505,6 +4598,7 @@ module Aws::SWF
4505
4598
  class ResourceTag < Struct.new(
4506
4599
  :key,
4507
4600
  :value)
4601
+ SENSITIVE = []
4508
4602
  include Aws::Structure
4509
4603
  end
4510
4604
 
@@ -4532,6 +4626,7 @@ module Aws::SWF
4532
4626
  class RespondActivityTaskCanceledInput < Struct.new(
4533
4627
  :task_token,
4534
4628
  :details)
4629
+ SENSITIVE = []
4535
4630
  include Aws::Structure
4536
4631
  end
4537
4632
 
@@ -4560,6 +4655,7 @@ module Aws::SWF
4560
4655
  class RespondActivityTaskCompletedInput < Struct.new(
4561
4656
  :task_token,
4562
4657
  :result)
4658
+ SENSITIVE = []
4563
4659
  include Aws::Structure
4564
4660
  end
4565
4661
 
@@ -4593,6 +4689,7 @@ module Aws::SWF
4593
4689
  :task_token,
4594
4690
  :reason,
4595
4691
  :details)
4692
+ SENSITIVE = []
4596
4693
  include Aws::Structure
4597
4694
  end
4598
4695
 
@@ -4726,6 +4823,7 @@ module Aws::SWF
4726
4823
  :task_token,
4727
4824
  :decisions,
4728
4825
  :execution_context)
4826
+ SENSITIVE = []
4729
4827
  include Aws::Structure
4730
4828
  end
4731
4829
 
@@ -4739,6 +4837,7 @@ module Aws::SWF
4739
4837
  #
4740
4838
  class Run < Struct.new(
4741
4839
  :run_id)
4840
+ SENSITIVE = []
4742
4841
  include Aws::Structure
4743
4842
  end
4744
4843
 
@@ -4926,6 +5025,7 @@ module Aws::SWF
4926
5025
  :schedule_to_start_timeout,
4927
5026
  :start_to_close_timeout,
4928
5027
  :heartbeat_timeout)
5028
+ SENSITIVE = []
4929
5029
  include Aws::Structure
4930
5030
  end
4931
5031
 
@@ -4969,6 +5069,7 @@ module Aws::SWF
4969
5069
  :activity_id,
4970
5070
  :cause,
4971
5071
  :decision_task_completed_event_id)
5072
+ SENSITIVE = []
4972
5073
  include Aws::Structure
4973
5074
  end
4974
5075
 
@@ -5018,6 +5119,7 @@ module Aws::SWF
5018
5119
  :control,
5019
5120
  :input,
5020
5121
  :start_to_close_timeout)
5122
+ SENSITIVE = []
5021
5123
  include Aws::Structure
5022
5124
  end
5023
5125
 
@@ -5062,6 +5164,7 @@ module Aws::SWF
5062
5164
  :name,
5063
5165
  :cause,
5064
5166
  :decision_task_completed_event_id)
5167
+ SENSITIVE = []
5065
5168
  include Aws::Structure
5066
5169
  end
5067
5170
 
@@ -5132,6 +5235,7 @@ module Aws::SWF
5132
5235
  :signal_name,
5133
5236
  :input,
5134
5237
  :control)
5238
+ SENSITIVE = []
5135
5239
  include Aws::Structure
5136
5240
  end
5137
5241
 
@@ -5193,6 +5297,7 @@ module Aws::SWF
5193
5297
  :initiated_event_id,
5194
5298
  :decision_task_completed_event_id,
5195
5299
  :control)
5300
+ SENSITIVE = []
5196
5301
  include Aws::Structure
5197
5302
  end
5198
5303
 
@@ -5236,6 +5341,7 @@ module Aws::SWF
5236
5341
  :input,
5237
5342
  :decision_task_completed_event_id,
5238
5343
  :control)
5344
+ SENSITIVE = []
5239
5345
  include Aws::Structure
5240
5346
  end
5241
5347
 
@@ -5278,6 +5384,7 @@ module Aws::SWF
5278
5384
  :run_id,
5279
5385
  :signal_name,
5280
5386
  :input)
5387
+ SENSITIVE = []
5281
5388
  include Aws::Structure
5282
5389
  end
5283
5390
 
@@ -5483,6 +5590,7 @@ module Aws::SWF
5483
5590
  :child_policy,
5484
5591
  :tag_list,
5485
5592
  :lambda_role)
5593
+ SENSITIVE = []
5486
5594
  include Aws::Structure
5487
5595
  end
5488
5596
 
@@ -5547,6 +5655,7 @@ module Aws::SWF
5547
5655
  :initiated_event_id,
5548
5656
  :decision_task_completed_event_id,
5549
5657
  :control)
5658
+ SENSITIVE = []
5550
5659
  include Aws::Structure
5551
5660
  end
5552
5661
 
@@ -5653,6 +5762,7 @@ module Aws::SWF
5653
5762
  :task_start_to_close_timeout,
5654
5763
  :tag_list,
5655
5764
  :lambda_role)
5765
+ SENSITIVE = []
5656
5766
  include Aws::Structure
5657
5767
  end
5658
5768
 
@@ -5691,6 +5801,7 @@ module Aws::SWF
5691
5801
  :scheduled_event_id,
5692
5802
  :cause,
5693
5803
  :message)
5804
+ SENSITIVE = []
5694
5805
  include Aws::Structure
5695
5806
  end
5696
5807
 
@@ -5754,6 +5865,7 @@ module Aws::SWF
5754
5865
  :timer_id,
5755
5866
  :control,
5756
5867
  :start_to_fire_timeout)
5868
+ SENSITIVE = []
5757
5869
  include Aws::Structure
5758
5870
  end
5759
5871
 
@@ -5791,6 +5903,7 @@ module Aws::SWF
5791
5903
  :timer_id,
5792
5904
  :cause,
5793
5905
  :decision_task_completed_event_id)
5906
+ SENSITIVE = []
5794
5907
  include Aws::Structure
5795
5908
  end
5796
5909
 
@@ -5981,6 +6094,7 @@ module Aws::SWF
5981
6094
  :task_start_to_close_timeout,
5982
6095
  :child_policy,
5983
6096
  :lambda_role)
6097
+ SENSITIVE = []
5984
6098
  include Aws::Structure
5985
6099
  end
5986
6100
 
@@ -6004,6 +6118,7 @@ module Aws::SWF
6004
6118
  #
6005
6119
  class TagFilter < Struct.new(
6006
6120
  :tag)
6121
+ SENSITIVE = []
6007
6122
  include Aws::Structure
6008
6123
  end
6009
6124
 
@@ -6034,6 +6149,7 @@ module Aws::SWF
6034
6149
  class TagResourceInput < Struct.new(
6035
6150
  :resource_arn,
6036
6151
  :tags)
6152
+ SENSITIVE = []
6037
6153
  include Aws::Structure
6038
6154
  end
6039
6155
 
@@ -6052,6 +6168,7 @@ module Aws::SWF
6052
6168
  #
6053
6169
  class TaskList < Struct.new(
6054
6170
  :name)
6171
+ SENSITIVE = []
6055
6172
  include Aws::Structure
6056
6173
  end
6057
6174
 
@@ -6120,6 +6237,7 @@ module Aws::SWF
6120
6237
  :reason,
6121
6238
  :details,
6122
6239
  :child_policy)
6240
+ SENSITIVE = []
6123
6241
  include Aws::Structure
6124
6242
  end
6125
6243
 
@@ -6146,6 +6264,7 @@ module Aws::SWF
6146
6264
  :timer_id,
6147
6265
  :started_event_id,
6148
6266
  :decision_task_completed_event_id)
6267
+ SENSITIVE = []
6149
6268
  include Aws::Structure
6150
6269
  end
6151
6270
 
@@ -6164,6 +6283,7 @@ module Aws::SWF
6164
6283
  class TimerFiredEventAttributes < Struct.new(
6165
6284
  :timer_id,
6166
6285
  :started_event_id)
6286
+ SENSITIVE = []
6167
6287
  include Aws::Structure
6168
6288
  end
6169
6289
 
@@ -6198,6 +6318,7 @@ module Aws::SWF
6198
6318
  :control,
6199
6319
  :start_to_fire_timeout,
6200
6320
  :decision_task_completed_event_id)
6321
+ SENSITIVE = []
6201
6322
  include Aws::Structure
6202
6323
  end
6203
6324
 
@@ -6208,6 +6329,7 @@ module Aws::SWF
6208
6329
  #
6209
6330
  class TooManyTagsFault < Struct.new(
6210
6331
  :message)
6332
+ SENSITIVE = []
6211
6333
  include Aws::Structure
6212
6334
  end
6213
6335
 
@@ -6222,6 +6344,7 @@ module Aws::SWF
6222
6344
  #
6223
6345
  class TypeAlreadyExistsFault < Struct.new(
6224
6346
  :message)
6347
+ SENSITIVE = []
6225
6348
  include Aws::Structure
6226
6349
  end
6227
6350
 
@@ -6234,6 +6357,7 @@ module Aws::SWF
6234
6357
  #
6235
6358
  class TypeDeprecatedFault < Struct.new(
6236
6359
  :message)
6360
+ SENSITIVE = []
6237
6361
  include Aws::Structure
6238
6362
  end
6239
6363
 
@@ -6259,6 +6383,7 @@ module Aws::SWF
6259
6383
  class UndeprecateActivityTypeInput < Struct.new(
6260
6384
  :domain,
6261
6385
  :activity_type)
6386
+ SENSITIVE = []
6262
6387
  include Aws::Structure
6263
6388
  end
6264
6389
 
@@ -6275,6 +6400,7 @@ module Aws::SWF
6275
6400
  #
6276
6401
  class UndeprecateDomainInput < Struct.new(
6277
6402
  :name)
6403
+ SENSITIVE = []
6278
6404
  include Aws::Structure
6279
6405
  end
6280
6406
 
@@ -6300,6 +6426,7 @@ module Aws::SWF
6300
6426
  class UndeprecateWorkflowTypeInput < Struct.new(
6301
6427
  :domain,
6302
6428
  :workflow_type)
6429
+ SENSITIVE = []
6303
6430
  include Aws::Structure
6304
6431
  end
6305
6432
 
@@ -6314,6 +6441,7 @@ module Aws::SWF
6314
6441
  #
6315
6442
  class UnknownResourceFault < Struct.new(
6316
6443
  :message)
6444
+ SENSITIVE = []
6317
6445
  include Aws::Structure
6318
6446
  end
6319
6447
 
@@ -6336,6 +6464,7 @@ module Aws::SWF
6336
6464
  class UntagResourceInput < Struct.new(
6337
6465
  :resource_arn,
6338
6466
  :tag_keys)
6467
+ SENSITIVE = []
6339
6468
  include Aws::Structure
6340
6469
  end
6341
6470
 
@@ -6360,6 +6489,7 @@ module Aws::SWF
6360
6489
  class WorkflowExecution < Struct.new(
6361
6490
  :workflow_id,
6362
6491
  :run_id)
6492
+ SENSITIVE = []
6363
6493
  include Aws::Structure
6364
6494
  end
6365
6495
 
@@ -6372,6 +6502,7 @@ module Aws::SWF
6372
6502
  #
6373
6503
  class WorkflowExecutionAlreadyStartedFault < Struct.new(
6374
6504
  :message)
6505
+ SENSITIVE = []
6375
6506
  include Aws::Structure
6376
6507
  end
6377
6508
 
@@ -6402,6 +6533,7 @@ module Aws::SWF
6402
6533
  :external_workflow_execution,
6403
6534
  :external_initiated_event_id,
6404
6535
  :cause)
6536
+ SENSITIVE = []
6405
6537
  include Aws::Structure
6406
6538
  end
6407
6539
 
@@ -6422,6 +6554,7 @@ module Aws::SWF
6422
6554
  class WorkflowExecutionCanceledEventAttributes < Struct.new(
6423
6555
  :details,
6424
6556
  :decision_task_completed_event_id)
6557
+ SENSITIVE = []
6425
6558
  include Aws::Structure
6426
6559
  end
6427
6560
 
@@ -6443,6 +6576,7 @@ module Aws::SWF
6443
6576
  class WorkflowExecutionCompletedEventAttributes < Struct.new(
6444
6577
  :result,
6445
6578
  :decision_task_completed_event_id)
6579
+ SENSITIVE = []
6446
6580
  include Aws::Structure
6447
6581
  end
6448
6582
 
@@ -6514,6 +6648,7 @@ module Aws::SWF
6514
6648
  :task_priority,
6515
6649
  :child_policy,
6516
6650
  :lambda_role)
6651
+ SENSITIVE = []
6517
6652
  include Aws::Structure
6518
6653
  end
6519
6654
 
@@ -6603,6 +6738,7 @@ module Aws::SWF
6603
6738
  :tag_list,
6604
6739
  :workflow_type,
6605
6740
  :lambda_role)
6741
+ SENSITIVE = []
6606
6742
  include Aws::Structure
6607
6743
  end
6608
6744
 
@@ -6622,6 +6758,7 @@ module Aws::SWF
6622
6758
  class WorkflowExecutionCount < Struct.new(
6623
6759
  :count,
6624
6760
  :truncated)
6761
+ SENSITIVE = []
6625
6762
  include Aws::Structure
6626
6763
  end
6627
6764
 
@@ -6661,6 +6798,7 @@ module Aws::SWF
6661
6798
  :open_counts,
6662
6799
  :latest_activity_task_timestamp,
6663
6800
  :latest_execution_context)
6801
+ SENSITIVE = []
6664
6802
  include Aws::Structure
6665
6803
  end
6666
6804
 
@@ -6686,6 +6824,7 @@ module Aws::SWF
6686
6824
  :reason,
6687
6825
  :details,
6688
6826
  :decision_task_completed_event_id)
6827
+ SENSITIVE = []
6689
6828
  include Aws::Structure
6690
6829
  end
6691
6830
 
@@ -6705,6 +6844,7 @@ module Aws::SWF
6705
6844
  #
6706
6845
  class WorkflowExecutionFilter < Struct.new(
6707
6846
  :workflow_id)
6847
+ SENSITIVE = []
6708
6848
  include Aws::Structure
6709
6849
  end
6710
6850
 
@@ -6780,6 +6920,7 @@ module Aws::SWF
6780
6920
  :parent,
6781
6921
  :tag_list,
6782
6922
  :cancel_requested)
6923
+ SENSITIVE = []
6783
6924
  include Aws::Structure
6784
6925
  end
6785
6926
 
@@ -6802,6 +6943,7 @@ module Aws::SWF
6802
6943
  class WorkflowExecutionInfos < Struct.new(
6803
6944
  :execution_infos,
6804
6945
  :next_page_token)
6946
+ SENSITIVE = []
6805
6947
  include Aws::Structure
6806
6948
  end
6807
6949
 
@@ -6836,6 +6978,7 @@ module Aws::SWF
6836
6978
  :open_timers,
6837
6979
  :open_child_workflow_executions,
6838
6980
  :open_lambda_functions)
6981
+ SENSITIVE = []
6839
6982
  include Aws::Structure
6840
6983
  end
6841
6984
 
@@ -6871,6 +7014,7 @@ module Aws::SWF
6871
7014
  :input,
6872
7015
  :external_workflow_execution,
6873
7016
  :external_initiated_event_id)
7017
+ SENSITIVE = []
6874
7018
  include Aws::Structure
6875
7019
  end
6876
7020
 
@@ -6969,6 +7113,7 @@ module Aws::SWF
6969
7113
  :parent_workflow_execution,
6970
7114
  :parent_initiated_event_id,
6971
7115
  :lambda_role)
7116
+ SENSITIVE = []
6972
7117
  include Aws::Structure
6973
7118
  end
6974
7119
 
@@ -7011,6 +7156,7 @@ module Aws::SWF
7011
7156
  :details,
7012
7157
  :child_policy,
7013
7158
  :cause)
7159
+ SENSITIVE = []
7014
7160
  include Aws::Structure
7015
7161
  end
7016
7162
 
@@ -7040,6 +7186,7 @@ module Aws::SWF
7040
7186
  class WorkflowExecutionTimedOutEventAttributes < Struct.new(
7041
7187
  :timeout_type,
7042
7188
  :child_policy)
7189
+ SENSITIVE = []
7043
7190
  include Aws::Structure
7044
7191
  end
7045
7192
 
@@ -7074,6 +7221,7 @@ module Aws::SWF
7074
7221
  class WorkflowType < Struct.new(
7075
7222
  :name,
7076
7223
  :version)
7224
+ SENSITIVE = []
7077
7225
  include Aws::Structure
7078
7226
  end
7079
7227
 
@@ -7177,6 +7325,7 @@ module Aws::SWF
7177
7325
  :default_task_priority,
7178
7326
  :default_child_policy,
7179
7327
  :default_lambda_role)
7328
+ SENSITIVE = []
7180
7329
  include Aws::Structure
7181
7330
  end
7182
7331
 
@@ -7205,6 +7354,7 @@ module Aws::SWF
7205
7354
  class WorkflowTypeDetail < Struct.new(
7206
7355
  :type_info,
7207
7356
  :configuration)
7357
+ SENSITIVE = []
7208
7358
  include Aws::Structure
7209
7359
  end
7210
7360
 
@@ -7231,6 +7381,7 @@ module Aws::SWF
7231
7381
  class WorkflowTypeFilter < Struct.new(
7232
7382
  :name,
7233
7383
  :version)
7384
+ SENSITIVE = []
7234
7385
  include Aws::Structure
7235
7386
  end
7236
7387
 
@@ -7263,6 +7414,7 @@ module Aws::SWF
7263
7414
  :description,
7264
7415
  :creation_date,
7265
7416
  :deprecation_date)
7417
+ SENSITIVE = []
7266
7418
  include Aws::Structure
7267
7419
  end
7268
7420
 
@@ -7286,6 +7438,7 @@ module Aws::SWF
7286
7438
  class WorkflowTypeInfos < Struct.new(
7287
7439
  :type_infos,
7288
7440
  :next_page_token)
7441
+ SENSITIVE = []
7289
7442
  include Aws::Structure
7290
7443
  end
7291
7444