aws-sdk-states 1.28.0 → 1.33.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 +4 -4
- data/lib/aws-sdk-states.rb +4 -2
- data/lib/aws-sdk-states/client.rb +53 -10
- data/lib/aws-sdk-states/client_api.rb +28 -1
- data/lib/aws-sdk-states/errors.rb +2 -0
- data/lib/aws-sdk-states/resource.rb +2 -0
- data/lib/aws-sdk-states/types.rb +252 -24
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 481869863fe20140052bdfe49eca82786110d3581656bdd85d14a058fe787813
|
4
|
+
data.tar.gz: 011f2b599887f72c8fe81b8640a13c9af3758798058954b928ffbd3fc27255e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ec6f1fa4d8ffc8ea1e7e93f96c40b5d62b4376486aa8a37a585b5c87893a8763caeba83570a2f815c604058ea90986f83ae7335a1f8846b2ef8c9845fcdc90e
|
7
|
+
data.tar.gz: 60020ca15b70f6a90f867d1ecc8da2861d187d30bad571555993dd241e98523228b06e634961a71b9b022bc144497926917762cb75c4af8b06cbaa4784102b51
|
data/lib/aws-sdk-states.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-states/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::States
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.33.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
|
|
@@ -69,6 +72,7 @@ module Aws::States
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::States
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::States
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::States
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -657,7 +676,9 @@ module Aws::States
|
|
657
676
|
# * {Types::DescribeExecutionOutput#start_date #start_date} => Time
|
658
677
|
# * {Types::DescribeExecutionOutput#stop_date #stop_date} => Time
|
659
678
|
# * {Types::DescribeExecutionOutput#input #input} => String
|
679
|
+
# * {Types::DescribeExecutionOutput#input_details #input_details} => Types::CloudWatchEventsExecutionDataDetails
|
660
680
|
# * {Types::DescribeExecutionOutput#output #output} => String
|
681
|
+
# * {Types::DescribeExecutionOutput#output_details #output_details} => Types::CloudWatchEventsExecutionDataDetails
|
661
682
|
#
|
662
683
|
# @example Request syntax with placeholder values
|
663
684
|
#
|
@@ -674,7 +695,9 @@ module Aws::States
|
|
674
695
|
# resp.start_date #=> Time
|
675
696
|
# resp.stop_date #=> Time
|
676
697
|
# resp.input #=> String
|
698
|
+
# resp.input_details.included #=> Boolean
|
677
699
|
# resp.output #=> String
|
700
|
+
# resp.output_details.included #=> Boolean
|
678
701
|
#
|
679
702
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/DescribeExecution AWS API Documentation
|
680
703
|
#
|
@@ -876,6 +899,10 @@ module Aws::States
|
|
876
899
|
# after 24 hours. Using an expired pagination token will return an *HTTP
|
877
900
|
# 400 InvalidToken* error.
|
878
901
|
#
|
902
|
+
# @option params [Boolean] :include_execution_data
|
903
|
+
# You can select whether execution data (input or output of a history
|
904
|
+
# event) is returned. The default is `true`.
|
905
|
+
#
|
879
906
|
# @return [Types::GetExecutionHistoryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
880
907
|
#
|
881
908
|
# * {Types::GetExecutionHistoryOutput#events #events} => Array<Types::HistoryEvent>
|
@@ -890,6 +917,7 @@ module Aws::States
|
|
890
917
|
# max_results: 1,
|
891
918
|
# reverse_order: false,
|
892
919
|
# next_token: "PageToken",
|
920
|
+
# include_execution_data: false,
|
893
921
|
# })
|
894
922
|
#
|
895
923
|
# @example Response structure
|
@@ -905,10 +933,12 @@ module Aws::States
|
|
905
933
|
# resp.events[0].activity_schedule_failed_event_details.cause #=> String
|
906
934
|
# resp.events[0].activity_scheduled_event_details.resource #=> String
|
907
935
|
# resp.events[0].activity_scheduled_event_details.input #=> String
|
936
|
+
# resp.events[0].activity_scheduled_event_details.input_details.truncated #=> Boolean
|
908
937
|
# resp.events[0].activity_scheduled_event_details.timeout_in_seconds #=> Integer
|
909
938
|
# resp.events[0].activity_scheduled_event_details.heartbeat_in_seconds #=> Integer
|
910
939
|
# resp.events[0].activity_started_event_details.worker_name #=> String
|
911
940
|
# resp.events[0].activity_succeeded_event_details.output #=> String
|
941
|
+
# resp.events[0].activity_succeeded_event_details.output_details.truncated #=> Boolean
|
912
942
|
# resp.events[0].activity_timed_out_event_details.error #=> String
|
913
943
|
# resp.events[0].activity_timed_out_event_details.cause #=> String
|
914
944
|
# resp.events[0].task_failed_event_details.resource_type #=> String
|
@@ -920,6 +950,7 @@ module Aws::States
|
|
920
950
|
# resp.events[0].task_scheduled_event_details.region #=> String
|
921
951
|
# resp.events[0].task_scheduled_event_details.parameters #=> String
|
922
952
|
# resp.events[0].task_scheduled_event_details.timeout_in_seconds #=> Integer
|
953
|
+
# resp.events[0].task_scheduled_event_details.heartbeat_in_seconds #=> Integer
|
923
954
|
# resp.events[0].task_start_failed_event_details.resource_type #=> String
|
924
955
|
# resp.events[0].task_start_failed_event_details.resource #=> String
|
925
956
|
# resp.events[0].task_start_failed_event_details.error #=> String
|
@@ -933,9 +964,11 @@ module Aws::States
|
|
933
964
|
# resp.events[0].task_submitted_event_details.resource_type #=> String
|
934
965
|
# resp.events[0].task_submitted_event_details.resource #=> String
|
935
966
|
# resp.events[0].task_submitted_event_details.output #=> String
|
967
|
+
# resp.events[0].task_submitted_event_details.output_details.truncated #=> Boolean
|
936
968
|
# resp.events[0].task_succeeded_event_details.resource_type #=> String
|
937
969
|
# resp.events[0].task_succeeded_event_details.resource #=> String
|
938
970
|
# resp.events[0].task_succeeded_event_details.output #=> String
|
971
|
+
# resp.events[0].task_succeeded_event_details.output_details.truncated #=> Boolean
|
939
972
|
# resp.events[0].task_timed_out_event_details.resource_type #=> String
|
940
973
|
# resp.events[0].task_timed_out_event_details.resource #=> String
|
941
974
|
# resp.events[0].task_timed_out_event_details.error #=> String
|
@@ -943,8 +976,10 @@ module Aws::States
|
|
943
976
|
# resp.events[0].execution_failed_event_details.error #=> String
|
944
977
|
# resp.events[0].execution_failed_event_details.cause #=> String
|
945
978
|
# resp.events[0].execution_started_event_details.input #=> String
|
979
|
+
# resp.events[0].execution_started_event_details.input_details.truncated #=> Boolean
|
946
980
|
# resp.events[0].execution_started_event_details.role_arn #=> String
|
947
981
|
# resp.events[0].execution_succeeded_event_details.output #=> String
|
982
|
+
# resp.events[0].execution_succeeded_event_details.output_details.truncated #=> Boolean
|
948
983
|
# resp.events[0].execution_aborted_event_details.error #=> String
|
949
984
|
# resp.events[0].execution_aborted_event_details.cause #=> String
|
950
985
|
# resp.events[0].execution_timed_out_event_details.error #=> String
|
@@ -964,16 +999,20 @@ module Aws::States
|
|
964
999
|
# resp.events[0].lambda_function_schedule_failed_event_details.cause #=> String
|
965
1000
|
# resp.events[0].lambda_function_scheduled_event_details.resource #=> String
|
966
1001
|
# resp.events[0].lambda_function_scheduled_event_details.input #=> String
|
1002
|
+
# resp.events[0].lambda_function_scheduled_event_details.input_details.truncated #=> Boolean
|
967
1003
|
# resp.events[0].lambda_function_scheduled_event_details.timeout_in_seconds #=> Integer
|
968
1004
|
# resp.events[0].lambda_function_start_failed_event_details.error #=> String
|
969
1005
|
# resp.events[0].lambda_function_start_failed_event_details.cause #=> String
|
970
1006
|
# resp.events[0].lambda_function_succeeded_event_details.output #=> String
|
1007
|
+
# resp.events[0].lambda_function_succeeded_event_details.output_details.truncated #=> Boolean
|
971
1008
|
# resp.events[0].lambda_function_timed_out_event_details.error #=> String
|
972
1009
|
# resp.events[0].lambda_function_timed_out_event_details.cause #=> String
|
973
1010
|
# resp.events[0].state_entered_event_details.name #=> String
|
974
1011
|
# resp.events[0].state_entered_event_details.input #=> String
|
1012
|
+
# resp.events[0].state_entered_event_details.input_details.truncated #=> Boolean
|
975
1013
|
# resp.events[0].state_exited_event_details.name #=> String
|
976
1014
|
# resp.events[0].state_exited_event_details.output #=> String
|
1015
|
+
# resp.events[0].state_exited_event_details.output_details.truncated #=> Boolean
|
977
1016
|
# resp.next_token #=> String
|
978
1017
|
#
|
979
1018
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/GetExecutionHistory AWS API Documentation
|
@@ -1331,7 +1370,8 @@ module Aws::States
|
|
1331
1370
|
# [1]: https://docs.aws.amazon.com/step-functions/latest/dg/input-output-contextobject.html
|
1332
1371
|
#
|
1333
1372
|
# @option params [required, String] :output
|
1334
|
-
# The JSON output of the task.
|
1373
|
+
# The JSON output of the task. Length constraints apply to the payload
|
1374
|
+
# size, and are expressed as bytes in UTF-8 encoding.
|
1335
1375
|
#
|
1336
1376
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1337
1377
|
#
|
@@ -1400,6 +1440,9 @@ module Aws::States
|
|
1400
1440
|
#
|
1401
1441
|
# </note>
|
1402
1442
|
#
|
1443
|
+
# Length constraints apply to the payload size, and are expressed as
|
1444
|
+
# bytes in UTF-8 encoding.
|
1445
|
+
#
|
1403
1446
|
# @return [Types::StartExecutionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1404
1447
|
#
|
1405
1448
|
# * {Types::StartExecutionOutput#execution_arn #execution_arn} => String
|
@@ -1619,7 +1662,7 @@ module Aws::States
|
|
1619
1662
|
params: params,
|
1620
1663
|
config: config)
|
1621
1664
|
context[:gem_name] = 'aws-sdk-states'
|
1622
|
-
context[:gem_version] = '1.
|
1665
|
+
context[:gem_version] = '1.33.0'
|
1623
1666
|
Seahorse::Client::Request.new(handlers, context)
|
1624
1667
|
end
|
1625
1668
|
|
@@ -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:
|
@@ -23,6 +25,7 @@ module Aws::States
|
|
23
25
|
ActivityTimedOutEventDetails = Shapes::StructureShape.new(name: 'ActivityTimedOutEventDetails')
|
24
26
|
ActivityWorkerLimitExceeded = Shapes::StructureShape.new(name: 'ActivityWorkerLimitExceeded')
|
25
27
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
28
|
+
CloudWatchEventsExecutionDataDetails = Shapes::StructureShape.new(name: 'CloudWatchEventsExecutionDataDetails')
|
26
29
|
CloudWatchLogsLogGroup = Shapes::StructureShape.new(name: 'CloudWatchLogsLogGroup')
|
27
30
|
ConnectorParameters = Shapes::StringShape.new(name: 'ConnectorParameters')
|
28
31
|
CreateActivityInput = Shapes::StructureShape.new(name: 'CreateActivityInput')
|
@@ -60,10 +63,12 @@ module Aws::States
|
|
60
63
|
GetExecutionHistoryInput = Shapes::StructureShape.new(name: 'GetExecutionHistoryInput')
|
61
64
|
GetExecutionHistoryOutput = Shapes::StructureShape.new(name: 'GetExecutionHistoryOutput')
|
62
65
|
HistoryEvent = Shapes::StructureShape.new(name: 'HistoryEvent')
|
66
|
+
HistoryEventExecutionDataDetails = Shapes::StructureShape.new(name: 'HistoryEventExecutionDataDetails')
|
63
67
|
HistoryEventList = Shapes::ListShape.new(name: 'HistoryEventList')
|
64
68
|
HistoryEventType = Shapes::StringShape.new(name: 'HistoryEventType')
|
65
69
|
Identity = Shapes::StringShape.new(name: 'Identity')
|
66
70
|
IncludeExecutionData = Shapes::BooleanShape.new(name: 'IncludeExecutionData')
|
71
|
+
IncludeExecutionDataGetExecutionHistory = Shapes::BooleanShape.new(name: 'IncludeExecutionDataGetExecutionHistory')
|
67
72
|
InvalidArn = Shapes::StructureShape.new(name: 'InvalidArn')
|
68
73
|
InvalidDefinition = Shapes::StructureShape.new(name: 'InvalidDefinition')
|
69
74
|
InvalidExecutionInput = Shapes::StructureShape.new(name: 'InvalidExecutionInput')
|
@@ -149,6 +154,8 @@ module Aws::States
|
|
149
154
|
UntagResourceOutput = Shapes::StructureShape.new(name: 'UntagResourceOutput')
|
150
155
|
UpdateStateMachineInput = Shapes::StructureShape.new(name: 'UpdateStateMachineInput')
|
151
156
|
UpdateStateMachineOutput = Shapes::StructureShape.new(name: 'UpdateStateMachineOutput')
|
157
|
+
included = Shapes::BooleanShape.new(name: 'included')
|
158
|
+
truncated = Shapes::BooleanShape.new(name: 'truncated')
|
152
159
|
|
153
160
|
ActivityDoesNotExist.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
154
161
|
ActivityDoesNotExist.struct_class = Types::ActivityDoesNotExist
|
@@ -173,6 +180,7 @@ module Aws::States
|
|
173
180
|
|
174
181
|
ActivityScheduledEventDetails.add_member(:resource, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "resource"))
|
175
182
|
ActivityScheduledEventDetails.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "input"))
|
183
|
+
ActivityScheduledEventDetails.add_member(:input_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "inputDetails"))
|
176
184
|
ActivityScheduledEventDetails.add_member(:timeout_in_seconds, Shapes::ShapeRef.new(shape: TimeoutInSeconds, location_name: "timeoutInSeconds", metadata: {"box"=>true}))
|
177
185
|
ActivityScheduledEventDetails.add_member(:heartbeat_in_seconds, Shapes::ShapeRef.new(shape: TimeoutInSeconds, location_name: "heartbeatInSeconds", metadata: {"box"=>true}))
|
178
186
|
ActivityScheduledEventDetails.struct_class = Types::ActivityScheduledEventDetails
|
@@ -181,6 +189,7 @@ module Aws::States
|
|
181
189
|
ActivityStartedEventDetails.struct_class = Types::ActivityStartedEventDetails
|
182
190
|
|
183
191
|
ActivitySucceededEventDetails.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
192
|
+
ActivitySucceededEventDetails.add_member(:output_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "outputDetails"))
|
184
193
|
ActivitySucceededEventDetails.struct_class = Types::ActivitySucceededEventDetails
|
185
194
|
|
186
195
|
ActivityTimedOutEventDetails.add_member(:error, Shapes::ShapeRef.new(shape: SensitiveError, location_name: "error"))
|
@@ -190,6 +199,9 @@ module Aws::States
|
|
190
199
|
ActivityWorkerLimitExceeded.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
191
200
|
ActivityWorkerLimitExceeded.struct_class = Types::ActivityWorkerLimitExceeded
|
192
201
|
|
202
|
+
CloudWatchEventsExecutionDataDetails.add_member(:included, Shapes::ShapeRef.new(shape: included, location_name: "included"))
|
203
|
+
CloudWatchEventsExecutionDataDetails.struct_class = Types::CloudWatchEventsExecutionDataDetails
|
204
|
+
|
193
205
|
CloudWatchLogsLogGroup.add_member(:log_group_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "logGroupArn"))
|
194
206
|
CloudWatchLogsLogGroup.struct_class = Types::CloudWatchLogsLogGroup
|
195
207
|
|
@@ -240,8 +252,10 @@ module Aws::States
|
|
240
252
|
DescribeExecutionOutput.add_member(:status, Shapes::ShapeRef.new(shape: ExecutionStatus, required: true, location_name: "status"))
|
241
253
|
DescribeExecutionOutput.add_member(:start_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "startDate"))
|
242
254
|
DescribeExecutionOutput.add_member(:stop_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "stopDate"))
|
243
|
-
DescribeExecutionOutput.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveData,
|
255
|
+
DescribeExecutionOutput.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "input"))
|
256
|
+
DescribeExecutionOutput.add_member(:input_details, Shapes::ShapeRef.new(shape: CloudWatchEventsExecutionDataDetails, location_name: "inputDetails"))
|
244
257
|
DescribeExecutionOutput.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
258
|
+
DescribeExecutionOutput.add_member(:output_details, Shapes::ShapeRef.new(shape: CloudWatchEventsExecutionDataDetails, location_name: "outputDetails"))
|
245
259
|
DescribeExecutionOutput.struct_class = Types::DescribeExecutionOutput
|
246
260
|
|
247
261
|
DescribeStateMachineForExecutionInput.add_member(:execution_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "executionArn"))
|
@@ -296,10 +310,12 @@ module Aws::States
|
|
296
310
|
ExecutionListItem.struct_class = Types::ExecutionListItem
|
297
311
|
|
298
312
|
ExecutionStartedEventDetails.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "input"))
|
313
|
+
ExecutionStartedEventDetails.add_member(:input_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "inputDetails"))
|
299
314
|
ExecutionStartedEventDetails.add_member(:role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "roleArn"))
|
300
315
|
ExecutionStartedEventDetails.struct_class = Types::ExecutionStartedEventDetails
|
301
316
|
|
302
317
|
ExecutionSucceededEventDetails.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
318
|
+
ExecutionSucceededEventDetails.add_member(:output_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "outputDetails"))
|
303
319
|
ExecutionSucceededEventDetails.struct_class = Types::ExecutionSucceededEventDetails
|
304
320
|
|
305
321
|
ExecutionTimedOutEventDetails.add_member(:error, Shapes::ShapeRef.new(shape: SensitiveError, location_name: "error"))
|
@@ -318,6 +334,7 @@ module Aws::States
|
|
318
334
|
GetExecutionHistoryInput.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "maxResults"))
|
319
335
|
GetExecutionHistoryInput.add_member(:reverse_order, Shapes::ShapeRef.new(shape: ReverseOrder, location_name: "reverseOrder"))
|
320
336
|
GetExecutionHistoryInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PageToken, location_name: "nextToken"))
|
337
|
+
GetExecutionHistoryInput.add_member(:include_execution_data, Shapes::ShapeRef.new(shape: IncludeExecutionDataGetExecutionHistory, location_name: "includeExecutionData"))
|
321
338
|
GetExecutionHistoryInput.struct_class = Types::GetExecutionHistoryInput
|
322
339
|
|
323
340
|
GetExecutionHistoryOutput.add_member(:events, Shapes::ShapeRef.new(shape: HistoryEventList, required: true, location_name: "events"))
|
@@ -362,6 +379,9 @@ module Aws::States
|
|
362
379
|
HistoryEvent.add_member(:state_exited_event_details, Shapes::ShapeRef.new(shape: StateExitedEventDetails, location_name: "stateExitedEventDetails"))
|
363
380
|
HistoryEvent.struct_class = Types::HistoryEvent
|
364
381
|
|
382
|
+
HistoryEventExecutionDataDetails.add_member(:truncated, Shapes::ShapeRef.new(shape: truncated, location_name: "truncated"))
|
383
|
+
HistoryEventExecutionDataDetails.struct_class = Types::HistoryEventExecutionDataDetails
|
384
|
+
|
365
385
|
HistoryEventList.member = Shapes::ShapeRef.new(shape: HistoryEvent)
|
366
386
|
|
367
387
|
InvalidArn.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -395,6 +415,7 @@ module Aws::States
|
|
395
415
|
|
396
416
|
LambdaFunctionScheduledEventDetails.add_member(:resource, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "resource"))
|
397
417
|
LambdaFunctionScheduledEventDetails.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "input"))
|
418
|
+
LambdaFunctionScheduledEventDetails.add_member(:input_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "inputDetails"))
|
398
419
|
LambdaFunctionScheduledEventDetails.add_member(:timeout_in_seconds, Shapes::ShapeRef.new(shape: TimeoutInSeconds, location_name: "timeoutInSeconds", metadata: {"box"=>true}))
|
399
420
|
LambdaFunctionScheduledEventDetails.struct_class = Types::LambdaFunctionScheduledEventDetails
|
400
421
|
|
@@ -403,6 +424,7 @@ module Aws::States
|
|
403
424
|
LambdaFunctionStartFailedEventDetails.struct_class = Types::LambdaFunctionStartFailedEventDetails
|
404
425
|
|
405
426
|
LambdaFunctionSucceededEventDetails.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
427
|
+
LambdaFunctionSucceededEventDetails.add_member(:output_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "outputDetails"))
|
406
428
|
LambdaFunctionSucceededEventDetails.struct_class = Types::LambdaFunctionSucceededEventDetails
|
407
429
|
|
408
430
|
LambdaFunctionTimedOutEventDetails.add_member(:error, Shapes::ShapeRef.new(shape: SensitiveError, location_name: "error"))
|
@@ -494,10 +516,12 @@ module Aws::States
|
|
494
516
|
|
495
517
|
StateEnteredEventDetails.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
496
518
|
StateEnteredEventDetails.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "input"))
|
519
|
+
StateEnteredEventDetails.add_member(:input_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "inputDetails"))
|
497
520
|
StateEnteredEventDetails.struct_class = Types::StateEnteredEventDetails
|
498
521
|
|
499
522
|
StateExitedEventDetails.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
500
523
|
StateExitedEventDetails.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
524
|
+
StateExitedEventDetails.add_member(:output_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "outputDetails"))
|
501
525
|
StateExitedEventDetails.struct_class = Types::StateExitedEventDetails
|
502
526
|
|
503
527
|
StateMachineAlreadyExists.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -559,6 +583,7 @@ module Aws::States
|
|
559
583
|
TaskScheduledEventDetails.add_member(:region, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "region"))
|
560
584
|
TaskScheduledEventDetails.add_member(:parameters, Shapes::ShapeRef.new(shape: ConnectorParameters, required: true, location_name: "parameters"))
|
561
585
|
TaskScheduledEventDetails.add_member(:timeout_in_seconds, Shapes::ShapeRef.new(shape: TimeoutInSeconds, location_name: "timeoutInSeconds", metadata: {"box"=>true}))
|
586
|
+
TaskScheduledEventDetails.add_member(:heartbeat_in_seconds, Shapes::ShapeRef.new(shape: TimeoutInSeconds, location_name: "heartbeatInSeconds", metadata: {"box"=>true}))
|
562
587
|
TaskScheduledEventDetails.struct_class = Types::TaskScheduledEventDetails
|
563
588
|
|
564
589
|
TaskStartFailedEventDetails.add_member(:resource_type, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "resourceType"))
|
@@ -580,11 +605,13 @@ module Aws::States
|
|
580
605
|
TaskSubmittedEventDetails.add_member(:resource_type, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "resourceType"))
|
581
606
|
TaskSubmittedEventDetails.add_member(:resource, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "resource"))
|
582
607
|
TaskSubmittedEventDetails.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
608
|
+
TaskSubmittedEventDetails.add_member(:output_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "outputDetails"))
|
583
609
|
TaskSubmittedEventDetails.struct_class = Types::TaskSubmittedEventDetails
|
584
610
|
|
585
611
|
TaskSucceededEventDetails.add_member(:resource_type, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "resourceType"))
|
586
612
|
TaskSucceededEventDetails.add_member(:resource, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "resource"))
|
587
613
|
TaskSucceededEventDetails.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
614
|
+
TaskSucceededEventDetails.add_member(:output_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "outputDetails"))
|
588
615
|
TaskSucceededEventDetails.struct_class = Types::TaskSucceededEventDetails
|
589
616
|
|
590
617
|
TaskTimedOut.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
data/lib/aws-sdk-states/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -17,6 +19,7 @@ module Aws::States
|
|
17
19
|
#
|
18
20
|
class ActivityDoesNotExist < Struct.new(
|
19
21
|
:message)
|
22
|
+
SENSITIVE = []
|
20
23
|
include Aws::Structure
|
21
24
|
end
|
22
25
|
|
@@ -35,6 +38,7 @@ module Aws::States
|
|
35
38
|
class ActivityFailedEventDetails < Struct.new(
|
36
39
|
:error,
|
37
40
|
:cause)
|
41
|
+
SENSITIVE = [:error, :cause]
|
38
42
|
include Aws::Structure
|
39
43
|
end
|
40
44
|
|
@@ -48,6 +52,7 @@ module Aws::States
|
|
48
52
|
#
|
49
53
|
class ActivityLimitExceeded < Struct.new(
|
50
54
|
:message)
|
55
|
+
SENSITIVE = []
|
51
56
|
include Aws::Structure
|
52
57
|
end
|
53
58
|
|
@@ -86,6 +91,7 @@ module Aws::States
|
|
86
91
|
:activity_arn,
|
87
92
|
:name,
|
88
93
|
:creation_date)
|
94
|
+
SENSITIVE = []
|
89
95
|
include Aws::Structure
|
90
96
|
end
|
91
97
|
|
@@ -105,6 +111,7 @@ module Aws::States
|
|
105
111
|
class ActivityScheduleFailedEventDetails < Struct.new(
|
106
112
|
:error,
|
107
113
|
:cause)
|
114
|
+
SENSITIVE = [:error, :cause]
|
108
115
|
include Aws::Structure
|
109
116
|
end
|
110
117
|
|
@@ -115,9 +122,14 @@ module Aws::States
|
|
115
122
|
# @return [String]
|
116
123
|
#
|
117
124
|
# @!attribute [rw] input
|
118
|
-
# The JSON data input to the activity task.
|
125
|
+
# The JSON data input to the activity task. Length constraints apply
|
126
|
+
# to the payload size, and are expressed as bytes in UTF-8 encoding.
|
119
127
|
# @return [String]
|
120
128
|
#
|
129
|
+
# @!attribute [rw] input_details
|
130
|
+
# Contains details about the input for an execution history event.
|
131
|
+
# @return [Types::HistoryEventExecutionDataDetails]
|
132
|
+
#
|
121
133
|
# @!attribute [rw] timeout_in_seconds
|
122
134
|
# The maximum allowed duration of the activity task.
|
123
135
|
# @return [Integer]
|
@@ -132,8 +144,10 @@ module Aws::States
|
|
132
144
|
class ActivityScheduledEventDetails < Struct.new(
|
133
145
|
:resource,
|
134
146
|
:input,
|
147
|
+
:input_details,
|
135
148
|
:timeout_in_seconds,
|
136
149
|
:heartbeat_in_seconds)
|
150
|
+
SENSITIVE = [:input]
|
137
151
|
include Aws::Structure
|
138
152
|
end
|
139
153
|
|
@@ -148,6 +162,7 @@ module Aws::States
|
|
148
162
|
#
|
149
163
|
class ActivityStartedEventDetails < Struct.new(
|
150
164
|
:worker_name)
|
165
|
+
SENSITIVE = []
|
151
166
|
include Aws::Structure
|
152
167
|
end
|
153
168
|
|
@@ -155,13 +170,20 @@ module Aws::States
|
|
155
170
|
# an execution.
|
156
171
|
#
|
157
172
|
# @!attribute [rw] output
|
158
|
-
# The JSON data output by the activity task.
|
173
|
+
# The JSON data output by the activity task. Length constraints apply
|
174
|
+
# to the payload size, and are expressed as bytes in UTF-8 encoding.
|
159
175
|
# @return [String]
|
160
176
|
#
|
177
|
+
# @!attribute [rw] output_details
|
178
|
+
# Contains details about the output of an execution history event.
|
179
|
+
# @return [Types::HistoryEventExecutionDataDetails]
|
180
|
+
#
|
161
181
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/ActivitySucceededEventDetails AWS API Documentation
|
162
182
|
#
|
163
183
|
class ActivitySucceededEventDetails < Struct.new(
|
164
|
-
:output
|
184
|
+
:output,
|
185
|
+
:output_details)
|
186
|
+
SENSITIVE = [:output]
|
165
187
|
include Aws::Structure
|
166
188
|
end
|
167
189
|
|
@@ -181,6 +203,7 @@ module Aws::States
|
|
181
203
|
class ActivityTimedOutEventDetails < Struct.new(
|
182
204
|
:error,
|
183
205
|
:cause)
|
206
|
+
SENSITIVE = [:error, :cause]
|
184
207
|
include Aws::Structure
|
185
208
|
end
|
186
209
|
|
@@ -194,6 +217,23 @@ module Aws::States
|
|
194
217
|
#
|
195
218
|
class ActivityWorkerLimitExceeded < Struct.new(
|
196
219
|
:message)
|
220
|
+
SENSITIVE = []
|
221
|
+
include Aws::Structure
|
222
|
+
end
|
223
|
+
|
224
|
+
# Provides details about execution input.
|
225
|
+
#
|
226
|
+
# @!attribute [rw] included
|
227
|
+
# Indicates whether input or output was included in the response.
|
228
|
+
# Always `true` for API calls, but may be `false` for CloudWatch
|
229
|
+
# Events.
|
230
|
+
# @return [Boolean]
|
231
|
+
#
|
232
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/CloudWatchEventsExecutionDataDetails AWS API Documentation
|
233
|
+
#
|
234
|
+
class CloudWatchEventsExecutionDataDetails < Struct.new(
|
235
|
+
:included)
|
236
|
+
SENSITIVE = []
|
197
237
|
include Aws::Structure
|
198
238
|
end
|
199
239
|
|
@@ -213,6 +253,7 @@ module Aws::States
|
|
213
253
|
#
|
214
254
|
class CloudWatchLogsLogGroup < Struct.new(
|
215
255
|
:log_group_arn)
|
256
|
+
SENSITIVE = []
|
216
257
|
include Aws::Structure
|
217
258
|
end
|
218
259
|
|
@@ -276,6 +317,7 @@ module Aws::States
|
|
276
317
|
class CreateActivityInput < Struct.new(
|
277
318
|
:name,
|
278
319
|
:tags)
|
320
|
+
SENSITIVE = []
|
279
321
|
include Aws::Structure
|
280
322
|
end
|
281
323
|
|
@@ -292,6 +334,7 @@ module Aws::States
|
|
292
334
|
class CreateActivityOutput < Struct.new(
|
293
335
|
:activity_arn,
|
294
336
|
:creation_date)
|
337
|
+
SENSITIVE = []
|
295
338
|
include Aws::Structure
|
296
339
|
end
|
297
340
|
|
@@ -400,6 +443,7 @@ module Aws::States
|
|
400
443
|
:type,
|
401
444
|
:logging_configuration,
|
402
445
|
:tags)
|
446
|
+
SENSITIVE = [:definition]
|
403
447
|
include Aws::Structure
|
404
448
|
end
|
405
449
|
|
@@ -417,6 +461,7 @@ module Aws::States
|
|
417
461
|
class CreateStateMachineOutput < Struct.new(
|
418
462
|
:state_machine_arn,
|
419
463
|
:creation_date)
|
464
|
+
SENSITIVE = []
|
420
465
|
include Aws::Structure
|
421
466
|
end
|
422
467
|
|
@@ -435,6 +480,7 @@ module Aws::States
|
|
435
480
|
#
|
436
481
|
class DeleteActivityInput < Struct.new(
|
437
482
|
:activity_arn)
|
483
|
+
SENSITIVE = []
|
438
484
|
include Aws::Structure
|
439
485
|
end
|
440
486
|
|
@@ -457,6 +503,7 @@ module Aws::States
|
|
457
503
|
#
|
458
504
|
class DeleteStateMachineInput < Struct.new(
|
459
505
|
:state_machine_arn)
|
506
|
+
SENSITIVE = []
|
460
507
|
include Aws::Structure
|
461
508
|
end
|
462
509
|
|
@@ -479,6 +526,7 @@ module Aws::States
|
|
479
526
|
#
|
480
527
|
class DescribeActivityInput < Struct.new(
|
481
528
|
:activity_arn)
|
529
|
+
SENSITIVE = []
|
482
530
|
include Aws::Structure
|
483
531
|
end
|
484
532
|
|
@@ -515,6 +563,7 @@ module Aws::States
|
|
515
563
|
:activity_arn,
|
516
564
|
:name,
|
517
565
|
:creation_date)
|
566
|
+
SENSITIVE = []
|
518
567
|
include Aws::Structure
|
519
568
|
end
|
520
569
|
|
@@ -533,6 +582,7 @@ module Aws::States
|
|
533
582
|
#
|
534
583
|
class DescribeExecutionInput < Struct.new(
|
535
584
|
:execution_arn)
|
585
|
+
SENSITIVE = []
|
536
586
|
include Aws::Structure
|
537
587
|
end
|
538
588
|
|
@@ -577,10 +627,17 @@ module Aws::States
|
|
577
627
|
#
|
578
628
|
# @!attribute [rw] input
|
579
629
|
# The string that contains the JSON input data of the execution.
|
630
|
+
# Length constraints apply to the payload size, and are expressed as
|
631
|
+
# bytes in UTF-8 encoding.
|
580
632
|
# @return [String]
|
581
633
|
#
|
634
|
+
# @!attribute [rw] input_details
|
635
|
+
# Provides details about execution input.
|
636
|
+
# @return [Types::CloudWatchEventsExecutionDataDetails]
|
637
|
+
#
|
582
638
|
# @!attribute [rw] output
|
583
|
-
# The JSON output data of the execution.
|
639
|
+
# The JSON output data of the execution. Length constraints apply to
|
640
|
+
# the payload size, and are expressed as bytes in UTF-8 encoding.
|
584
641
|
#
|
585
642
|
# <note markdown="1"> This field is set only if the execution succeeds. If the execution
|
586
643
|
# fails, this field is null.
|
@@ -588,6 +645,10 @@ module Aws::States
|
|
588
645
|
# </note>
|
589
646
|
# @return [String]
|
590
647
|
#
|
648
|
+
# @!attribute [rw] output_details
|
649
|
+
# Provides details about execution input.
|
650
|
+
# @return [Types::CloudWatchEventsExecutionDataDetails]
|
651
|
+
#
|
591
652
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/DescribeExecutionOutput AWS API Documentation
|
592
653
|
#
|
593
654
|
class DescribeExecutionOutput < Struct.new(
|
@@ -598,7 +659,10 @@ module Aws::States
|
|
598
659
|
:start_date,
|
599
660
|
:stop_date,
|
600
661
|
:input,
|
601
|
-
:
|
662
|
+
:input_details,
|
663
|
+
:output,
|
664
|
+
:output_details)
|
665
|
+
SENSITIVE = [:input, :output]
|
602
666
|
include Aws::Structure
|
603
667
|
end
|
604
668
|
|
@@ -618,6 +682,7 @@ module Aws::States
|
|
618
682
|
#
|
619
683
|
class DescribeStateMachineForExecutionInput < Struct.new(
|
620
684
|
:execution_arn)
|
685
|
+
SENSITIVE = []
|
621
686
|
include Aws::Structure
|
622
687
|
end
|
623
688
|
|
@@ -664,6 +729,7 @@ module Aws::States
|
|
664
729
|
:role_arn,
|
665
730
|
:update_date,
|
666
731
|
:logging_configuration)
|
732
|
+
SENSITIVE = [:definition]
|
667
733
|
include Aws::Structure
|
668
734
|
end
|
669
735
|
|
@@ -682,6 +748,7 @@ module Aws::States
|
|
682
748
|
#
|
683
749
|
class DescribeStateMachineInput < Struct.new(
|
684
750
|
:state_machine_arn)
|
751
|
+
SENSITIVE = []
|
685
752
|
include Aws::Structure
|
686
753
|
end
|
687
754
|
|
@@ -751,6 +818,7 @@ module Aws::States
|
|
751
818
|
:type,
|
752
819
|
:creation_date,
|
753
820
|
:logging_configuration)
|
821
|
+
SENSITIVE = [:definition]
|
754
822
|
include Aws::Structure
|
755
823
|
end
|
756
824
|
|
@@ -769,6 +837,7 @@ module Aws::States
|
|
769
837
|
class ExecutionAbortedEventDetails < Struct.new(
|
770
838
|
:error,
|
771
839
|
:cause)
|
840
|
+
SENSITIVE = [:error, :cause]
|
772
841
|
include Aws::Structure
|
773
842
|
end
|
774
843
|
|
@@ -786,6 +855,7 @@ module Aws::States
|
|
786
855
|
#
|
787
856
|
class ExecutionAlreadyExists < Struct.new(
|
788
857
|
:message)
|
858
|
+
SENSITIVE = []
|
789
859
|
include Aws::Structure
|
790
860
|
end
|
791
861
|
|
@@ -798,6 +868,7 @@ module Aws::States
|
|
798
868
|
#
|
799
869
|
class ExecutionDoesNotExist < Struct.new(
|
800
870
|
:message)
|
871
|
+
SENSITIVE = []
|
801
872
|
include Aws::Structure
|
802
873
|
end
|
803
874
|
|
@@ -816,6 +887,7 @@ module Aws::States
|
|
816
887
|
class ExecutionFailedEventDetails < Struct.new(
|
817
888
|
:error,
|
818
889
|
:cause)
|
890
|
+
SENSITIVE = [:error, :cause]
|
819
891
|
include Aws::Structure
|
820
892
|
end
|
821
893
|
|
@@ -830,6 +902,7 @@ module Aws::States
|
|
830
902
|
#
|
831
903
|
class ExecutionLimitExceeded < Struct.new(
|
832
904
|
:message)
|
905
|
+
SENSITIVE = []
|
833
906
|
include Aws::Structure
|
834
907
|
end
|
835
908
|
|
@@ -883,15 +956,21 @@ module Aws::States
|
|
883
956
|
:status,
|
884
957
|
:start_date,
|
885
958
|
:stop_date)
|
959
|
+
SENSITIVE = []
|
886
960
|
include Aws::Structure
|
887
961
|
end
|
888
962
|
|
889
963
|
# Contains details about the start of the execution.
|
890
964
|
#
|
891
965
|
# @!attribute [rw] input
|
892
|
-
# The JSON data input to the execution.
|
966
|
+
# The JSON data input to the execution. Length constraints apply to
|
967
|
+
# the payload size, and are expressed as bytes in UTF-8 encoding.
|
893
968
|
# @return [String]
|
894
969
|
#
|
970
|
+
# @!attribute [rw] input_details
|
971
|
+
# Contains details about the input for an execution history event.
|
972
|
+
# @return [Types::HistoryEventExecutionDataDetails]
|
973
|
+
#
|
895
974
|
# @!attribute [rw] role_arn
|
896
975
|
# The Amazon Resource Name (ARN) of the IAM role used for executing
|
897
976
|
# AWS Lambda tasks.
|
@@ -901,20 +980,29 @@ module Aws::States
|
|
901
980
|
#
|
902
981
|
class ExecutionStartedEventDetails < Struct.new(
|
903
982
|
:input,
|
983
|
+
:input_details,
|
904
984
|
:role_arn)
|
985
|
+
SENSITIVE = [:input]
|
905
986
|
include Aws::Structure
|
906
987
|
end
|
907
988
|
|
908
989
|
# Contains details about the successful termination of the execution.
|
909
990
|
#
|
910
991
|
# @!attribute [rw] output
|
911
|
-
# The JSON data output by the execution.
|
992
|
+
# The JSON data output by the execution. Length constraints apply to
|
993
|
+
# the payload size, and are expressed as bytes in UTF-8 encoding.
|
912
994
|
# @return [String]
|
913
995
|
#
|
996
|
+
# @!attribute [rw] output_details
|
997
|
+
# Contains details about the output of an execution history event.
|
998
|
+
# @return [Types::HistoryEventExecutionDataDetails]
|
999
|
+
#
|
914
1000
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/ExecutionSucceededEventDetails AWS API Documentation
|
915
1001
|
#
|
916
1002
|
class ExecutionSucceededEventDetails < Struct.new(
|
917
|
-
:output
|
1003
|
+
:output,
|
1004
|
+
:output_details)
|
1005
|
+
SENSITIVE = [:output]
|
918
1006
|
include Aws::Structure
|
919
1007
|
end
|
920
1008
|
|
@@ -934,6 +1022,7 @@ module Aws::States
|
|
934
1022
|
class ExecutionTimedOutEventDetails < Struct.new(
|
935
1023
|
:error,
|
936
1024
|
:cause)
|
1025
|
+
SENSITIVE = [:error, :cause]
|
937
1026
|
include Aws::Structure
|
938
1027
|
end
|
939
1028
|
|
@@ -961,6 +1050,7 @@ module Aws::States
|
|
961
1050
|
class GetActivityTaskInput < Struct.new(
|
962
1051
|
:activity_arn,
|
963
1052
|
:worker_name)
|
1053
|
+
SENSITIVE = []
|
964
1054
|
include Aws::Structure
|
965
1055
|
end
|
966
1056
|
|
@@ -972,7 +1062,9 @@ module Aws::States
|
|
972
1062
|
# @return [String]
|
973
1063
|
#
|
974
1064
|
# @!attribute [rw] input
|
975
|
-
# The string that contains the JSON input data for the task.
|
1065
|
+
# The string that contains the JSON input data for the task. Length
|
1066
|
+
# constraints apply to the payload size, and are expressed as bytes in
|
1067
|
+
# UTF-8 encoding.
|
976
1068
|
# @return [String]
|
977
1069
|
#
|
978
1070
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/GetActivityTaskOutput AWS API Documentation
|
@@ -980,6 +1072,7 @@ module Aws::States
|
|
980
1072
|
class GetActivityTaskOutput < Struct.new(
|
981
1073
|
:task_token,
|
982
1074
|
:input)
|
1075
|
+
SENSITIVE = [:input]
|
983
1076
|
include Aws::Structure
|
984
1077
|
end
|
985
1078
|
|
@@ -991,6 +1084,7 @@ module Aws::States
|
|
991
1084
|
# max_results: 1,
|
992
1085
|
# reverse_order: false,
|
993
1086
|
# next_token: "PageToken",
|
1087
|
+
# include_execution_data: false,
|
994
1088
|
# }
|
995
1089
|
#
|
996
1090
|
# @!attribute [rw] execution_arn
|
@@ -1020,13 +1114,20 @@ module Aws::States
|
|
1020
1114
|
# return an *HTTP 400 InvalidToken* error.
|
1021
1115
|
# @return [String]
|
1022
1116
|
#
|
1117
|
+
# @!attribute [rw] include_execution_data
|
1118
|
+
# You can select whether execution data (input or output of a history
|
1119
|
+
# event) is returned. The default is `true`.
|
1120
|
+
# @return [Boolean]
|
1121
|
+
#
|
1023
1122
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/GetExecutionHistoryInput AWS API Documentation
|
1024
1123
|
#
|
1025
1124
|
class GetExecutionHistoryInput < Struct.new(
|
1026
1125
|
:execution_arn,
|
1027
1126
|
:max_results,
|
1028
1127
|
:reverse_order,
|
1029
|
-
:next_token
|
1128
|
+
:next_token,
|
1129
|
+
:include_execution_data)
|
1130
|
+
SENSITIVE = []
|
1030
1131
|
include Aws::Structure
|
1031
1132
|
end
|
1032
1133
|
|
@@ -1048,6 +1149,7 @@ module Aws::States
|
|
1048
1149
|
class GetExecutionHistoryOutput < Struct.new(
|
1049
1150
|
:events,
|
1050
1151
|
:next_token)
|
1152
|
+
SENSITIVE = []
|
1051
1153
|
include Aws::Structure
|
1052
1154
|
end
|
1053
1155
|
|
@@ -1247,6 +1349,23 @@ module Aws::States
|
|
1247
1349
|
:lambda_function_timed_out_event_details,
|
1248
1350
|
:state_entered_event_details,
|
1249
1351
|
:state_exited_event_details)
|
1352
|
+
SENSITIVE = []
|
1353
|
+
include Aws::Structure
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
# Contains details about the data from an execution's events. Always
|
1357
|
+
# `true` for API calls, but may be `false` for CloudWatch Logs.
|
1358
|
+
#
|
1359
|
+
# @!attribute [rw] truncated
|
1360
|
+
# Indicates whether input or output was truncated in the response.
|
1361
|
+
# Always `false`.
|
1362
|
+
# @return [Boolean]
|
1363
|
+
#
|
1364
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/HistoryEventExecutionDataDetails AWS API Documentation
|
1365
|
+
#
|
1366
|
+
class HistoryEventExecutionDataDetails < Struct.new(
|
1367
|
+
:truncated)
|
1368
|
+
SENSITIVE = []
|
1250
1369
|
include Aws::Structure
|
1251
1370
|
end
|
1252
1371
|
|
@@ -1259,6 +1378,7 @@ module Aws::States
|
|
1259
1378
|
#
|
1260
1379
|
class InvalidArn < Struct.new(
|
1261
1380
|
:message)
|
1381
|
+
SENSITIVE = []
|
1262
1382
|
include Aws::Structure
|
1263
1383
|
end
|
1264
1384
|
|
@@ -1271,6 +1391,7 @@ module Aws::States
|
|
1271
1391
|
#
|
1272
1392
|
class InvalidDefinition < Struct.new(
|
1273
1393
|
:message)
|
1394
|
+
SENSITIVE = []
|
1274
1395
|
include Aws::Structure
|
1275
1396
|
end
|
1276
1397
|
|
@@ -1283,6 +1404,7 @@ module Aws::States
|
|
1283
1404
|
#
|
1284
1405
|
class InvalidExecutionInput < Struct.new(
|
1285
1406
|
:message)
|
1407
|
+
SENSITIVE = []
|
1286
1408
|
include Aws::Structure
|
1287
1409
|
end
|
1288
1410
|
|
@@ -1293,6 +1415,7 @@ module Aws::States
|
|
1293
1415
|
#
|
1294
1416
|
class InvalidLoggingConfiguration < Struct.new(
|
1295
1417
|
:message)
|
1418
|
+
SENSITIVE = []
|
1296
1419
|
include Aws::Structure
|
1297
1420
|
end
|
1298
1421
|
|
@@ -1305,6 +1428,7 @@ module Aws::States
|
|
1305
1428
|
#
|
1306
1429
|
class InvalidName < Struct.new(
|
1307
1430
|
:message)
|
1431
|
+
SENSITIVE = []
|
1308
1432
|
include Aws::Structure
|
1309
1433
|
end
|
1310
1434
|
|
@@ -1317,6 +1441,7 @@ module Aws::States
|
|
1317
1441
|
#
|
1318
1442
|
class InvalidOutput < Struct.new(
|
1319
1443
|
:message)
|
1444
|
+
SENSITIVE = []
|
1320
1445
|
include Aws::Structure
|
1321
1446
|
end
|
1322
1447
|
|
@@ -1329,6 +1454,7 @@ module Aws::States
|
|
1329
1454
|
#
|
1330
1455
|
class InvalidToken < Struct.new(
|
1331
1456
|
:message)
|
1457
|
+
SENSITIVE = []
|
1332
1458
|
include Aws::Structure
|
1333
1459
|
end
|
1334
1460
|
|
@@ -1348,6 +1474,7 @@ module Aws::States
|
|
1348
1474
|
class LambdaFunctionFailedEventDetails < Struct.new(
|
1349
1475
|
:error,
|
1350
1476
|
:cause)
|
1477
|
+
SENSITIVE = [:error, :cause]
|
1351
1478
|
include Aws::Structure
|
1352
1479
|
end
|
1353
1480
|
|
@@ -1367,6 +1494,7 @@ module Aws::States
|
|
1367
1494
|
class LambdaFunctionScheduleFailedEventDetails < Struct.new(
|
1368
1495
|
:error,
|
1369
1496
|
:cause)
|
1497
|
+
SENSITIVE = [:error, :cause]
|
1370
1498
|
include Aws::Structure
|
1371
1499
|
end
|
1372
1500
|
|
@@ -1378,9 +1506,14 @@ module Aws::States
|
|
1378
1506
|
# @return [String]
|
1379
1507
|
#
|
1380
1508
|
# @!attribute [rw] input
|
1381
|
-
# The JSON data input to the lambda function.
|
1509
|
+
# The JSON data input to the lambda function. Length constraints apply
|
1510
|
+
# to the payload size, and are expressed as bytes in UTF-8 encoding.
|
1382
1511
|
# @return [String]
|
1383
1512
|
#
|
1513
|
+
# @!attribute [rw] input_details
|
1514
|
+
# Contains details about input for an execution history event.
|
1515
|
+
# @return [Types::HistoryEventExecutionDataDetails]
|
1516
|
+
#
|
1384
1517
|
# @!attribute [rw] timeout_in_seconds
|
1385
1518
|
# The maximum allowed duration of the lambda function.
|
1386
1519
|
# @return [Integer]
|
@@ -1390,7 +1523,9 @@ module Aws::States
|
|
1390
1523
|
class LambdaFunctionScheduledEventDetails < Struct.new(
|
1391
1524
|
:resource,
|
1392
1525
|
:input,
|
1526
|
+
:input_details,
|
1393
1527
|
:timeout_in_seconds)
|
1528
|
+
SENSITIVE = [:input]
|
1394
1529
|
include Aws::Structure
|
1395
1530
|
end
|
1396
1531
|
|
@@ -1410,6 +1545,7 @@ module Aws::States
|
|
1410
1545
|
class LambdaFunctionStartFailedEventDetails < Struct.new(
|
1411
1546
|
:error,
|
1412
1547
|
:cause)
|
1548
|
+
SENSITIVE = [:error, :cause]
|
1413
1549
|
include Aws::Structure
|
1414
1550
|
end
|
1415
1551
|
|
@@ -1417,13 +1553,21 @@ module Aws::States
|
|
1417
1553
|
# during an execution.
|
1418
1554
|
#
|
1419
1555
|
# @!attribute [rw] output
|
1420
|
-
# The JSON data output by the lambda function.
|
1556
|
+
# The JSON data output by the lambda function. Length constraints
|
1557
|
+
# apply to the payload size, and are expressed as bytes in UTF-8
|
1558
|
+
# encoding.
|
1421
1559
|
# @return [String]
|
1422
1560
|
#
|
1561
|
+
# @!attribute [rw] output_details
|
1562
|
+
# Contains details about the output of an execution history event.
|
1563
|
+
# @return [Types::HistoryEventExecutionDataDetails]
|
1564
|
+
#
|
1423
1565
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/LambdaFunctionSucceededEventDetails AWS API Documentation
|
1424
1566
|
#
|
1425
1567
|
class LambdaFunctionSucceededEventDetails < Struct.new(
|
1426
|
-
:output
|
1568
|
+
:output,
|
1569
|
+
:output_details)
|
1570
|
+
SENSITIVE = [:output]
|
1427
1571
|
include Aws::Structure
|
1428
1572
|
end
|
1429
1573
|
|
@@ -1443,6 +1587,7 @@ module Aws::States
|
|
1443
1587
|
class LambdaFunctionTimedOutEventDetails < Struct.new(
|
1444
1588
|
:error,
|
1445
1589
|
:cause)
|
1590
|
+
SENSITIVE = [:error, :cause]
|
1446
1591
|
include Aws::Structure
|
1447
1592
|
end
|
1448
1593
|
|
@@ -1478,6 +1623,7 @@ module Aws::States
|
|
1478
1623
|
class ListActivitiesInput < Struct.new(
|
1479
1624
|
:max_results,
|
1480
1625
|
:next_token)
|
1626
|
+
SENSITIVE = []
|
1481
1627
|
include Aws::Structure
|
1482
1628
|
end
|
1483
1629
|
|
@@ -1499,6 +1645,7 @@ module Aws::States
|
|
1499
1645
|
class ListActivitiesOutput < Struct.new(
|
1500
1646
|
:activities,
|
1501
1647
|
:next_token)
|
1648
|
+
SENSITIVE = []
|
1502
1649
|
include Aws::Structure
|
1503
1650
|
end
|
1504
1651
|
|
@@ -1548,6 +1695,7 @@ module Aws::States
|
|
1548
1695
|
:status_filter,
|
1549
1696
|
:max_results,
|
1550
1697
|
:next_token)
|
1698
|
+
SENSITIVE = []
|
1551
1699
|
include Aws::Structure
|
1552
1700
|
end
|
1553
1701
|
|
@@ -1569,6 +1717,7 @@ module Aws::States
|
|
1569
1717
|
class ListExecutionsOutput < Struct.new(
|
1570
1718
|
:executions,
|
1571
1719
|
:next_token)
|
1720
|
+
SENSITIVE = []
|
1572
1721
|
include Aws::Structure
|
1573
1722
|
end
|
1574
1723
|
|
@@ -1604,6 +1753,7 @@ module Aws::States
|
|
1604
1753
|
class ListStateMachinesInput < Struct.new(
|
1605
1754
|
:max_results,
|
1606
1755
|
:next_token)
|
1756
|
+
SENSITIVE = []
|
1607
1757
|
include Aws::Structure
|
1608
1758
|
end
|
1609
1759
|
|
@@ -1624,6 +1774,7 @@ module Aws::States
|
|
1624
1774
|
class ListStateMachinesOutput < Struct.new(
|
1625
1775
|
:state_machines,
|
1626
1776
|
:next_token)
|
1777
|
+
SENSITIVE = []
|
1627
1778
|
include Aws::Structure
|
1628
1779
|
end
|
1629
1780
|
|
@@ -1643,6 +1794,7 @@ module Aws::States
|
|
1643
1794
|
#
|
1644
1795
|
class ListTagsForResourceInput < Struct.new(
|
1645
1796
|
:resource_arn)
|
1797
|
+
SENSITIVE = []
|
1646
1798
|
include Aws::Structure
|
1647
1799
|
end
|
1648
1800
|
|
@@ -1654,6 +1806,7 @@ module Aws::States
|
|
1654
1806
|
#
|
1655
1807
|
class ListTagsForResourceOutput < Struct.new(
|
1656
1808
|
:tags)
|
1809
|
+
SENSITIVE = []
|
1657
1810
|
include Aws::Structure
|
1658
1811
|
end
|
1659
1812
|
|
@@ -1679,6 +1832,7 @@ module Aws::States
|
|
1679
1832
|
#
|
1680
1833
|
class LogDestination < Struct.new(
|
1681
1834
|
:cloud_watch_logs_log_group)
|
1835
|
+
SENSITIVE = []
|
1682
1836
|
include Aws::Structure
|
1683
1837
|
end
|
1684
1838
|
|
@@ -1706,7 +1860,7 @@ module Aws::States
|
|
1706
1860
|
#
|
1707
1861
|
# @!attribute [rw] include_execution_data
|
1708
1862
|
# Determines whether execution data is included in your log. When set
|
1709
|
-
# to `
|
1863
|
+
# to `false`, data is excluded.
|
1710
1864
|
# @return [Boolean]
|
1711
1865
|
#
|
1712
1866
|
# @!attribute [rw] destinations
|
@@ -1721,6 +1875,7 @@ module Aws::States
|
|
1721
1875
|
:level,
|
1722
1876
|
:include_execution_data,
|
1723
1877
|
:destinations)
|
1878
|
+
SENSITIVE = []
|
1724
1879
|
include Aws::Structure
|
1725
1880
|
end
|
1726
1881
|
|
@@ -1739,6 +1894,7 @@ module Aws::States
|
|
1739
1894
|
class MapIterationEventDetails < Struct.new(
|
1740
1895
|
:name,
|
1741
1896
|
:index)
|
1897
|
+
SENSITIVE = []
|
1742
1898
|
include Aws::Structure
|
1743
1899
|
end
|
1744
1900
|
|
@@ -1752,6 +1908,7 @@ module Aws::States
|
|
1752
1908
|
#
|
1753
1909
|
class MapStateStartedEventDetails < Struct.new(
|
1754
1910
|
:length)
|
1911
|
+
SENSITIVE = []
|
1755
1912
|
include Aws::Structure
|
1756
1913
|
end
|
1757
1914
|
|
@@ -1765,6 +1922,7 @@ module Aws::States
|
|
1765
1922
|
#
|
1766
1923
|
class MissingRequiredParameter < Struct.new(
|
1767
1924
|
:message)
|
1925
|
+
SENSITIVE = []
|
1768
1926
|
include Aws::Structure
|
1769
1927
|
end
|
1770
1928
|
|
@@ -1782,6 +1940,7 @@ module Aws::States
|
|
1782
1940
|
class ResourceNotFound < Struct.new(
|
1783
1941
|
:message,
|
1784
1942
|
:resource_name)
|
1943
|
+
SENSITIVE = []
|
1785
1944
|
include Aws::Structure
|
1786
1945
|
end
|
1787
1946
|
|
@@ -1819,6 +1978,7 @@ module Aws::States
|
|
1819
1978
|
:task_token,
|
1820
1979
|
:error,
|
1821
1980
|
:cause)
|
1981
|
+
SENSITIVE = [:error, :cause]
|
1822
1982
|
include Aws::Structure
|
1823
1983
|
end
|
1824
1984
|
|
@@ -1848,6 +2008,7 @@ module Aws::States
|
|
1848
2008
|
#
|
1849
2009
|
class SendTaskHeartbeatInput < Struct.new(
|
1850
2010
|
:task_token)
|
2011
|
+
SENSITIVE = []
|
1851
2012
|
include Aws::Structure
|
1852
2013
|
end
|
1853
2014
|
|
@@ -1875,7 +2036,8 @@ module Aws::States
|
|
1875
2036
|
# @return [String]
|
1876
2037
|
#
|
1877
2038
|
# @!attribute [rw] output
|
1878
|
-
# The JSON output of the task.
|
2039
|
+
# The JSON output of the task. Length constraints apply to the payload
|
2040
|
+
# size, and are expressed as bytes in UTF-8 encoding.
|
1879
2041
|
# @return [String]
|
1880
2042
|
#
|
1881
2043
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/SendTaskSuccessInput AWS API Documentation
|
@@ -1883,6 +2045,7 @@ module Aws::States
|
|
1883
2045
|
class SendTaskSuccessInput < Struct.new(
|
1884
2046
|
:task_token,
|
1885
2047
|
:output)
|
2048
|
+
SENSITIVE = [:output]
|
1886
2049
|
include Aws::Structure
|
1887
2050
|
end
|
1888
2051
|
|
@@ -1939,6 +2102,9 @@ module Aws::States
|
|
1939
2102
|
# the two braces, for example: `"input": "\{\}"`
|
1940
2103
|
#
|
1941
2104
|
# </note>
|
2105
|
+
#
|
2106
|
+
# Length constraints apply to the payload size, and are expressed as
|
2107
|
+
# bytes in UTF-8 encoding.
|
1942
2108
|
# @return [String]
|
1943
2109
|
#
|
1944
2110
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/StartExecutionInput AWS API Documentation
|
@@ -1947,6 +2113,7 @@ module Aws::States
|
|
1947
2113
|
:state_machine_arn,
|
1948
2114
|
:name,
|
1949
2115
|
:input)
|
2116
|
+
SENSITIVE = [:input]
|
1950
2117
|
include Aws::Structure
|
1951
2118
|
end
|
1952
2119
|
|
@@ -1963,6 +2130,7 @@ module Aws::States
|
|
1963
2130
|
class StartExecutionOutput < Struct.new(
|
1964
2131
|
:execution_arn,
|
1965
2132
|
:start_date)
|
2133
|
+
SENSITIVE = []
|
1966
2134
|
include Aws::Structure
|
1967
2135
|
end
|
1968
2136
|
|
@@ -1973,14 +2141,22 @@ module Aws::States
|
|
1973
2141
|
# @return [String]
|
1974
2142
|
#
|
1975
2143
|
# @!attribute [rw] input
|
1976
|
-
# The string that contains the JSON input data for the state.
|
2144
|
+
# The string that contains the JSON input data for the state. Length
|
2145
|
+
# constraints apply to the payload size, and are expressed as bytes in
|
2146
|
+
# UTF-8 encoding.
|
1977
2147
|
# @return [String]
|
1978
2148
|
#
|
2149
|
+
# @!attribute [rw] input_details
|
2150
|
+
# Contains details about the input for an execution history event.
|
2151
|
+
# @return [Types::HistoryEventExecutionDataDetails]
|
2152
|
+
#
|
1979
2153
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/StateEnteredEventDetails AWS API Documentation
|
1980
2154
|
#
|
1981
2155
|
class StateEnteredEventDetails < Struct.new(
|
1982
2156
|
:name,
|
1983
|
-
:input
|
2157
|
+
:input,
|
2158
|
+
:input_details)
|
2159
|
+
SENSITIVE = [:input]
|
1984
2160
|
include Aws::Structure
|
1985
2161
|
end
|
1986
2162
|
|
@@ -2006,14 +2182,21 @@ module Aws::States
|
|
2006
2182
|
# @return [String]
|
2007
2183
|
#
|
2008
2184
|
# @!attribute [rw] output
|
2009
|
-
# The JSON output data of the state.
|
2185
|
+
# The JSON output data of the state. Length constraints apply to the
|
2186
|
+
# payload size, and are expressed as bytes in UTF-8 encoding.
|
2010
2187
|
# @return [String]
|
2011
2188
|
#
|
2189
|
+
# @!attribute [rw] output_details
|
2190
|
+
# Contains details about the output of an execution history event.
|
2191
|
+
# @return [Types::HistoryEventExecutionDataDetails]
|
2192
|
+
#
|
2012
2193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/StateExitedEventDetails AWS API Documentation
|
2013
2194
|
#
|
2014
2195
|
class StateExitedEventDetails < Struct.new(
|
2015
2196
|
:name,
|
2016
|
-
:output
|
2197
|
+
:output,
|
2198
|
+
:output_details)
|
2199
|
+
SENSITIVE = [:output]
|
2017
2200
|
include Aws::Structure
|
2018
2201
|
end
|
2019
2202
|
|
@@ -2027,6 +2210,7 @@ module Aws::States
|
|
2027
2210
|
#
|
2028
2211
|
class StateMachineAlreadyExists < Struct.new(
|
2029
2212
|
:message)
|
2213
|
+
SENSITIVE = []
|
2030
2214
|
include Aws::Structure
|
2031
2215
|
end
|
2032
2216
|
|
@@ -2039,6 +2223,7 @@ module Aws::States
|
|
2039
2223
|
#
|
2040
2224
|
class StateMachineDeleting < Struct.new(
|
2041
2225
|
:message)
|
2226
|
+
SENSITIVE = []
|
2042
2227
|
include Aws::Structure
|
2043
2228
|
end
|
2044
2229
|
|
@@ -2051,6 +2236,7 @@ module Aws::States
|
|
2051
2236
|
#
|
2052
2237
|
class StateMachineDoesNotExist < Struct.new(
|
2053
2238
|
:message)
|
2239
|
+
SENSITIVE = []
|
2054
2240
|
include Aws::Structure
|
2055
2241
|
end
|
2056
2242
|
|
@@ -2064,6 +2250,7 @@ module Aws::States
|
|
2064
2250
|
#
|
2065
2251
|
class StateMachineLimitExceeded < Struct.new(
|
2066
2252
|
:message)
|
2253
|
+
SENSITIVE = []
|
2067
2254
|
include Aws::Structure
|
2068
2255
|
end
|
2069
2256
|
|
@@ -2106,6 +2293,7 @@ module Aws::States
|
|
2106
2293
|
:name,
|
2107
2294
|
:type,
|
2108
2295
|
:creation_date)
|
2296
|
+
SENSITIVE = []
|
2109
2297
|
include Aws::Structure
|
2110
2298
|
end
|
2111
2299
|
|
@@ -2116,6 +2304,7 @@ module Aws::States
|
|
2116
2304
|
#
|
2117
2305
|
class StateMachineTypeNotSupported < Struct.new(
|
2118
2306
|
:message)
|
2307
|
+
SENSITIVE = []
|
2119
2308
|
include Aws::Structure
|
2120
2309
|
end
|
2121
2310
|
|
@@ -2146,6 +2335,7 @@ module Aws::States
|
|
2146
2335
|
:execution_arn,
|
2147
2336
|
:error,
|
2148
2337
|
:cause)
|
2338
|
+
SENSITIVE = [:error, :cause]
|
2149
2339
|
include Aws::Structure
|
2150
2340
|
end
|
2151
2341
|
|
@@ -2157,6 +2347,7 @@ module Aws::States
|
|
2157
2347
|
#
|
2158
2348
|
class StopExecutionOutput < Struct.new(
|
2159
2349
|
:stop_date)
|
2350
|
+
SENSITIVE = []
|
2160
2351
|
include Aws::Structure
|
2161
2352
|
end
|
2162
2353
|
|
@@ -2196,6 +2387,7 @@ module Aws::States
|
|
2196
2387
|
class Tag < Struct.new(
|
2197
2388
|
:key,
|
2198
2389
|
:value)
|
2390
|
+
SENSITIVE = []
|
2199
2391
|
include Aws::Structure
|
2200
2392
|
end
|
2201
2393
|
|
@@ -2229,6 +2421,7 @@ module Aws::States
|
|
2229
2421
|
class TagResourceInput < Struct.new(
|
2230
2422
|
:resource_arn,
|
2231
2423
|
:tags)
|
2424
|
+
SENSITIVE = []
|
2232
2425
|
include Aws::Structure
|
2233
2426
|
end
|
2234
2427
|
|
@@ -2243,6 +2436,7 @@ module Aws::States
|
|
2243
2436
|
#
|
2244
2437
|
class TaskDoesNotExist < Struct.new(
|
2245
2438
|
:message)
|
2439
|
+
SENSITIVE = []
|
2246
2440
|
include Aws::Structure
|
2247
2441
|
end
|
2248
2442
|
|
@@ -2271,6 +2465,7 @@ module Aws::States
|
|
2271
2465
|
:resource,
|
2272
2466
|
:error,
|
2273
2467
|
:cause)
|
2468
|
+
SENSITIVE = [:error, :cause]
|
2274
2469
|
include Aws::Structure
|
2275
2470
|
end
|
2276
2471
|
|
@@ -2290,12 +2485,18 @@ module Aws::States
|
|
2290
2485
|
#
|
2291
2486
|
# @!attribute [rw] parameters
|
2292
2487
|
# The JSON data passed to the resource referenced in a task state.
|
2488
|
+
# Length constraints apply to the payload size, and are expressed as
|
2489
|
+
# bytes in UTF-8 encoding.
|
2293
2490
|
# @return [String]
|
2294
2491
|
#
|
2295
2492
|
# @!attribute [rw] timeout_in_seconds
|
2296
2493
|
# The maximum allowed duration of the task.
|
2297
2494
|
# @return [Integer]
|
2298
2495
|
#
|
2496
|
+
# @!attribute [rw] heartbeat_in_seconds
|
2497
|
+
# The maximum allowed duration between two heartbeats for the task.
|
2498
|
+
# @return [Integer]
|
2499
|
+
#
|
2299
2500
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/TaskScheduledEventDetails AWS API Documentation
|
2300
2501
|
#
|
2301
2502
|
class TaskScheduledEventDetails < Struct.new(
|
@@ -2303,7 +2504,9 @@ module Aws::States
|
|
2303
2504
|
:resource,
|
2304
2505
|
:region,
|
2305
2506
|
:parameters,
|
2306
|
-
:timeout_in_seconds
|
2507
|
+
:timeout_in_seconds,
|
2508
|
+
:heartbeat_in_seconds)
|
2509
|
+
SENSITIVE = [:parameters]
|
2307
2510
|
include Aws::Structure
|
2308
2511
|
end
|
2309
2512
|
|
@@ -2333,6 +2536,7 @@ module Aws::States
|
|
2333
2536
|
:resource,
|
2334
2537
|
:error,
|
2335
2538
|
:cause)
|
2539
|
+
SENSITIVE = [:error, :cause]
|
2336
2540
|
include Aws::Structure
|
2337
2541
|
end
|
2338
2542
|
|
@@ -2351,6 +2555,7 @@ module Aws::States
|
|
2351
2555
|
class TaskStartedEventDetails < Struct.new(
|
2352
2556
|
:resource_type,
|
2353
2557
|
:resource)
|
2558
|
+
SENSITIVE = []
|
2354
2559
|
include Aws::Structure
|
2355
2560
|
end
|
2356
2561
|
|
@@ -2380,6 +2585,7 @@ module Aws::States
|
|
2380
2585
|
:resource,
|
2381
2586
|
:error,
|
2382
2587
|
:cause)
|
2588
|
+
SENSITIVE = [:error, :cause]
|
2383
2589
|
include Aws::Structure
|
2384
2590
|
end
|
2385
2591
|
|
@@ -2394,15 +2600,23 @@ module Aws::States
|
|
2394
2600
|
# @return [String]
|
2395
2601
|
#
|
2396
2602
|
# @!attribute [rw] output
|
2397
|
-
# The response from a resource when a task has started.
|
2603
|
+
# The response from a resource when a task has started. Length
|
2604
|
+
# constraints apply to the payload size, and are expressed as bytes in
|
2605
|
+
# UTF-8 encoding.
|
2398
2606
|
# @return [String]
|
2399
2607
|
#
|
2608
|
+
# @!attribute [rw] output_details
|
2609
|
+
# Contains details about the output of an execution history event.
|
2610
|
+
# @return [Types::HistoryEventExecutionDataDetails]
|
2611
|
+
#
|
2400
2612
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/TaskSubmittedEventDetails AWS API Documentation
|
2401
2613
|
#
|
2402
2614
|
class TaskSubmittedEventDetails < Struct.new(
|
2403
2615
|
:resource_type,
|
2404
2616
|
:resource,
|
2405
|
-
:output
|
2617
|
+
:output,
|
2618
|
+
:output_details)
|
2619
|
+
SENSITIVE = [:output]
|
2406
2620
|
include Aws::Structure
|
2407
2621
|
end
|
2408
2622
|
|
@@ -2418,15 +2632,23 @@ module Aws::States
|
|
2418
2632
|
#
|
2419
2633
|
# @!attribute [rw] output
|
2420
2634
|
# The full JSON response from a resource when a task has succeeded.
|
2421
|
-
# This response becomes the output of the related task.
|
2635
|
+
# This response becomes the output of the related task. Length
|
2636
|
+
# constraints apply to the payload size, and are expressed as bytes in
|
2637
|
+
# UTF-8 encoding.
|
2422
2638
|
# @return [String]
|
2423
2639
|
#
|
2640
|
+
# @!attribute [rw] output_details
|
2641
|
+
# Contains details about the output of an execution history event.
|
2642
|
+
# @return [Types::HistoryEventExecutionDataDetails]
|
2643
|
+
#
|
2424
2644
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/TaskSucceededEventDetails AWS API Documentation
|
2425
2645
|
#
|
2426
2646
|
class TaskSucceededEventDetails < Struct.new(
|
2427
2647
|
:resource_type,
|
2428
2648
|
:resource,
|
2429
|
-
:output
|
2649
|
+
:output,
|
2650
|
+
:output_details)
|
2651
|
+
SENSITIVE = [:output]
|
2430
2652
|
include Aws::Structure
|
2431
2653
|
end
|
2432
2654
|
|
@@ -2437,6 +2659,7 @@ module Aws::States
|
|
2437
2659
|
#
|
2438
2660
|
class TaskTimedOut < Struct.new(
|
2439
2661
|
:message)
|
2662
|
+
SENSITIVE = []
|
2440
2663
|
include Aws::Structure
|
2441
2664
|
end
|
2442
2665
|
|
@@ -2466,6 +2689,7 @@ module Aws::States
|
|
2466
2689
|
:resource,
|
2467
2690
|
:error,
|
2468
2691
|
:cause)
|
2692
|
+
SENSITIVE = [:error, :cause]
|
2469
2693
|
include Aws::Structure
|
2470
2694
|
end
|
2471
2695
|
|
@@ -2487,6 +2711,7 @@ module Aws::States
|
|
2487
2711
|
class TooManyTags < Struct.new(
|
2488
2712
|
:message,
|
2489
2713
|
:resource_name)
|
2714
|
+
SENSITIVE = []
|
2490
2715
|
include Aws::Structure
|
2491
2716
|
end
|
2492
2717
|
|
@@ -2512,6 +2737,7 @@ module Aws::States
|
|
2512
2737
|
class UntagResourceInput < Struct.new(
|
2513
2738
|
:resource_arn,
|
2514
2739
|
:tag_keys)
|
2740
|
+
SENSITIVE = []
|
2515
2741
|
include Aws::Structure
|
2516
2742
|
end
|
2517
2743
|
|
@@ -2568,6 +2794,7 @@ module Aws::States
|
|
2568
2794
|
:definition,
|
2569
2795
|
:role_arn,
|
2570
2796
|
:logging_configuration)
|
2797
|
+
SENSITIVE = [:definition]
|
2571
2798
|
include Aws::Structure
|
2572
2799
|
end
|
2573
2800
|
|
@@ -2579,6 +2806,7 @@ module Aws::States
|
|
2579
2806
|
#
|
2580
2807
|
class UpdateStateMachineOutput < Struct.new(
|
2581
2808
|
:update_date)
|
2809
|
+
SENSITIVE = []
|
2582
2810
|
include Aws::Structure
|
2583
2811
|
end
|
2584
2812
|
|