Skip to content

Commit 7f5966b

Browse files
authored
Shortname docblock (#742)
* Use short class name in docbloc * Regenerate services
1 parent b391177 commit 7f5966b

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

src/Sts/Input/AssumeRoleRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ final class AssumeRoleRequest extends Input
116116
* @param array{
117117
* RoleArn?: string,
118118
* RoleSessionName?: string,
119-
* PolicyArns?: \AsyncAws\Core\Sts\ValueObject\PolicyDescriptorType[],
119+
* PolicyArns?: PolicyDescriptorType[],
120120
* Policy?: string,
121121
* DurationSeconds?: int,
122-
* Tags?: \AsyncAws\Core\Sts\ValueObject\Tag[],
122+
* Tags?: Tag[],
123123
* TransitiveTagKeys?: string[],
124124
* ExternalId?: string,
125125
* SerialNumber?: string,

src/Sts/Input/AssumeRoleWithWebIdentityRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ final class AssumeRoleWithWebIdentityRequest extends Input
8383
* RoleSessionName?: string,
8484
* WebIdentityToken?: string,
8585
* ProviderId?: string,
86-
* PolicyArns?: \AsyncAws\Core\Sts\ValueObject\PolicyDescriptorType[],
86+
* PolicyArns?: PolicyDescriptorType[],
8787
* Policy?: string,
8888
* DurationSeconds?: int,
8989
* @region?: string,

src/Sts/StsClient.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
use AsyncAws\Core\Sts\Result\AssumeRoleResponse;
1212
use AsyncAws\Core\Sts\Result\AssumeRoleWithWebIdentityResponse;
1313
use AsyncAws\Core\Sts\Result\GetCallerIdentityResponse;
14+
use AsyncAws\Core\Sts\ValueObject\PolicyDescriptorType;
15+
use AsyncAws\Core\Sts\ValueObject\Tag;
1416

1517
class StsClient extends AbstractApi
1618
{
@@ -28,10 +30,10 @@ class StsClient extends AbstractApi
2830
* @param array{
2931
* RoleArn: string,
3032
* RoleSessionName: string,
31-
* PolicyArns?: \AsyncAws\Core\Sts\ValueObject\PolicyDescriptorType[],
33+
* PolicyArns?: PolicyDescriptorType[],
3234
* Policy?: string,
3335
* DurationSeconds?: int,
34-
* Tags?: \AsyncAws\Core\Sts\ValueObject\Tag[],
36+
* Tags?: Tag[],
3537
* TransitiveTagKeys?: string[],
3638
* ExternalId?: string,
3739
* SerialNumber?: string,
@@ -59,7 +61,7 @@ public function assumeRole($input): AssumeRoleResponse
5961
* RoleSessionName: string,
6062
* WebIdentityToken: string,
6163
* ProviderId?: string,
62-
* PolicyArns?: \AsyncAws\Core\Sts\ValueObject\PolicyDescriptorType[],
64+
* PolicyArns?: PolicyDescriptorType[],
6365
* Policy?: string,
6466
* DurationSeconds?: int,
6567
* @region?: string,

0 commit comments

Comments
 (0)