@@ -46,18 +46,18 @@ class SchedulerClient extends AbstractApi
4646 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-scheduler-2021-06-30.html#createschedule
4747 *
4848 * @param array{
49- * ActionAfterCompletion?: null| ActionAfterCompletion::*,
50- * ClientToken?: null| string,
51- * Description?: null| string,
52- * EndDate?: null| \DateTimeImmutable|string,
49+ * ActionAfterCompletion?: ActionAfterCompletion::*|null ,
50+ * ClientToken?: string|null ,
51+ * Description?: string|null ,
52+ * EndDate?: \DateTimeImmutable|string|null ,
5353 * FlexibleTimeWindow: FlexibleTimeWindow|array,
54- * GroupName?: null| string,
55- * KmsKeyArn?: null| string,
54+ * GroupName?: string|null ,
55+ * KmsKeyArn?: string|null ,
5656 * Name: string,
5757 * ScheduleExpression: string,
58- * ScheduleExpressionTimezone?: null| string,
59- * StartDate?: null| \DateTimeImmutable|string,
60- * State?: null| ScheduleState::*,
58+ * ScheduleExpressionTimezone?: string|null ,
59+ * StartDate?: \DateTimeImmutable|string|null ,
60+ * State?: ScheduleState::*|null ,
6161 * Target: Target|array,
6262 * '@region'?: string|null,
6363 * }|CreateScheduleInput $input
@@ -91,9 +91,9 @@ public function createSchedule($input): CreateScheduleOutput
9191 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-scheduler-2021-06-30.html#createschedulegroup
9292 *
9393 * @param array{
94- * ClientToken?: null| string,
94+ * ClientToken?: string|null ,
9595 * Name: string,
96- * Tags?: null| array<Tag|array>,
96+ * Tags?: array<Tag|array>|null ,
9797 * '@region'?: string|null,
9898 * }|CreateScheduleGroupInput $input
9999 *
@@ -124,8 +124,8 @@ public function createScheduleGroup($input): CreateScheduleGroupOutput
124124 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-scheduler-2021-06-30.html#deleteschedule
125125 *
126126 * @param array{
127- * ClientToken?: null| string,
128- * GroupName?: null| string,
127+ * ClientToken?: string|null ,
128+ * GroupName?: string|null ,
129129 * Name: string,
130130 * '@region'?: string|null,
131131 * }|DeleteScheduleInput $input
@@ -163,7 +163,7 @@ public function deleteSchedule($input): DeleteScheduleOutput
163163 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-scheduler-2021-06-30.html#deleteschedulegroup
164164 *
165165 * @param array{
166- * ClientToken?: null| string,
166+ * ClientToken?: string|null ,
167167 * Name: string,
168168 * '@region'?: string|null,
169169 * }|DeleteScheduleGroupInput $input
@@ -195,7 +195,7 @@ public function deleteScheduleGroup($input): DeleteScheduleGroupOutput
195195 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-scheduler-2021-06-30.html#getschedule
196196 *
197197 * @param array{
198- * GroupName?: null| string,
198+ * GroupName?: string|null ,
199199 * Name: string,
200200 * '@region'?: string|null,
201201 * }|GetScheduleInput $input
@@ -254,9 +254,9 @@ public function getScheduleGroup($input): GetScheduleGroupOutput
254254 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-scheduler-2021-06-30.html#listschedulegroups
255255 *
256256 * @param array{
257- * MaxResults?: null| int,
258- * NamePrefix?: null| string,
259- * NextToken?: null| string,
257+ * MaxResults?: int|null ,
258+ * NamePrefix?: string|null ,
259+ * NextToken?: string|null ,
260260 * '@region'?: string|null,
261261 * }|ListScheduleGroupsInput $input
262262 *
@@ -283,11 +283,11 @@ public function listScheduleGroups($input = []): ListScheduleGroupsOutput
283283 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-scheduler-2021-06-30.html#listschedules
284284 *
285285 * @param array{
286- * GroupName?: null| string,
287- * MaxResults?: null| int,
288- * NamePrefix?: null| string,
289- * NextToken?: null| string,
290- * State?: null| ScheduleState::*,
286+ * GroupName?: string|null ,
287+ * MaxResults?: int|null ,
288+ * NamePrefix?: string|null ,
289+ * NextToken?: string|null ,
290+ * State?: ScheduleState::*|null ,
291291 * '@region'?: string|null,
292292 * }|ListSchedulesInput $input
293293 *
@@ -321,18 +321,18 @@ public function listSchedules($input = []): ListSchedulesOutput
321321 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-scheduler-2021-06-30.html#updateschedule
322322 *
323323 * @param array{
324- * ActionAfterCompletion?: null| ActionAfterCompletion::*,
325- * ClientToken?: null| string,
326- * Description?: null| string,
327- * EndDate?: null| \DateTimeImmutable|string,
324+ * ActionAfterCompletion?: ActionAfterCompletion::*|null ,
325+ * ClientToken?: string|null ,
326+ * Description?: string|null ,
327+ * EndDate?: \DateTimeImmutable|string|null ,
328328 * FlexibleTimeWindow: FlexibleTimeWindow|array,
329- * GroupName?: null| string,
330- * KmsKeyArn?: null| string,
329+ * GroupName?: string|null ,
330+ * KmsKeyArn?: string|null ,
331331 * Name: string,
332332 * ScheduleExpression: string,
333- * ScheduleExpressionTimezone?: null| string,
334- * StartDate?: null| \DateTimeImmutable|string,
335- * State?: null| ScheduleState::*,
333+ * ScheduleExpressionTimezone?: string|null ,
334+ * StartDate?: \DateTimeImmutable|string|null ,
335+ * State?: ScheduleState::*|null ,
336336 * Target: Target|array,
337337 * '@region'?: string|null,
338338 * }|UpdateScheduleInput $input
0 commit comments