aws-sdk-swf 1.18.0 → 1.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 924ac335b1168eb0515ac11776a630ae6a96f3b6
4
- data.tar.gz: b83802a1994b1cf0d275c1c3e9e4948f5ac50611
2
+ SHA256:
3
+ metadata.gz: 39ae785d1d733cc2c8600813d50fb621b60f638024a96ec35bff07f9fdde1ac6
4
+ data.tar.gz: 227ebeffd11f736fec555e7aba119bf34ad4ff7172abb55e2065602c60a01c2e
5
5
  SHA512:
6
- metadata.gz: 95c9e2f4d8d900a3f86a2d1d9824111a75b8e076cd583e1c105cb561075e970c615d2dd1a5f48467600d2e287125993cc06b1d3e0622b934e4c322ee6344c75c
7
- data.tar.gz: b0727e8ced4046cc203fb98dad1350f019b09ec44afa9e65fb3f9416029c878236804a3f2348e0988e95dc3a0f50bcc64ac2abbcc1e5acaf037f92f178677689
6
+ metadata.gz: d981d02cab8120971e070adf004df493e574efccd7dfbb971d0e2e7164be4f3a21edcfaa6a6910c99e3f688ba6be451fe24651c202c9bdd84661dbb25084c2ab
7
+ data.tar.gz: 88f4075a4ac706660f614afa0c000c496b8587aeb500eed3bb2a609bf5fd28b1f246de017094edc214d746c8a38ed4bffe1011ccf4128f27b1afde92fdcb8754
@@ -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:
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-swf/customizations'
42
44
  #
43
45
  # See {Errors} for more information.
44
46
  #
45
- # @service
47
+ # @!group service
46
48
  module Aws::SWF
47
49
 
48
- GEM_VERSION = '1.18.0'
50
+ GEM_VERSION = '1.23.0'
49
51
 
50
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'
@@ -33,11 +36,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:swf)
33
36
  module Aws::SWF
34
37
  # An API client for SWF. To construct a client, you need to configure a `:region` and `:credentials`.
35
38
  #
36
- # client = Aws::SWF::Client.new(
37
- # region: region_name,
38
- # credentials: credentials,
39
- # # ...
40
- # )
39
+ # client = Aws::SWF::Client.new(
40
+ # region: region_name,
41
+ # credentials: credentials,
42
+ # # ...
43
+ # )
41
44
  #
42
45
  # For details on configuring region and credentials see
43
46
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -70,6 +73,7 @@ module Aws::SWF
70
73
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
71
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
72
75
  add_plugin(Aws::Plugins::TransferEncoding)
76
+ add_plugin(Aws::Plugins::HttpChecksum)
73
77
  add_plugin(Aws::Plugins::SignatureV4)
74
78
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
75
79
  add_plugin(Aws::SWF::Plugins::ReadTimeouts)
@@ -83,13 +87,28 @@ module Aws::SWF
83
87
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
84
88
  # credentials.
85
89
  #
90
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
91
+ # shared file, such as `~/.aws/config`.
92
+ #
93
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
94
+ #
95
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
96
+ # assume a role after providing credentials via the web.
97
+ #
98
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
99
+ # access token generated from `aws login`.
100
+ #
101
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
102
+ # process that outputs to stdout.
103
+ #
86
104
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
87
105
  # from an EC2 IMDS on an EC2 instance.
88
106
  #
89
- # * `Aws::SharedCredentials` - Used for loading credentials from a
90
- # shared file, such as `~/.aws/config`.
107
+ # * `Aws::ECSCredentials` - Used for loading credentials from
108
+ # instances running in ECS.
91
109
  #
92
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
110
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
111
+ # from the Cognito Identity service.
93
112
  #
94
113
  # When `:credentials` are not configured directly, the following
95
114
  # locations will be searched for credentials:
@@ -99,15 +118,15 @@ module Aws::SWF
99
118
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
100
119
  # * `~/.aws/credentials`
