aws-sdk-states 1.90.0 → 1.91.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ca54693d7c5e8682dbd7a09d5cfb18c0ab27e508dd1aa986c6823b5db4371e3b
4
- data.tar.gz: 033ce75d5e115591bb8e344b7efa0b36754e250ed0e48f9a543eb524f9bd60b1
3
+ metadata.gz: 2227f54e8ee8cd7d3e665fc69301172cf3918a1b9d8a7f21b8b699ac210e883d
4
+ data.tar.gz: f382e0a2b9fe0a4d59b0ef3873ff64fd7b7e1ec36d4e18118a90e38d23b43f61
5
5
  SHA512:
6
- metadata.gz: 31b513f4f033d56cf18b51a2f8cf292a14c15a763e732d1fd45acc34c7e59735d6938264d0ef4b212904e6070d2fc0562119a8efb47e688fce4ee803db1e3238
7
- data.tar.gz: 4127cddb57d7abd292798c5ecb48d0a513c372771064cdd1cebc1450877f47d002c4c7d6b59a8589f2bc2f3be24b6b236178302524ec3124c3fbc32ec0189881
6
+ metadata.gz: 40522560f3d583983359d47de9f114e3d132975093a68ba63d9727c34339905306d8daf76c5b4295333c1eb552cc0d3b9b2ce7d0c0c1de821ea48fd69bd70bd8
7
+ data.tar.gz: a9ef1b4dc7cf6f14aa1a39951bcd2edfbffd12eca818007aeaf4832e9bcb24eddfce6401a640d7c055db7093ad9a6d3f04f38a1913015e176b23cd559b9759a4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.91.0 (2025-07-16)
5
+ ------------------
6
+
7
+ * Feature - Doc-only update to introduction, and edits to clarify input parameter and the set of control characters.
8
+
4
9
  1.90.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.90.0
1
+ 1.91.0
@@ -515,7 +515,11 @@ module Aws::States
515
515
  #
516
516
  # * special characters `` " # % \ ^ | ~ ` $ & , ; : / ``
517
517
  #
518
- # * control characters (`U+0000-001F`, `U+007F-009F`)
518
+ # * control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
519
+ #
520
+ # * surrogates (`U+D800-DFFF`)
521
+ #
522
+ # * invalid characters (` U+10FFFF`)
519
523
  #
520
524
  # To enable logging with CloudWatch Logs, the name should only contain
521
525
  # 0-9, A-Z, a-z, - and \_.
@@ -630,7 +634,11 @@ module Aws::States
630
634
  #
631
635
  # * special characters `` " # % \ ^ | ~ ` $ & , ; : / ``
632
636
  #
633
- # * control characters (`U+0000-001F`, `U+007F-009F`)
637
+ # * control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
638
+ #
639
+ # * surrogates (`U+D800-DFFF`)
640
+ #
641
+ # * invalid characters (` U+10FFFF`)
634
642
  #
635
643
  # To enable logging with CloudWatch Logs, the name should only contain
636
644
  # 0-9, A-Z, a-z, - and \_.
@@ -1833,6 +1841,17 @@ module Aws::States
1833
1841
  # If specified, only list the executions whose current execution status
1834
1842
  # matches the given filter.
1835
1843
  #
1844
+ # If you provide a `PENDING_REDRIVE` statusFilter, you must specify
1845
+ # `mapRunArn`. For more information, see [Child workflow execution
1846
+ # redrive behaviour][1] in the *Step Functions Developer Guide*.
1847
+ #
1848
+ # If you provide a stateMachineArn and a `PENDING_REDRIVE` statusFilter,
1849
+ # the API returns a validation exception.
1850
+ #
1851
+ #
1852
+ #
1853
+ # [1]: https://docs.aws.amazon.com/step-functions/latest/dg/redrive-map-run.html#redrive-child-workflow-behavior
1854
+ #
1836
1855
  # @option params [Integer] :max_results
1837
1856
  # The maximum number of results that are returned per call. You can use
1838
1857
  # `nextToken` to obtain further pages of results. The default is 100 and
@@ -2660,7 +2679,11 @@ module Aws::States
2660
2679
  #
2661
2680
  # * special characters `` " # % \ ^ | ~ ` $ & , ; : / ``
2662
2681
  #
2663
- # * control characters (`U+0000-001F`, `U+007F-009F`)
2682
+ # * control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
2683
+ #
2684
+ # * surrogates (`U+D800-DFFF`)
2685
+ #
2686
+ # * invalid characters (` U+10FFFF`)
2664
2687
  #
