aws-sdk-states 1.29.1 → 1.35.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 +5 -2
- data/lib/aws-sdk-states/client.rb +78 -14
- data/lib/aws-sdk-states/client_api.rb +46 -1
- data/lib/aws-sdk-states/errors.rb +18 -0
- data/lib/aws-sdk-states/resource.rb +2 -0
- data/lib/aws-sdk-states/types.rb +329 -29
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: acd90436a3db3983b7d80ee8408a48819f10a48e83ffe9558246b56f4d408d8d
|
4
|
+
data.tar.gz: 8164ec74b0c0531b1235fadc3203aa470d0ad1c777222aa412b87ad2d4f5d882
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: adb653ef52b2ca51789254e5926cbd220948cece45fd13a323fc81907bed789fbf6d221389ad686d4cdde0d9c9dd36e88aac466ee3b12358808e6cfaafbe1b45
|
7
|
+
data.tar.gz: 35a018ec57f935b7f5fac51ee0b2cea6469e8b5b62979cbf5576fdb8d670757ef65def8d22cede3a0d5fd68e52011bdd5992adc853799639ed3c208e7a0a73e1
|
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:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-states/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::States
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.35.0'
|
49
52
|
|
50
53
|
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:
|
@@ -83,13 +85,28 @@ module Aws::States
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
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
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::States
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# 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.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -429,11 +446,11 @@ module Aws::States
|
|
429
446
|
# <note markdown="1"> `CreateStateMachine` is an idempotent API. Subsequent requests won’t
|
430
447
|
# create a duplicate resource if it was already created.
|
431
448
|
# `CreateStateMachine`'s idempotency check is based on the state
|
432
|
-
# machine `name`, `definition`, `type`,
|
433
|
-
# following request has a different
|
434
|
-
# will ignore these differences and
|
435
|
-
#
|
436
|
-
# even if they are different.
|
449
|
+
# machine `name`, `definition`, `type`, `LoggingConfiguration` and
|
450
|
+
# `TracingConfiguration`. If a following request has a different
|
451
|
+
# `roleArn` or `tags`, Step Functions will ignore these differences and
|
452
|
+
# treat it as an idempotent request of the previous. In this case,
|
453
|
+
# `roleArn` and `tags` will not be updated, even if they are different.
|
437
454
|
#
|
438
455
|
# </note>
|
439
456
|
#
|
@@ -504,6 +521,9 @@ module Aws::States
|
|
504
521
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
|
505
522
|
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_iam-tags.html
|
506
523
|
#
|
524
|
+
# @option params [Types::TracingConfiguration] :tracing_configuration
|
525
|
+
# Selects whether AWS X-Ray tracing is enabled.
|
526
|
+
#
|
507
527
|
# @return [Types::CreateStateMachineOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
508
528
|
#
|
509
529
|
# * {Types::CreateStateMachineOutput#state_machine_arn #state_machine_arn} => String
|
@@ -533,6 +553,9 @@ module Aws::States
|
|
533
553
|
# value: "TagValue",
|
534
554
|
# },
|
535
555
|
# ],
|
556
|
+
# tracing_configuration: {
|
557
|
+
# enabled: false,
|
558
|
+
# },
|
536
559
|
# })
|
537
560
|
#
|
538
561
|
# @example Response structure
|
@@ -659,7 +682,10 @@ module Aws::States
|
|
659
682
|
# * {Types::DescribeExecutionOutput#start_date #start_date} => Time
|
660
683
|
# * {Types::DescribeExecutionOutput#stop_date #stop_date} => Time
|
661
684
|
# * {Types::DescribeExecutionOutput#input #input} => String
|
685
|
+
# * {Types::DescribeExecutionOutput#input_details #input_details} => Types::CloudWatchEventsExecutionDataDetails
|
662
686
|
# * {Types::DescribeExecutionOutput#output #output} => String
|
687
|
+
# * {Types::DescribeExecutionOutput#output_details #output_details} => Types::CloudWatchEventsExecutionDataDetails
|
688
|
+
# * {Types::DescribeExecutionOutput#trace_header #trace_header} => String
|
663
689
|
#
|
664
690
|
# @example Request syntax with placeholder values
|
665
691
|
#
|
@@ -676,7 +702,10 @@ module Aws::States
|
|
676
702
|
# resp.start_date #=> Time
|
677
703
|
# resp.stop_date #=> Time
|
678
704
|
# resp.input #=> String
|
705
|
+
# resp.input_details.included #=> Boolean
|
679
706
|
# resp.output #=> String
|
707
|
+
# resp.output_details.included #=> Boolean
|
708
|
+
# resp.trace_header #=> String
|
680
709
|
#
|
681
710
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/DescribeExecution AWS API Documentation
|
682
711
|
#
|
@@ -707,6 +736,7 @@ module Aws::States
|
|
707
736
|
# * {Types::DescribeStateMachineOutput#type #type} => String
|
708
737
|
# * {Types::DescribeStateMachineOutput#creation_date #creation_date} => Time
|
709
738
|
# * {Types::DescribeStateMachineOutput#logging_configuration #logging_configuration} => Types::LoggingConfiguration
|
739
|
+
# * {Types::DescribeStateMachineOutput#tracing_configuration #tracing_configuration} => Types::TracingConfiguration
|
710
740
|
#
|
711
741
|
# @example Request syntax with placeholder values
|
712
742
|
#
|
@@ -727,6 +757,7 @@ module Aws::States
|
|
727
757
|
# resp.logging_configuration.include_execution_data #=> Boolean
|
728
758
|
# resp.logging_configuration.destinations #=> Array
|
729
759
|
# resp.logging_configuration.destinations[0].cloud_watch_logs_log_group.log_group_arn #=> String
|
760
|
+
# resp.tracing_configuration.enabled #=> Boolean
|
730
761
|
#
|
731
762
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/DescribeStateMachine AWS API Documentation
|
732
763
|
#
|
@@ -758,6 +789,7 @@ module Aws::States
|
|
758
789
|
# * {Types::DescribeStateMachineForExecutionOutput#role_arn #role_arn} => String
|
759
790
|
# * {Types::DescribeStateMachineForExecutionOutput#update_date #update_date} => Time
|
760
791
|
# * {Types::DescribeStateMachineForExecutionOutput#logging_configuration #logging_configuration} => Types::LoggingConfiguration
|
792
|
+
# * {Types::DescribeStateMachineForExecutionOutput#tracing_configuration #tracing_configuration} => Types::TracingConfiguration
|
761
793
|
#
|
762
794
|
# @example Request syntax with placeholder values
|
763
795
|
#
|
@@ -776,6 +808,7 @@ module Aws::States
|
|
776
808
|
# resp.logging_configuration.include_execution_data #=> Boolean
|
777
809
|
# resp.logging_configuration.destinations #=> Array
|
778
810
|
# resp.logging_configuration.destinations[0].cloud_watch_logs_log_group.log_group_arn #=> String
|
811
|
+
# resp.tracing_configuration.enabled #=> Boolean
|
779
812
|
#
|
780
813
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/DescribeStateMachineForExecution AWS API Documentation
|
781
814
|
#
|
@@ -878,6 +911,10 @@ module Aws::States
|
|
878
911
|
# after 24 hours. Using an expired pagination token will return an *HTTP
|
879
912
|
# 400 InvalidToken* error.
|
880
913
|
#
|
914
|
+
# @option params [Boolean] :include_execution_data
|
915
|
+
# You can select whether execution data (input or output of a history
|
916
|
+
# event) is returned. The default is `true`.
|
917
|
+
#
|
881
918
|
# @return [Types::GetExecutionHistoryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
882
919
|
#
|
883
920
|
# * {Types::GetExecutionHistoryOutput#events #events} => Array<Types::HistoryEvent>
|
@@ -892,6 +929,7 @@ module Aws::States
|
|
892
929
|
# max_results: 1,
|
893
930
|
# reverse_order: false,
|
894
931
|
# next_token: "PageToken",
|
932
|
+
# include_execution_data: false,
|
895
933
|
# })
|
896
934
|
#
|
897
935
|
# @example Response structure
|
@@ -907,10 +945,12 @@ module Aws::States
|
|
907
945
|
# resp.events[0].activity_schedule_failed_event_details.cause #=> String
|
908
946
|
# resp.events[0].activity_scheduled_event_details.resource #=> String
|
909
947
|
# resp.events[0].activity_scheduled_event_details.input #=> String
|
948
|
+
# resp.events[0].activity_scheduled_event_details.input_details.truncated #=> Boolean
|
910
949
|
# resp.events[0].activity_scheduled_event_details.timeout_in_seconds #=> Integer
|
911
950
|
# resp.events[0].activity_scheduled_event_details.heartbeat_in_seconds #=> Integer
|
912
951
|
# resp.events[0].activity_started_event_details.worker_name #=> String
|
913
952
|
# resp.events[0].activity_succeeded_event_details.output #=> String
|
953
|
+
# resp.events[0].activity_succeeded_event_details.output_details.truncated #=> Boolean
|
914
954
|
# resp.events[0].activity_timed_out_event_details.error #=> String
|
915
955
|
# resp.events[0].activity_timed_out_event_details.cause #=> String
|
916
956
|
# resp.events[0].task_failed_event_details.resource_type #=> String
|
@@ -922,6 +962,7 @@ module Aws::States
|
|
922
962
|
# resp.events[0].task_scheduled_event_details.region #=> String
|
923
963
|
# resp.events[0].task_scheduled_event_details.parameters #=> String
|
924
964
|
# resp.events[0].task_scheduled_event_details.timeout_in_seconds #=> Integer
|
965
|
+
# resp.events[0].task_scheduled_event_details.heartbeat_in_seconds #=> Integer
|
925
966
|
# resp.events[0].task_start_failed_event_details.resource_type #=> String
|
926
967
|
# resp.events[0].task_start_failed_event_details.resource #=> String
|
927
968
|
# resp.events[0].task_start_failed_event_details.error #=> String
|
@@ -935,9 +976,11 @@ module Aws::States
|
|
935
976
|
# resp.events[0].task_submitted_event_details.resource_type #=> String
|
936
977
|
# resp.events[0].task_submitted_event_details.resource #=> String
|
937
978
|
# resp.events[0].task_submitted_event_details.output #=> String
|
979
|
+
# resp.events[0].task_submitted_event_details.output_details.truncated #=> Boolean
|
938
980
|
# resp.events[0].task_succeeded_event_details.resource_type #=> String
|
939
981
|
# resp.events[0].task_succeeded_event_details.resource #=> String
|
940
982
|
# resp.events[0].task_succeeded_event_details.output #=> String
|
983
|
+
# resp.events[0].task_succeeded_event_details.output_details.truncated #=> Boolean
|
941
984
|
# resp.events[0].task_timed_out_event_details.resource_type #=> String
|
942
985
|
# resp.events[0].task_timed_out_event_details.resource #=> String
|
943
986
|
# resp.events[0].task_timed_out_event_details.error #=> String
|
@@ -945,8 +988,10 @@ module Aws::States
|
|
945
988
|
# resp.events[0].execution_failed_event_details.error #=> String
|
946
989
|
# resp.events[0].execution_failed_event_details.cause #=> String
|
947
990
|
# resp.events[0].execution_started_event_details.input #=> String
|
991
|
+
# resp.events[0].execution_started_event_details.input_details.truncated #=> Boolean
|
948
992
|
# resp.events[0].execution_started_event_details.role_arn #=> String
|
949
993
|
# resp.events[0].execution_succeeded_event_details.output #=> String
|
994
|
+
# resp.events[0].execution_succeeded_event_details.output_details.truncated #=> Boolean
|
950
995
|
# resp.events[0].execution_aborted_event_details.error #=> String
|
951
996
|
# resp.events[0].execution_aborted_event_details.cause #=> String
|
952
997
|
# resp.events[0].execution_timed_out_event_details.error #=> String
|
@@ -966,16 +1011,20 @@ module Aws::States
|
|
966
1011
|
# resp.events[0].lambda_function_schedule_failed_event_details.cause #=> String
|
967
1012
|
# resp.events[0].lambda_function_scheduled_event_details.resource #=> String
|
968
1013
|
# resp.events[0].lambda_function_scheduled_event_details.input #=> String
|
1014
|
+
# resp.events[0].lambda_function_scheduled_event_details.input_details.truncated #=> Boolean
|
969
1015
|
# resp.events[0].lambda_function_scheduled_event_details.timeout_in_seconds #=> Integer
|
970
1016
|
# resp.events[0].lambda_function_start_failed_event_details.error #=> String
|
971
1017
|
# resp.events[0].lambda_function_start_failed_event_details.cause #=> String
|
972
1018
|
# resp.events[0].lambda_function_succeeded_event_details.output #=> String
|
1019
|
+
# resp.events[0].lambda_function_succeeded_event_details.output_details.truncated #=> Boolean
|
973
1020
|
# resp.events[0].lambda_function_timed_out_event_details.error #=> String
|
974
1021
|
# resp.events[0].lambda_function_timed_out_event_details.cause #=> String
|
975
1022
|
# resp.events[0].state_entered_event_details.name #=> String
|
976
1023
|
# resp.events[0].state_entered_event_details.input #=> String
|
1024
|
+
# resp.events[0].state_entered_event_details.input_details.truncated #=> Boolean
|
977
1025
|
# resp.events[0].state_exited_event_details.name #=> String
|
978
1026
|
# resp.events[0].state_exited_event_details.output #=> String
|
1027
|
+
# resp.events[0].state_exited_event_details.output_details.truncated #=> Boolean
|
979
1028
|
# resp.next_token #=> String
|
980
1029
|
#
|
981
1030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/GetExecutionHistory AWS API Documentation
|
@@ -1333,7 +1382,8 @@ module Aws::States
|
|
1333
1382
|
# [1]: https://docs.aws.amazon.com/step-functions/latest/dg/input-output-contextobject.html
|
1334
1383
|
#
|
1335
1384
|
# @option params [required, String] :output
|
1336
|
-
# The JSON output of the task.
|
1385
|
+
# The JSON output of the task. Length constraints apply to the payload
|
1386
|
+
# size, and are expressed as bytes in UTF-8 encoding.
|
1337
1387
|
#
|
1338
1388
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1339
1389
|
#
|
@@ -1402,6 +1452,13 @@ module Aws::States
|
|
1402
1452
|
#
|
1403
1453
|
# </note>
|
1404
1454
|
#
|
1455
|
+
# Length constraints apply to the payload size, and are expressed as
|
1456
|
+
# bytes in UTF-8 encoding.
|
1457
|
+
#
|
1458
|
+
# @option params [String] :trace_header
|
1459
|
+
# Passes the AWS X-Ray trace header. The trace header can also be passed
|
1460
|
+
# in the request payload.
|
1461
|
+
#
|
1405
1462
|
# @return [Types::StartExecutionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1406
1463
|
#
|
1407
1464
|
# * {Types::StartExecutionOutput#execution_arn #execution_arn} => String
|
@@ -1413,6 +1470,7 @@ module Aws::States
|
|
1413
1470
|
# state_machine_arn: "Arn", # required
|
1414
1471
|
# name: "Name",
|
1415
1472
|
# input: "SensitiveData",
|
1473
|
+
# trace_header: "TraceHeader",
|
1416
1474
|
# })
|
1417
1475
|
#
|
1418
1476
|
# @example Response structure
|
@@ -1572,6 +1630,9 @@ module Aws::States
|
|
1572
1630
|
# The `LoggingConfiguration` data type is used to set CloudWatch Logs
|
1573
1631
|
# options.
|
1574
1632
|
#
|
1633
|
+
# @option params [Types::TracingConfiguration] :tracing_configuration
|
1634
|
+
# Selects whether AWS X-Ray tracing is enabled.
|
1635
|
+
#
|
1575
1636
|
# @return [Types::UpdateStateMachineOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1576
1637
|
#
|
1577
1638
|
# * {Types::UpdateStateMachineOutput#update_date #update_date} => Time
|
@@ -1593,6 +1654,9 @@ module Aws::States
|
|
1593
1654
|
# },
|
1594
1655
|
# ],
|
1595
1656
|
# },
|
1657
|
+
# tracing_configuration: {
|
1658
|
+
# enabled: false,
|
1659
|
+
# },
|
1596
1660
|
# })
|
1597
1661
|
#
|
1598
1662
|
# @example Response structure
|
@@ -1621,7 +1685,7 @@ module Aws::States
|
|
1621
1685
|
params: params,
|
1622
1686
|
config: config)
|
1623
1687
|
context[:gem_name] = 'aws-sdk-states'
|
1624
|
-
context[:gem_version] = '1.
|
1688
|
+
context[:gem_version] = '1.35.0'
|
1625
1689
|
Seahorse::Client::Request.new(handlers, context)
|
1626
1690
|
end
|
1627
1691
|
|
@@ -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')
|
@@ -42,6 +45,7 @@ module Aws::States
|
|
42
45
|
DescribeStateMachineForExecutionOutput = Shapes::StructureShape.new(name: 'DescribeStateMachineForExecutionOutput')
|
43
46
|
DescribeStateMachineInput = Shapes::StructureShape.new(name: 'DescribeStateMachineInput')
|
44
47
|
DescribeStateMachineOutput = Shapes::StructureShape.new(name: 'DescribeStateMachineOutput')
|
48
|
+
Enabled = Shapes::BooleanShape.new(name: 'Enabled')
|
45
49
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
46
50
|
EventId = Shapes::IntegerShape.new(name: 'EventId')
|
47
51
|
ExecutionAbortedEventDetails = Shapes::StructureShape.new(name: 'ExecutionAbortedEventDetails')
|
@@ -60,10 +64,12 @@ module Aws::States
|
|
60
64
|
GetExecutionHistoryInput = Shapes::StructureShape.new(name: 'GetExecutionHistoryInput')
|
61
65
|
GetExecutionHistoryOutput = Shapes::StructureShape.new(name: 'GetExecutionHistoryOutput')
|
62
66
|
HistoryEvent = Shapes::StructureShape.new(name: 'HistoryEvent')
|
67
|
+
HistoryEventExecutionDataDetails = Shapes::StructureShape.new(name: 'HistoryEventExecutionDataDetails')
|
63
68
|
HistoryEventList = Shapes::ListShape.new(name: 'HistoryEventList')
|
64
69
|
HistoryEventType = Shapes::StringShape.new(name: 'HistoryEventType')
|
65
70
|
Identity = Shapes::StringShape.new(name: 'Identity')
|
66
71
|
IncludeExecutionData = Shapes::BooleanShape.new(name: 'IncludeExecutionData')
|
72
|
+
IncludeExecutionDataGetExecutionHistory = Shapes::BooleanShape.new(name: 'IncludeExecutionDataGetExecutionHistory')
|
67
73
|
InvalidArn = Shapes::StructureShape.new(name: 'InvalidArn')
|
68
74
|
InvalidDefinition = Shapes::StructureShape.new(name: 'InvalidDefinition')
|
69
75
|
InvalidExecutionInput = Shapes::StructureShape.new(name: 'InvalidExecutionInput')
|
@@ -71,6 +77,7 @@ module Aws::States
|
|
71
77
|
InvalidName = Shapes::StructureShape.new(name: 'InvalidName')
|
72
78
|
InvalidOutput = Shapes::StructureShape.new(name: 'InvalidOutput')
|
73
79
|
InvalidToken = Shapes::StructureShape.new(name: 'InvalidToken')
|
80
|
+
InvalidTracingConfiguration = Shapes::StructureShape.new(name: 'InvalidTracingConfiguration')
|
74
81
|
LambdaFunctionFailedEventDetails = Shapes::StructureShape.new(name: 'LambdaFunctionFailedEventDetails')
|
75
82
|
LambdaFunctionScheduleFailedEventDetails = Shapes::StructureShape.new(name: 'LambdaFunctionScheduleFailedEventDetails')
|
76
83
|
LambdaFunctionScheduledEventDetails = Shapes::StructureShape.new(name: 'LambdaFunctionScheduledEventDetails')
|
@@ -144,11 +151,15 @@ module Aws::States
|
|
144
151
|
TimeoutInSeconds = Shapes::IntegerShape.new(name: 'TimeoutInSeconds')
|
145
152
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
146
153
|
TooManyTags = Shapes::StructureShape.new(name: 'TooManyTags')
|
154
|
+
TraceHeader = Shapes::StringShape.new(name: 'TraceHeader')
|
155
|
+
TracingConfiguration = Shapes::StructureShape.new(name: 'TracingConfiguration')
|
147
156
|
UnsignedInteger = Shapes::IntegerShape.new(name: 'UnsignedInteger')
|
148
157
|
UntagResourceInput = Shapes::StructureShape.new(name: 'UntagResourceInput')
|
149
158
|
UntagResourceOutput = Shapes::StructureShape.new(name: 'UntagResourceOutput')
|
150
159
|
UpdateStateMachineInput = Shapes::StructureShape.new(name: 'UpdateStateMachineInput')
|
151
160
|
UpdateStateMachineOutput = Shapes::StructureShape.new(name: 'UpdateStateMachineOutput')
|
161
|
+
included = Shapes::BooleanShape.new(name: 'included')
|
162
|
+
truncated = Shapes::BooleanShape.new(name: 'truncated')
|
152
163
|
|
153
164
|
ActivityDoesNotExist.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
154
165
|
ActivityDoesNotExist.struct_class = Types::ActivityDoesNotExist
|
@@ -173,6 +184,7 @@ module Aws::States
|
|
173
184
|
|
174
185
|
ActivityScheduledEventDetails.add_member(:resource, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "resource"))
|
175
186
|
ActivityScheduledEventDetails.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "input"))
|
187
|
+
ActivityScheduledEventDetails.add_member(:input_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "inputDetails"))
|
176
188
|
ActivityScheduledEventDetails.add_member(:timeout_in_seconds, Shapes::ShapeRef.new(shape: TimeoutInSeconds, location_name: "timeoutInSeconds", metadata: {"box"=>true}))
|
177
189
|
ActivityScheduledEventDetails.add_member(:heartbeat_in_seconds, Shapes::ShapeRef.new(shape: TimeoutInSeconds, location_name: "heartbeatInSeconds", metadata: {"box"=>true}))
|
178
190
|
ActivityScheduledEventDetails.struct_class = Types::ActivityScheduledEventDetails
|
@@ -181,6 +193,7 @@ module Aws::States
|
|
181
193
|
ActivityStartedEventDetails.struct_class = Types::ActivityStartedEventDetails
|
182
194
|
|
183
195
|
ActivitySucceededEventDetails.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
196
|
+
ActivitySucceededEventDetails.add_member(:output_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "outputDetails"))
|
184
197
|
ActivitySucceededEventDetails.struct_class = Types::ActivitySucceededEventDetails
|
185
198
|
|
186
199
|
ActivityTimedOutEventDetails.add_member(:error, Shapes::ShapeRef.new(shape: SensitiveError, location_name: "error"))
|
@@ -190,6 +203,9 @@ module Aws::States
|
|
190
203
|
ActivityWorkerLimitExceeded.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
191
204
|
ActivityWorkerLimitExceeded.struct_class = Types::ActivityWorkerLimitExceeded
|
192
205
|
|
206
|
+
CloudWatchEventsExecutionDataDetails.add_member(:included, Shapes::ShapeRef.new(shape: included, location_name: "included"))
|
207
|
+
CloudWatchEventsExecutionDataDetails.struct_class = Types::CloudWatchEventsExecutionDataDetails
|
208
|
+
|
193
209
|
CloudWatchLogsLogGroup.add_member(:log_group_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "logGroupArn"))
|
194
210
|
CloudWatchLogsLogGroup.struct_class = Types::CloudWatchLogsLogGroup
|
195
211
|
|
@@ -207,6 +223,7 @@ module Aws::States
|
|
207
223
|
CreateStateMachineInput.add_member(:type, Shapes::ShapeRef.new(shape: StateMachineType, location_name: "type"))
|
208
224
|
CreateStateMachineInput.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: LoggingConfiguration, location_name: "loggingConfiguration"))
|
209
225
|
CreateStateMachineInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
226
|
+
CreateStateMachineInput.add_member(:tracing_configuration, Shapes::ShapeRef.new(shape: TracingConfiguration, location_name: "tracingConfiguration"))
|
210
227
|
CreateStateMachineInput.struct_class = Types::CreateStateMachineInput
|
211
228
|
|
212
229
|
CreateStateMachineOutput.add_member(:state_machine_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "stateMachineArn"))
|
@@ -240,8 +257,11 @@ module Aws::States
|
|
240
257
|
DescribeExecutionOutput.add_member(:status, Shapes::ShapeRef.new(shape: ExecutionStatus, required: true, location_name: "status"))
|
241
258
|
DescribeExecutionOutput.add_member(:start_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "startDate"))
|
242
259
|
DescribeExecutionOutput.add_member(:stop_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "stopDate"))
|
243
|
-
DescribeExecutionOutput.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveData,
|
260
|
+
DescribeExecutionOutput.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "input"))
|
261
|
+
DescribeExecutionOutput.add_member(:input_details, Shapes::ShapeRef.new(shape: CloudWatchEventsExecutionDataDetails, location_name: "inputDetails"))
|
244
262
|
DescribeExecutionOutput.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
263
|
+
DescribeExecutionOutput.add_member(:output_details, Shapes::ShapeRef.new(shape: CloudWatchEventsExecutionDataDetails, location_name: "outputDetails"))
|
264
|
+
DescribeExecutionOutput.add_member(:trace_header, Shapes::ShapeRef.new(shape: TraceHeader, location_name: "traceHeader"))
|
245
265
|
DescribeExecutionOutput.struct_class = Types::DescribeExecutionOutput
|
246
266
|
|
247
267
|
DescribeStateMachineForExecutionInput.add_member(:execution_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "executionArn"))
|
@@ -253,6 +273,7 @@ module Aws::States
|
|
253
273
|
DescribeStateMachineForExecutionOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "roleArn"))
|
254
274
|
DescribeStateMachineForExecutionOutput.add_member(:update_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updateDate"))
|
255
275
|
DescribeStateMachineForExecutionOutput.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: LoggingConfiguration, location_name: "loggingConfiguration"))
|
276
|
+
DescribeStateMachineForExecutionOutput.add_member(:tracing_configuration, Shapes::ShapeRef.new(shape: TracingConfiguration, location_name: "tracingConfiguration"))
|
256
277
|
DescribeStateMachineForExecutionOutput.struct_class = Types::DescribeStateMachineForExecutionOutput
|
257
278
|
|
258
279
|
DescribeStateMachineInput.add_member(:state_machine_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "stateMachineArn"))
|
@@ -266,6 +287,7 @@ module Aws::States
|
|
266
287
|
DescribeStateMachineOutput.add_member(:type, Shapes::ShapeRef.new(shape: StateMachineType, required: true, location_name: "type"))
|
267
288
|
DescribeStateMachineOutput.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "creationDate"))
|
268
289
|
DescribeStateMachineOutput.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: LoggingConfiguration, location_name: "loggingConfiguration"))
|
290
|
+
DescribeStateMachineOutput.add_member(:tracing_configuration, Shapes::ShapeRef.new(shape: TracingConfiguration, location_name: "tracingConfiguration"))
|
269
291
|
DescribeStateMachineOutput.struct_class = Types::DescribeStateMachineOutput
|
270
292
|
|
271
293
|
ExecutionAbortedEventDetails.add_member(:error, Shapes::ShapeRef.new(shape: SensitiveError, location_name: "error"))
|
@@ -296,10 +318,12 @@ module Aws::States
|
|
296
318
|
ExecutionListItem.struct_class = Types::ExecutionListItem
|
297
319
|
|
298
320
|
ExecutionStartedEventDetails.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "input"))
|
321
|
+
ExecutionStartedEventDetails.add_member(:input_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "inputDetails"))
|
299
322
|
ExecutionStartedEventDetails.add_member(:role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "roleArn"))
|
300
323
|
ExecutionStartedEventDetails.struct_class = Types::ExecutionStartedEventDetails
|
301
324
|
|
302
325
|
ExecutionSucceededEventDetails.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
326
|
+
ExecutionSucceededEventDetails.add_member(:output_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "outputDetails"))
|
303
327
|
ExecutionSucceededEventDetails.struct_class = Types::ExecutionSucceededEventDetails
|
304
328
|
|
305
329
|
ExecutionTimedOutEventDetails.add_member(:error, Shapes::ShapeRef.new(shape: SensitiveError, location_name: "error"))
|
@@ -318,6 +342,7 @@ module Aws::States
|
|
318
342
|
GetExecutionHistoryInput.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "maxResults"))
|
319
343
|
GetExecutionHistoryInput.add_member(:reverse_order, Shapes::ShapeRef.new(shape: ReverseOrder, location_name: "reverseOrder"))
|
320
344
|
GetExecutionHistoryInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PageToken, location_name: "nextToken"))
|
345
|
+
GetExecutionHistoryInput.add_member(:include_execution_data, Shapes::ShapeRef.new(shape: IncludeExecutionDataGetExecutionHistory, location_name: "includeExecutionData"))
|
321
346
|
GetExecutionHistoryInput.struct_class = Types::GetExecutionHistoryInput
|
322
347
|
|
323
348
|
GetExecutionHistoryOutput.add_member(:events, Shapes::ShapeRef.new(shape: HistoryEventList, required: true, location_name: "events"))
|
@@ -362,6 +387,9 @@ module Aws::States
|
|
362
387
|
HistoryEvent.add_member(:state_exited_event_details, Shapes::ShapeRef.new(shape: StateExitedEventDetails, location_name: "stateExitedEventDetails"))
|
363
388
|
HistoryEvent.struct_class = Types::HistoryEvent
|
364
389
|
|
390
|
+
HistoryEventExecutionDataDetails.add_member(:truncated, Shapes::ShapeRef.new(shape: truncated, location_name: "truncated"))
|
391
|
+
HistoryEventExecutionDataDetails.struct_class = Types::HistoryEventExecutionDataDetails
|
392
|
+
|
365
393
|
HistoryEventList.member = Shapes::ShapeRef.new(shape: HistoryEvent)
|
366
394
|
|
367
395
|
InvalidArn.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -385,6 +413,9 @@ module Aws::States
|
|
385
413
|
InvalidToken.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
386
414
|
InvalidToken.struct_class = Types::InvalidToken
|
387
415
|
|
416
|
+
InvalidTracingConfiguration.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
417
|
+
InvalidTracingConfiguration.struct_class = Types::InvalidTracingConfiguration
|
418
|
+
|
388
419
|
LambdaFunctionFailedEventDetails.add_member(:error, Shapes::ShapeRef.new(shape: SensitiveError, location_name: "error"))
|
389
420
|
LambdaFunctionFailedEventDetails.add_member(:cause, Shapes::ShapeRef.new(shape: SensitiveCause, location_name: "cause"))
|
390
421
|
LambdaFunctionFailedEventDetails.struct_class = Types::LambdaFunctionFailedEventDetails
|
@@ -395,6 +426,7 @@ module Aws::States
|
|
395
426
|
|
396
427
|
LambdaFunctionScheduledEventDetails.add_member(:resource, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "resource"))
|
397
428
|
LambdaFunctionScheduledEventDetails.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "input"))
|
429
|
+
LambdaFunctionScheduledEventDetails.add_member(:input_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "inputDetails"))
|
398
430
|
LambdaFunctionScheduledEventDetails.add_member(:timeout_in_seconds, Shapes::ShapeRef.new(shape: TimeoutInSeconds, location_name: "timeoutInSeconds", metadata: {"box"=>true}))
|
399
431
|
LambdaFunctionScheduledEventDetails.struct_class = Types::LambdaFunctionScheduledEventDetails
|
400
432
|
|
@@ -403,6 +435,7 @@ module Aws::States
|
|
403
435
|
LambdaFunctionStartFailedEventDetails.struct_class = Types::LambdaFunctionStartFailedEventDetails
|
404
436
|
|
405
437
|
LambdaFunctionSucceededEventDetails.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
438
|
+
LambdaFunctionSucceededEventDetails.add_member(:output_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "outputDetails"))
|
406
439
|
LambdaFunctionSucceededEventDetails.struct_class = Types::LambdaFunctionSucceededEventDetails
|
407
440
|
|
408
441
|
LambdaFunctionTimedOutEventDetails.add_member(:error, Shapes::ShapeRef.new(shape: SensitiveError, location_name: "error"))
|
@@ -486,6 +519,7 @@ module Aws::States
|
|
486
519
|
StartExecutionInput.add_member(:state_machine_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "stateMachineArn"))
|
487
520
|
StartExecutionInput.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
|
488
521
|
StartExecutionInput.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "input"))
|
522
|
+
StartExecutionInput.add_member(:trace_header, Shapes::ShapeRef.new(shape: TraceHeader, location_name: "traceHeader"))
|
489
523
|
StartExecutionInput.struct_class = Types::StartExecutionInput
|
490
524
|
|
491
525
|
StartExecutionOutput.add_member(:execution_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "executionArn"))
|
@@ -494,10 +528,12 @@ module Aws::States
|
|
494
528
|
|
495
529
|
StateEnteredEventDetails.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
496
530
|
StateEnteredEventDetails.add_member(:input, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "input"))
|
531
|
+
StateEnteredEventDetails.add_member(:input_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "inputDetails"))
|
497
532
|
StateEnteredEventDetails.struct_class = Types::StateEnteredEventDetails
|
498
533
|
|
499
534
|
StateExitedEventDetails.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
500
535
|
StateExitedEventDetails.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
536
|
+
StateExitedEventDetails.add_member(:output_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "outputDetails"))
|
501
537
|
StateExitedEventDetails.struct_class = Types::StateExitedEventDetails
|
502
538
|
|
503
539
|
StateMachineAlreadyExists.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -559,6 +595,7 @@ module Aws::States
|
|
559
595
|
TaskScheduledEventDetails.add_member(:region, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "region"))
|
560
596
|
TaskScheduledEventDetails.add_member(:parameters, Shapes::ShapeRef.new(shape: ConnectorParameters, required: true, location_name: "parameters"))
|
561
597
|
TaskScheduledEventDetails.add_member(:timeout_in_seconds, Shapes::ShapeRef.new(shape: TimeoutInSeconds, location_name: "timeoutInSeconds", metadata: {"box"=>true}))
|
598
|
+
TaskScheduledEventDetails.add_member(:heartbeat_in_seconds, Shapes::ShapeRef.new(shape: TimeoutInSeconds, location_name: "heartbeatInSeconds", metadata: {"box"=>true}))
|
562
599
|
TaskScheduledEventDetails.struct_class = Types::TaskScheduledEventDetails
|
563
600
|
|
564
601
|
TaskStartFailedEventDetails.add_member(:resource_type, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "resourceType"))
|
@@ -580,11 +617,13 @@ module Aws::States
|
|
580
617
|
TaskSubmittedEventDetails.add_member(:resource_type, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "resourceType"))
|
581
618
|
TaskSubmittedEventDetails.add_member(:resource, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "resource"))
|
582
619
|
TaskSubmittedEventDetails.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
620
|
+
TaskSubmittedEventDetails.add_member(:output_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "outputDetails"))
|
583
621
|
TaskSubmittedEventDetails.struct_class = Types::TaskSubmittedEventDetails
|
584
622
|
|
585
623
|
TaskSucceededEventDetails.add_member(:resource_type, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "resourceType"))
|
586
624
|
TaskSucceededEventDetails.add_member(:resource, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "resource"))
|
587
625
|
TaskSucceededEventDetails.add_member(:output, Shapes::ShapeRef.new(shape: SensitiveData, location_name: "output"))
|
626
|
+
TaskSucceededEventDetails.add_member(:output_details, Shapes::ShapeRef.new(shape: HistoryEventExecutionDataDetails, location_name: "outputDetails"))
|
588
627
|
TaskSucceededEventDetails.struct_class = Types::TaskSucceededEventDetails
|
589
628
|
|
590
629
|
TaskTimedOut.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -600,6 +639,9 @@ module Aws::States
|
|
600
639
|
TooManyTags.add_member(:resource_name, Shapes::ShapeRef.new(shape: Arn, location_name: "resourceName"))
|
601
640
|
TooManyTags.struct_class = Types::TooManyTags
|
602
641
|
|
642
|
+
TracingConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Enabled, location_name: "enabled"))
|
643
|
+
TracingConfiguration.struct_class = Types::TracingConfiguration
|
644
|
+
|
603
645
|
UntagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "resourceArn"))
|
604
646
|
UntagResourceInput.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "tagKeys"))
|
605
647
|
UntagResourceInput.struct_class = Types::UntagResourceInput
|
@@ -610,6 +652,7 @@ module Aws::States
|
|
610
652
|
UpdateStateMachineInput.add_member(:definition, Shapes::ShapeRef.new(shape: Definition, location_name: "definition"))
|
611
653
|
UpdateStateMachineInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "roleArn"))
|
612
654
|
UpdateStateMachineInput.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: LoggingConfiguration, location_name: "loggingConfiguration"))
|
655
|
+
UpdateStateMachineInput.add_member(:tracing_configuration, Shapes::ShapeRef.new(shape: TracingConfiguration, location_name: "tracingConfiguration"))
|
613
656
|
UpdateStateMachineInput.struct_class = Types::UpdateStateMachineInput
|
614
657
|
|
615
658
|
UpdateStateMachineOutput.add_member(:update_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updateDate"))
|
@@ -655,6 +698,7 @@ module Aws::States
|
|
655
698
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDefinition)
|
656
699
|
o.errors << Shapes::ShapeRef.new(shape: InvalidName)
|
657
700
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLoggingConfiguration)
|
701
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidTracingConfiguration)
|
658
702
|
o.errors << Shapes::ShapeRef.new(shape: StateMachineAlreadyExists)
|
659
703
|
o.errors << Shapes::ShapeRef.new(shape: StateMachineDeleting)
|
660
704
|
o.errors << Shapes::ShapeRef.new(shape: StateMachineLimitExceeded)
|
@@ -895,6 +939,7 @@ module Aws::States
|
|
895
939
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArn)
|
896
940
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDefinition)
|
897
941
|
o.errors << Shapes::ShapeRef.new(shape: InvalidLoggingConfiguration)
|
942
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidTracingConfiguration)
|
898
943
|
o.errors << Shapes::ShapeRef.new(shape: MissingRequiredParameter)
|
899
944
|
o.errors << Shapes::ShapeRef.new(shape: StateMachineDeleting)
|
900
945
|
o.errors << Shapes::ShapeRef.new(shape: StateMachineDoesNotExist)
|