101
120
  # * `~/.aws/config`
102
- # * EC2 IMDS instance profile - When used by default, the timeouts are
103
- # very aggressive. Construct and pass an instance of
104
- # `Aws::InstanceProfileCredentails` to enable retries and extended
105
- # timeouts.
121
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
122
+ # are very aggressive. Construct and pass an instance of
123
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
124
+ # enable retries and extended timeouts.
106
125
  #
107
126
  # @option options [required, String] :region
108
127
  # The AWS region to connect to. The configured `:region` is
109
128
  # used to determine the service `:endpoint`. When not passed,
110
- # a default `:region` is search for in the following locations:
129
+ # a default `:region` is searched for in the following locations:
111
130
  #
112
131
  # * `Aws.config[:region]`
113
132
  # * `ENV['AWS_REGION']`
@@ -163,7 +182,7 @@ module Aws::SWF
163
182
  # @option options [String] :endpoint
164
183
  # The client endpoint is normally constructed from the `:region`
165
184
  # option. You should only configure an `:endpoint` when connecting
166
- # to test endpoints. This should be avalid HTTP(S) URI.
185
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
167
186
  #
168
187
  # @option options [Integer] :endpoint_cache_max_entries (1000)
169
188
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -178,7 +197,7 @@ module Aws::SWF
178
197
  # requests fetching endpoints information. Defaults to 60 sec.
179
198
  #
180
199
  # @option options [Boolean] :endpoint_discovery (false)
181
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
200
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
182
201
  #
183
202
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
184
203
  # The log formatter.
@@ -231,15 +250,19 @@ module Aws::SWF
231
250
  #
232
251
  # @option options [String] :retry_mode ("legacy")
233
252
  # Specifies which retry algorithm to use. Values are:
234
- # * `legacy` - The pre-existing retry behavior. This is default value if
235
- # no retry mode is provided.
236
- # * `standard` - A standardized set of retry rules across the AWS SDKs.
237
- # This includes support for retry quotas, which limit the number of
238
- # unsuccessful retries a client can make.
239
- # * `adaptive` - An experimental retry mode that includes all the
240
- # functionality of `standard` mode along with automatic client side
241
- # throttling. This is a provisional mode that may change behavior
242
- # in the future.
253
+ #
254
+ # * `legacy` - The pre-existing retry behavior. This is default value if
255
+ # no retry mode is provided.
256
+ #
257
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
258
+ # This includes support for retry quotas, which limit the number of
259
+ # unsuccessful retries a client can make.
260
+ #
261
+ # * `adaptive` - An experimental retry mode that includes all the
262
+ # functionality of `standard` mode along with automatic client side
263
+ # throttling. This is a provisional mode that may change behavior
264
+ # in the future.
265
+ #
243
266
  #
244
267
  # @option options [String] :secret_access_key
245
268
  #
@@ -277,8 +300,7 @@ module Aws::SWF
277
300
  #
278
301
  # @option options [Integer] :http_read_timeout (60) The default
279
302
  # number of seconds to wait for response data. This value can
280
- # safely be set
281
- # per-request on the session yielded by {#session_for}.
303
+ # safely be set per-request on the session.
282
304
  #
283
305
  # @option options [Float] :http_idle_timeout (5) The number of
284
306
  # seconds a connection is allowed to sit idle before it is
@@ -290,7 +312,7 @@ module Aws::SWF
290
312
  # request body. This option has no effect unless the request has
291
313
  # "Expect" header set to "100-continue". Defaults to `nil` which
292
314
  # disables this behaviour. This value can safely be set per
293
- # request on the session yielded by {#session_for}.
315
+ # request on the session.
294
316
  #
295
317
  # @option options [Boolean] :http_wire_trace (false) When `true`,
296
318
  # HTTP debug output will be sent to the `:logger`.
@@ -1261,6 +1283,8 @@ module Aws::SWF
1261
1283
  # * {Types::History#events #events} => Array<Types::HistoryEvent>