2665
2688
  # To enable logging with CloudWatch Logs, the name should only contain
2666
2689
  # 0-9, A-Z, a-z, - and \_.
@@ -2673,10 +2696,10 @@ module Aws::States
2673
2696
  # The string that contains the JSON input data for the execution, for
2674
2697
  # example:
2675
2698
  #
2676
- # `"input": "{"first_name" : "test"}"`
2699
+ # `"{"first_name" : "Tim"}"`
2677
2700
  #
2678
2701
  # <note markdown="1"> If you don't include any JSON input data, you still must include the
2679
- # two braces, for example: `"input": "{}"`
2702
+ # two braces, for example: `"{}"`
2680
2703
  #
2681
2704
  # </note>
2682
2705
  #
@@ -2687,6 +2710,16 @@ module Aws::States
2687
2710
  # Passes the X-Ray trace header. The trace header can also be passed in
2688
2711
  # the request payload.
2689
2712
  #
2713
+ # <note markdown="1"> For X-Ray traces, all Amazon Web Services services use the
2714
+ # `X-Amzn-Trace-Id` header from the HTTP request. Using the header is
2715
+ # the preferred mechanism to identify a trace. `StartExecution` and
2716
+ # `StartSyncExecution` API operations can also use `traceHeader` from
2717
+ # the body of the request payload. If **both** sources are provided,
2718
+ # Step Functions will use the **header value** (preferred) over the
2719
+ # value in the request body.
2720
+ #
2721
+ # </note>
2722
+ #
2690
2723
  # @return [Types::StartExecutionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2691
2724
  #
2692
2725
  # * {Types::StartExecutionOutput#execution_arn #execution_arn} => String
@@ -2740,10 +2773,10 @@ module Aws::States
2740
2773
  # The string that contains the JSON input data for the execution, for
2741
2774
  # example:
2742
2775
  #
2743
- # `"input": "{"first_name" : "test"}"`
2776
+ # `"{"first_name" : "Tim"}"`
2744
2777
  #
2745
2778
  # <note markdown="1"> If you don't include any JSON input data, you still must include the
2746
- # two braces, for example: `"input": "{}"`
2779
+ # two braces, for example: `"{}"`
2747
2780
  #
2748
2781
  # </note>
2749
2782
  #
@@ -2754,6 +2787,16 @@ module Aws::States
2754
2787
  # Passes the X-Ray trace header. The trace header can also be passed in
2755
2788
  # the request payload.
2756
2789
  #
2790
+ # <note markdown="1"> For X-Ray traces, all Amazon Web Services services use the
2791
+ # `X-Amzn-Trace-Id` header from the HTTP request. Using the header is
2792
+ # the preferred mechanism to identify a trace. `StartExecution` and
2793
+ # `StartSyncExecution` API operations can also use `traceHeader` from
2794
+ # the body of the request payload. If **both** sources are provided,
2795
+ # Step Functions will use the **header value** (preferred) over the
2796
+ # value in the request body.
2797
+ #
2798
+ # </note>
2799
+ #
2757
2800
  # @option params [String] :included_data
2758
2801
  # If your state machine definition is encrypted with a KMS key, callers
2759
2802
  # must have `kms:Decrypt` permission to decrypt the definition.
@@ -2949,7 +2992,7 @@ module Aws::States
2949
2992
  #
2950
2993
  # [1]: https://docs.aws.amazon.com/step-functions/latest/dg/test-state-isolation.html#test-state-input-output-dataflow
2951
2994
  # [2]: https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-services.html
2952
- # [3]: https://docs.aws.amazon.com/step-functions/latest/dg/connect-third-party-apis.html
2995
+ # [3]: https://docs.aws.amazon.com/step-functions/latest/dg/call-https-apis.html
2953
2996
  # [4]: https://docs.aws.amazon.com/step-functions/latest/dg/amazon-states-language-task-state.html#task-types
2954
2997
  # [5]: https://docs.aws.amazon.com/step-functions/latest/dg/concepts-activities.html
2955
2998
  # [6]: https://docs.aws.amazon.com/step-functions/latest/dg/amazon-states-language-pass-state.html
@@ -3482,7 +3525,7 @@ module Aws::States
3482
3525
  tracer: tracer
3483
3526
  )
3484
3527
  context[:gem_name] = 'aws-sdk-states'
