File tree Expand file tree Collapse file tree 5 files changed +38
-0
lines changed Expand file tree Collapse file tree 5 files changed +38
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,14 @@ public function __construct(array $input = [])
5151 parent ::__construct ($ input );
5252 }
5353
54+ /**
55+ * @param array{
56+ * taskToken?: string,
57+ * error?: string,
58+ * cause?: string,
59+ * '@region'?: string|null,
60+ * }|SendTaskFailureInput $input
61+ */
5462 public static function create ($ input ): self
5563 {
5664 return $ input instanceof self ? $ input : new self ($ input );
Original file line number Diff line number Diff line change @@ -33,6 +33,12 @@ public function __construct(array $input = [])
3333 parent ::__construct ($ input );
3434 }
3535
36+ /**
37+ * @param array{
38+ * taskToken?: string,
39+ * '@region'?: string|null,
40+ * }|SendTaskHeartbeatInput $input
41+ */
3642 public static function create ($ input ): self
3743 {
3844 return $ input instanceof self ? $ input : new self ($ input );
Original file line number Diff line number Diff line change @@ -45,6 +45,13 @@ public function __construct(array $input = [])
4545 parent ::__construct ($ input );
4646 }
4747
48+ /**
49+ * @param array{
50+ * taskToken?: string,
51+ * output?: string,
52+ * '@region'?: string|null,
53+ * }|SendTaskSuccessInput $input
54+ */
4855 public static function create ($ input ): self
4956 {
5057 return $ input instanceof self ? $ input : new self ($ input );
Original file line number Diff line number Diff line change @@ -101,6 +101,15 @@ public function __construct(array $input = [])
101101 parent ::__construct ($ input );
102102 }
103103
104+ /**
105+ * @param array{
106+ * stateMachineArn?: string,
107+ * name?: string,
108+ * input?: string,
109+ * traceHeader?: string,
110+ * '@region'?: string|null,
111+ * }|StartExecutionInput $input
112+ */
104113 public static function create ($ input ): self
105114 {
106115 return $ input instanceof self ? $ input : new self ($ input );
Original file line number Diff line number Diff line change @@ -48,6 +48,14 @@ public function __construct(array $input = [])
4848 parent ::__construct ($ input );
4949 }
5050
51+ /**
52+ * @param array{
53+ * executionArn?: string,
54+ * error?: string,
55+ * cause?: string,
56+ * '@region'?: string|null,
57+ * }|StopExecutionInput $input
58+ */
5159 public static function create ($ input ): self
5260 {
5361 return $ input instanceof self ? $ input : new self ($ input );
You can’t perform that action at this time.
0 commit comments