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 = [])
51
51
parent ::__construct ($ input );
52
52
}
53
53
54
+ /**
55
+ * @param array{
56
+ * taskToken?: string,
57
+ * error?: string,
58
+ * cause?: string,
59
+ * '@region'?: string|null,
60
+ * }|SendTaskFailureInput $input
61
+ */
54
62
public static function create ($ input ): self
55
63
{
56
64
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 = [])
33
33
parent ::__construct ($ input );
34
34
}
35
35
36
+ /**
37
+ * @param array{
38
+ * taskToken?: string,
39
+ * '@region'?: string|null,
40
+ * }|SendTaskHeartbeatInput $input
41
+ */
36
42
public static function create ($ input ): self
37
43
{
38
44
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 = [])
45
45
parent ::__construct ($ input );
46
46
}
47
47
48
+ /**
49
+ * @param array{
50
+ * taskToken?: string,
51
+ * output?: string,
52
+ * '@region'?: string|null,
53
+ * }|SendTaskSuccessInput $input
54
+ */
48
55
public static function create ($ input ): self
49
56
{
50
57
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 = [])
101
101
parent ::__construct ($ input );
102
102
}
103
103
104
+ /**
105
+ * @param array{
106
+ * stateMachineArn?: string,
107
+ * name?: string,
108
+ * input?: string,
109
+ * traceHeader?: string,
110
+ * '@region'?: string|null,
111
+ * }|StartExecutionInput $input
112
+ */
104
113
public static function create ($ input ): self
105
114
{
106
115
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 = [])
48
48
parent ::__construct ($ input );
49
49
}
50
50
51
+ /**
52
+ * @param array{
53
+ * executionArn?: string,
54
+ * error?: string,
55
+ * cause?: string,
56
+ * '@region'?: string|null,
57
+ * }|StopExecutionInput $input
58
+ */
51
59
public static function create ($ input ): self
52
60
{
53
61
return $ input instanceof self ? $ input : new self ($ input );
You can’t perform that action at this time.
0 commit comments