3485
- context[:gem_version] = '1.90.0'
3528
+ context[:gem_version] = '1.91.0'
3486
3529
  Seahorse::Client::Request.new(handlers, context)
3487
3530
  end
3488
3531
 
@@ -88,7 +88,11 @@ module Aws::States
88
88
  #
89
89
  # * special characters `` " # % \ ^ | ~ ` $ & , ; : / ``
90
90
  #
91
- # * control characters (`U+0000-001F`, `U+007F-009F`)
91
+ # * control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
92
+ #
93
+ # * surrogates (`U+D800-DFFF`)
94
+ #
95
+ # * invalid characters (` U+10FFFF`)
92
96
  #
93
97
  # To enable logging with CloudWatch Logs, the name should only contain
94
98
  # 0-9, A-Z, a-z, - and \_.
@@ -332,7 +336,11 @@ module Aws::States
332
336
  #
333
337
  # * special characters `` " # % \ ^ | ~ ` $ & , ; : / ``
334
338
  #
335
- # * control characters (`U+0000-001F`, `U+007F-009F`)
339
+ # * control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
340
+ #
341
+ # * surrogates (`U+D800-DFFF`)
342
+ #
343
+ # * invalid characters (` U+10FFFF`)
336
344
  #
337
345
  # To enable logging with CloudWatch Logs, the name should only contain
338
346
  # 0-9, A-Z, a-z, - and \_.
@@ -451,7 +459,11 @@ module Aws::States
451
459
  #
452
460
  # * special characters `` " # % \ ^ | ~ ` $ & , ; : / ``
453
461
  #
454
- # * control characters (`U+0000-001F`, `U+007F-009F`)
462
+ # * control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
463
+ #
464
+ # * surrogates (`U+D800-DFFF`)
465
+ #
466
+ # * invalid characters (` U+10FFFF`)
455
467
  #
456
468
  # To enable logging with CloudWatch Logs, the name should only contain
457
469
  # 0-9, A-Z, a-z, - and \_.
@@ -663,7 +675,11 @@ module Aws::States
663
675
  #
664
676
  # * special characters `` " # % \ ^ | ~ ` $ & , ; : / ``
665
677
  #
666
- # * control characters (`U+0000-001F`, `U+007F-009F`)
678
+ # * control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
679
+ #
680
+ # * surrogates (`U+D800-DFFF`)
681
+ #
682
+ # * invalid characters (` U+10FFFF`)
667
683
  #
668
684
  # To enable logging with CloudWatch Logs, the name should only contain
669
685
  # 0-9, A-Z, a-z, - and \_.
@@ -730,7 +746,11 @@ module Aws::States
730
746
  #
731
747
  # * special characters `` " # % \ ^ | ~ ` $ & , ; : / ``
732
748
  #
733
- # * control characters (`U+0000-001F`, `U+007F-009F`)
749
+ # * control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
750
+ #
751
+ # * surrogates (`U+D800-DFFF`)
752
+ #
753
+ # * invalid characters (` U+10FFFF`)
734
754
  #
735
755
  # To enable logging with CloudWatch Logs, the name should only contain
736
756
  # 0-9, A-Z, a-z, - and \_.
@@ -774,6 +794,16 @@ module Aws::States
774
794
  #
775
795
  # @!attribute [rw] trace_header
776
796
  # The X-Ray trace header that was passed to the execution.
797
+ #
798
+ # <note markdown="1"> For X-Ray traces, all Amazon Web Services services use the
799
+ # `X-Amzn-Trace-Id` header from the HTTP request. Using the header is
800
+ # the preferred mechanism to identify a trace. `StartExecution` and
801
+ # `StartSyncExecution` API operations can also use `traceHeader` from
802
+ # the body of the request payload. If **both** sources are provided,
803
+ # Step Functions will use the **header value** (preferred) over the
804
+ # value in the request body.
805
+ #
806
+ # </note>
777
807
  # @return [String]
778
808
  #
779
809
  # @!attribute [rw] map_run_arn
@@ -1115,7 +1145,7 @@ module Aws::States
1115
1145
  #
1116
1146
  # @!attribute [rw] label
1117
1147
  # A user-defined or an auto-generated string that identifies a `Map`
1118
- # state. This field is returned only if the `executionArn` is a child
1148
+ # state. This field is returned only if the `executionArn` is a child
1119
1149
  # workflow execution that was started by a Distributed Map state.
1120
1150
  # @return [String]
1121
1151
  #