1262
1284
  # * {Types::History#next_page_token #next_page_token} => String
1263
1285
  #
1286
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1287
+ #
1264
1288
  # @example Request syntax with placeholder values
1265
1289
  #
1266
1290
  # resp = client.get_workflow_execution_history({
@@ -1598,6 +1622,8 @@ module Aws::SWF
1598
1622
  # * {Types::ActivityTypeInfos#type_infos #type_infos} => Array<Types::ActivityTypeInfo>
1599
1623
  # * {Types::ActivityTypeInfos#next_page_token #next_page_token} => String
1600
1624
  #
1625
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1626
+ #
1601
1627
  # @example Request syntax with placeholder values
1602
1628
  #
1603
1629
  # resp = client.list_activity_types({
@@ -1762,6 +1788,8 @@ module Aws::SWF
1762
1788
  # * {Types::WorkflowExecutionInfos#execution_infos #execution_infos} => Array<Types::WorkflowExecutionInfo>
1763
1789
  # * {Types::WorkflowExecutionInfos#next_page_token #next_page_token} => String
1764
1790
  #
1791
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1792
+ #
1765
1793
  # @example Request syntax with placeholder values
1766
1794
  #
1767
1795
  # resp = client.list_closed_workflow_executions({
@@ -1881,6 +1909,8 @@ module Aws::SWF
1881
1909
  # * {Types::DomainInfos#domain_infos #domain_infos} => Array<Types::DomainInfo>
1882
1910
  # * {Types::DomainInfos#next_page_token #next_page_token} => String
1883
1911
  #
1912
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1913
+ #
1884
1914
  # @example Request syntax with placeholder values
1885
1915
  #
1886
1916
  # resp = client.list_domains({
@@ -2010,6 +2040,8 @@ module Aws::SWF
2010
2040
  # * {Types::WorkflowExecutionInfos#execution_infos #execution_infos} => Array<Types::WorkflowExecutionInfo>
2011
2041
  # * {Types::WorkflowExecutionInfos#next_page_token #next_page_token} => String
2012
2042
  #
2043
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2044
+ #
2013
2045
  # @example Request syntax with placeholder values
2014
2046
  #
2015
2047
  # resp = client.list_open_workflow_executions({
@@ -2150,6 +2182,8 @@ module Aws::SWF
2150
2182
  # * {Types::WorkflowTypeInfos#type_infos #type_infos} => Array<Types::WorkflowTypeInfo>
2151
2183
  # * {Types::WorkflowTypeInfos#next_page_token #next_page_token} => String
2152
2184
  #
2185
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2186
+ #
2153
2187
  # @example Request syntax with placeholder values
2154
2188
  #
2155
2189
  # resp = client.list_workflow_types({
@@ -2383,6 +2417,8 @@ module Aws::SWF
2383
2417
  # * {Types::DecisionTask#next_page_token #next_page_token} => String
2384
2418
  # * {Types::DecisionTask#previous_started_event_id #previous_started_event_id} => Integer
2385
2419
  #
2420
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2421
+ #
2386
2422
  # @example Request syntax with placeholder values
2387
2423
  #
2388
2424
  # resp = client.poll_for_decision_task({
@@ -4252,7 +4288,7 @@ module Aws::SWF
4252
4288
  params: params,
4253
4289
  config: config)
4254
4290
  context[:gem_name] = 'aws-sdk-swf'
4255
- context[:gem_version] = '1.18.0'
4291
+ context[:gem_version] = '1.23.0'
4256
4292
  Seahorse::Client::Request.new(handlers, context)
4257
4293
  end
4258
4294
 
@@ -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:
@@ -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,13 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::SWF
9
- # This class provides a resource oriented interface for SWF.
10
- # To create a resource object:
11
- # resource = Aws::SWF::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::SWF::Client.new(region: 'us-west-2')
15
- # resource = Aws::SWF::Resource.new(client: client)
11
+
16
12
  class Resource
17
13
 
18
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