@@ -293,8 +293,8 @@ public function changeMessageVisibilityBatch($input): ChangeMessageVisibilityBat
293293 *
294294 * @param array{
295295 * QueueName: string,
296- * Attributes?: null| array<QueueAttributeName::*, string>,
297- * tags?: null| array<string, string>,
296+ * Attributes?: array<QueueAttributeName::*, string>|null ,
297+ * tags?: array<string, string>|null ,
298298 * '@region'?: string|null,
299299 * }|CreateQueueRequest $input
300300 *
@@ -478,7 +478,7 @@ public function deleteQueue($input): Result
478478 *
479479 * @param array{
480480 * QueueUrl: string,
481- * AttributeNames?: null| array<QueueAttributeName::*>,
481+ * AttributeNames?: array<QueueAttributeName::*>|null ,
482482 * '@region'?: string|null,
483483 * }|GetQueueAttributesRequest $input
484484 *
@@ -520,7 +520,7 @@ public function getQueueAttributes($input): GetQueueAttributesResult
520520 *
521521 * @param array{
522522 * QueueName: string,
523- * QueueOwnerAWSAccountId?: null| string,
523+ * QueueOwnerAWSAccountId?: string|null ,
524524 * '@region'?: string|null,
525525 * }|GetQueueUrlRequest $input
526526 *
@@ -563,9 +563,9 @@ public function getQueueUrl($input): GetQueueUrlResult
563563 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-sqs-2012-11-05.html#listqueues
564564 *
565565 * @param array{
566- * QueueNamePrefix?: null| string,
567- * NextToken?: null| string,
568- * MaxResults?: null| int,
566+ * QueueNamePrefix?: string|null ,
567+ * NextToken?: string|null ,
568+ * MaxResults?: int|null ,
569569 * '@region'?: string|null,
570570 * }|ListQueuesRequest $input
571571 *
@@ -634,7 +634,7 @@ public function purgeQueue($input): Result
634634 *
635635 * @param array{
636636 * QueueName: string,
637- * QueueOwnerAWSAccountId?: null| string,
637+ * QueueOwnerAWSAccountId?: string|null ,
638638 * '@region'?: string|null,
639639 * }|GetQueueUrlRequest $input
640640 */
@@ -690,13 +690,13 @@ public function queueExists($input): QueueExistsWaiter
690690 *
691691 * @param array{
692692 * QueueUrl: string,
693- * AttributeNames?: null| array<MessageSystemAttributeName::*>,
694- * MessageSystemAttributeNames?: null| array<MessageSystemAttributeName::*>,
695- * MessageAttributeNames?: null| string[],
696- * MaxNumberOfMessages?: null| int,
697- * VisibilityTimeout?: null| int,
698- * WaitTimeSeconds?: null| int,
699- * ReceiveRequestAttemptId?: null| string,
693+ * AttributeNames?: array<MessageSystemAttributeName::*>|null ,
694+ * MessageSystemAttributeNames?: array<MessageSystemAttributeName::*>|null ,
695+ * MessageAttributeNames?: string[]|null ,
696+ * MaxNumberOfMessages?: int|null ,
697+ * VisibilityTimeout?: int|null ,
698+ * WaitTimeSeconds?: int|null ,
699+ * ReceiveRequestAttemptId?: string|null ,
700700 * '@region'?: string|null,
701701 * }|ReceiveMessageRequest $input
702702 *
@@ -755,11 +755,11 @@ public function receiveMessage($input): ReceiveMessageResult
755755 * @param array{
756756 * QueueUrl: string,
757757 * MessageBody: string,
758- * DelaySeconds?: null| int,
759- * MessageAttributes?: null| array<string, MessageAttributeValue|array>,
760- * MessageSystemAttributes?: null| array<MessageSystemAttributeNameForSends::*, MessageSystemAttributeValue|array>,
761- * MessageDeduplicationId?: null| string,
762- * MessageGroupId?: null| string,
758+ * DelaySeconds?: int|null ,
759+ * MessageAttributes?: array<string, MessageAttributeValue|array>|null ,
760+ * MessageSystemAttributes?: array<MessageSystemAttributeNameForSends::*, MessageSystemAttributeValue|array>|null ,
761+ * MessageDeduplicationId?: string|null ,
762+ * MessageGroupId?: string|null ,
763763 * '@region'?: string|null,
764764 * }|SendMessageRequest $input
765765 *
0 commit comments