@@ -1215,7 +1245,11 @@ module Aws::States
1215
1245
  #
1216
1246
  # * special characters `` " # % \ ^ | ~ ` $ & , ; : / ``
1217
1247
  #
1218
- # * control characters (`U+0000-001F`, `U+007F-009F`)
1248
+ # * control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
1249
+ #
1250
+ # * surrogates (`U+D800-DFFF`)
1251
+ #
1252
+ # * invalid characters (` U+10FFFF`)
1219
1253
  #
1220
1254
  # To enable logging with CloudWatch Logs, the name should only contain
1221
1255
  # 0-9, A-Z, a-z, - and \_.
@@ -1504,7 +1538,11 @@ module Aws::States
1504
1538
  #
1505
1539
  # * special characters `` " # % \ ^ | ~ ` $ & , ; : / ``
1506
1540
  #
1507
- # * control characters (`U+0000-001F`, `U+007F-009F`)
1541
+ # * control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
1542
+ #
1543
+ # * surrogates (`U+D800-DFFF`)
1544
+ #
1545
+ # * invalid characters (` U+10FFFF`)
1508
1546
  #
1509
1547
  # To enable logging with CloudWatch Logs, the name should only contain
1510
1548
  # 0-9, A-Z, a-z, - and \_.
@@ -2588,6 +2626,17 @@ module Aws::States
2588
2626
  # @!attribute [rw] status_filter
2589
2627
  # If specified, only list the executions whose current execution
2590
2628
  # status matches the given filter.
2629
+ #
2630
+ # If you provide a `PENDING_REDRIVE` statusFilter, you must specify
2631
+ # `mapRunArn`. For more information, see [Child workflow execution
2632
+ # redrive behaviour][1] in the *Step Functions Developer Guide*.
2633
+ #
2634
+ # If you provide a stateMachineArn and a `PENDING_REDRIVE`
2635
+ # statusFilter, the API returns a validation exception.
2636
+ #
2637
+ #
2638
+ #
2639
+ # [1]: https://docs.aws.amazon.com/step-functions/latest/dg/redrive-map-run.html#redrive-child-workflow-behavior
2591
2640
  # @return [String]
2592
2641
  #
2593
2642
  # @!attribute [rw] max_results
@@ -3557,7 +3606,11 @@ module Aws::States
3557
3606
  #
3558
3607
  # * special characters `` " # % \ ^ | ~ ` $ & , ; : / ``
3559
3608
  #
3560
- # * control characters (`U+0000-001F`, `U+007F-009F`)
3609
+ # * control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
3610
+ #
3611
+ # * surrogates (`U+D800-DFFF`)
3612
+ #
3613
+ # * invalid characters (` U+10FFFF`)
3561
3614
  #
3562
3615
  # To enable logging with CloudWatch Logs, the name should only contain
3563
3616
  # 0-9, A-Z, a-z, - and \_.
@@ -3571,10 +3624,10 @@ module Aws::States
3571
3624
  # The string that contains the JSON input data for the execution, for
3572
3625
  # example:
3573
3626
  #
3574
- # `"input": "{"first_name" : "test"}"`
3627
+ # `"{"first_name" : "Tim"}"`
3575
3628
  #
3576
3629
  # <note markdown="1"> If you don't include any JSON input data, you still must include
3577
- # the two braces, for example: `"input": "{}"`
3630
+ # the two braces, for example: `"{}"`
3578
3631
  #
3579
3632
  # </note>
3580
3633
  #
@@ -3585,6 +3638,16 @@ module Aws::States
3585
3638
  # @!attribute [rw] trace_header
3586
3639
  # Passes the X-Ray trace header. The trace header can also be passed
3587
3640
  # in the request payload.
3641
+ #
3642
+ # <note markdown="1"> For X-Ray traces, all Amazon Web Services services use the
3643
+ # `X-Amzn-Trace-Id` header from the HTTP request. Using the header is
3644
+ # the preferred mechanism to identify a trace. `StartExecution` and
3645
+ # `StartSyncExecution` API operations can also use `traceHeader` from
3646
+ # the body of the request payload. If **both** sources are provided,
3647
+ # Step Functions will use the **header value** (preferred) over the
3648
+ # value in the request body.
3649
+ #
3650
+ # </note>
3588
3651
  # @return [String]
3589
3652
  #
3590
3653
  # @see http://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/StartExecutionInput AWS API Documentation
@@ -3627,10 +3690,10 @@ module Aws::States
3627
3690
  # The string that contains the JSON input data for the execution, for
