@@ -91,7 +91,7 @@ public function addUserToGroup($input): Result
9191 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-iam-2010-05-08.html#createaccesskey
9292 *
9393 * @param array{
94- * UserName?: null| string,
94+ * UserName?: string|null ,
9595 * '@region'?: string|null,
9696 * }|CreateAccessKeyRequest $input
9797 *
@@ -134,7 +134,7 @@ public function createAccessKey($input = []): CreateAccessKeyResponse
134134 * @param array{
135135 * UserName: string,
136136 * ServiceName: string,
137- * CredentialAgeDays?: null| int,
137+ * CredentialAgeDays?: int|null ,
138138 * '@region'?: string|null,
139139 * }|CreateServiceSpecificCredentialRequest $input
140140 *
@@ -166,10 +166,10 @@ public function createServiceSpecificCredential($input): CreateServiceSpecificCr
166166 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-iam-2010-05-08.html#createuser
167167 *
168168 * @param array{
169- * Path?: null| string,
169+ * Path?: string|null ,
170170 * UserName: string,
171- * PermissionsBoundary?: null| string,
172- * Tags?: null| array<Tag|array>,
171+ * PermissionsBoundary?: string|null ,
172+ * Tags?: array<Tag|array>|null ,
173173 * '@region'?: string|null,
174174 * }|CreateUserRequest $input
175175 *
@@ -207,7 +207,7 @@ public function createUser($input): CreateUserResponse
207207 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-iam-2010-05-08.html#deleteaccesskey
208208 *
209209 * @param array{
210- * UserName?: null| string,
210+ * UserName?: string|null ,
211211 * AccessKeyId: string,
212212 * '@region'?: string|null,
213213 * }|DeleteAccessKeyRequest $input
@@ -235,7 +235,7 @@ public function deleteAccessKey($input): Result
235235 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-iam-2010-05-08.html#deleteservicespecificcredential
236236 *
237237 * @param array{
238- * UserName?: null| string,
238+ * UserName?: string|null ,
239239 * ServiceSpecificCredentialId: string,
240240 * '@region'?: string|null,
241241 * }|DeleteServiceSpecificCredentialRequest $input
@@ -352,7 +352,7 @@ public function deleteUserPolicy($input): Result
352352 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-iam-2010-05-08.html#getuser
353353 *
354354 * @param array{
355- * UserName?: null| string,
355+ * UserName?: string|null ,
356356 * '@region'?: string|null,
357357 * }|GetUserRequest $input
358358 *
@@ -383,11 +383,11 @@ public function getUser($input = []): GetUserResponse
383383 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-iam-2010-05-08.html#listservicespecificcredentials
384384 *
385385 * @param array{
386- * UserName?: null| string,
387- * ServiceName?: null| string,
388- * AllUsers?: null| bool,
389- * Marker?: null| string,
390- * MaxItems?: null| int,
386+ * UserName?: string|null ,
387+ * ServiceName?: string|null ,
388+ * AllUsers?: bool|null ,
389+ * Marker?: string|null ,
390+ * MaxItems?: int|null ,
391391 * '@region'?: string|null,
392392 * }|ListServiceSpecificCredentialsRequest $input
393393 *
@@ -425,9 +425,9 @@ public function listServiceSpecificCredentials($input = []): ListServiceSpecific
425425 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-iam-2010-05-08.html#listusers
426426 *
427427 * @param array{
428- * PathPrefix?: null| string,
429- * Marker?: null| string,
430- * MaxItems?: null| int,
428+ * PathPrefix?: string|null ,
429+ * Marker?: string|null ,
430+ * MaxItems?: int|null ,
431431 * '@region'?: string|null,
432432 * }|ListUsersRequest $input
433433 *
@@ -509,8 +509,8 @@ public function putUserPolicy($input): Result
509509 *
510510 * @param array{
511511 * UserName: string,
512- * NewPath?: null| string,
513- * NewUserName?: null| string,
512+ * NewPath?: string|null ,
513+ * NewUserName?: string|null ,
514514 * '@region'?: string|null,
515515 * }|UpdateUserRequest $input
516516 *
0 commit comments