3628
3691
  # example:
3629
3692
  #
3630
- # `"input": "{"first_name" : "test"}"`
3693
+ # `"{"first_name" : "Tim"}"`
3631
3694
  #
3632
3695
  # <note markdown="1"> If you don't include any JSON input data, you still must include
3633
- # the two braces, for example: `"input": "{}"`
3696
+ # the two braces, for example: `"{}"`
3634
3697
  #
3635
3698
  # </note>
3636
3699
  #
@@ -3641,6 +3704,16 @@ module Aws::States
3641
3704
  # @!attribute [rw] trace_header
3642
3705
  # Passes the X-Ray trace header. The trace header can also be passed
3643
3706
  # in the request payload.
3707
+ #
3708
+ # <note markdown="1"> For X-Ray traces, all Amazon Web Services services use the
3709
+ # `X-Amzn-Trace-Id` header from the HTTP request. Using the header is
3710
+ # the preferred mechanism to identify a trace. `StartExecution` and
3711
+ # `StartSyncExecution` API operations can also use `traceHeader` from
3712
+ # the body of the request payload. If **both** sources are provided,
3713
+ # Step Functions will use the **header value** (preferred) over the
3714
+ # value in the request body.
3715
+ #
3716
+ # </note>
3644
3717
  # @return [String]
3645
3718
  #
3646
3719
  # @!attribute [rw] included_data
@@ -3721,6 +3794,16 @@ module Aws::States
3721
3794
  #
3722
3795
  # @!attribute [rw] trace_header
3723
3796
  # The X-Ray trace header that was passed to the execution.
3797
+ #
3798
+ # <note markdown="1"> For X-Ray traces, all Amazon Web Services services use the
3799
+ # `X-Amzn-Trace-Id` header from the HTTP request. Using the header is
3800
+ # the preferred mechanism to identify a trace. `StartExecution` and
3801
+ # `StartSyncExecution` API operations can also use `traceHeader` from
3802
+ # the body of the request payload. If **both** sources are provided,
3803
+ # Step Functions will use the **header value** (preferred) over the
3804
+ # value in the request body.
3805
+ #
3806
+ # </note>
3724
3807
  # @return [String]
3725
3808
  #
3726
3809
  # @!attribute [rw] billing_details
@@ -3790,7 +3873,11 @@ module Aws::States
3790
3873
  #
3791
3874
  # * special characters `` " # % \ ^ | ~ ` $ & , ; : / ``
3792
3875
  #
3793
- # * control characters (`U+0000-001F`, `U+007F-009F`)
3876
+ # * control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
3877
+ #
3878
+ # * surrogates (`U+D800-DFFF`)
3879
+ #
3880
+ # * invalid characters (` U+10FFFF`)
3794
3881
  #
3795
3882
  # To enable logging with CloudWatch Logs, the name should only contain
3796
3883
  # 0-9, A-Z, a-z, - and \_.
@@ -3921,7 +4008,11 @@ module Aws::States
3921
4008
  #
3922
4009
  # * special characters `` " # % \ ^ | ~ ` $ & , ; : / ``
3923
4010
  #
3924
- # * control characters (`U+0000-001F`, `U+007F-009F`)
4011
+ # * control characters (`U+0000-001F`, `U+007F-009F`, `U+FFFE-FFFF`)
4012
+ #
4013
+ # * surrogates (`U+D800-DFFF`)
4014
+ #
4015
+ # * invalid characters (` U+10FFFF`)
3925
4016
  #
3926
4017
  # To enable logging with CloudWatch Logs, the name should only contain
3927
4018
  # 0-9, A-Z, a-z, - and \_.
@@ -4460,7 +4551,7 @@ module Aws::States
4460
4551
  # @!attribute [rw] next_state
4461
4552
  # The name of the next state to transition to. If you haven't defined
4462
4553
  # a next state in your definition or if the execution of the state
4463
- # fails, this field doesn't contain a value.
4554
+ # fails, this field doesn't contain a value.
4464
4555
  # @return [String]
4465
4556
  #
4466
4557
  # @!attribute [rw] status
@@ -54,7 +54,7 @@ module Aws::States
54
54
  autoload :EndpointProvider, 'aws-sdk-states/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-states/endpoints'
56
56
 
57
- GEM_VERSION = '1.90.0'
57
+ GEM_VERSION = '1.91.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-states
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.90.0
4
+ version: 1.91.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services