Skip to content

Commit 9efabc0

Browse files
authored
Special entry in changelog for documentation update (#1134)
1 parent 678e9fc commit 9efabc0

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
- AWS api-change: Added `us-iso-west-1` region
88
- AWS api-change: Used regional endpoint for `us` regions
9+
- AWS enhancement: Documentation updates.
910

1011
## 1.12.0
1112

src/Sts/Exception/PackedPolicyTooLargeException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* information, see IAM and STS Entity Character Limits in the *IAM User Guide*.
1616
*
1717
* @see https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html
18-
* @see https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
18+
* @see https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-limits-entity-length
1919
*/
2020
final class PackedPolicyTooLargeException extends ClientException
2121
{

src/Sts/Input/AssumeRoleRequest.php

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,22 +45,19 @@ final class AssumeRoleRequest extends Input
4545
private $policy;
4646

4747
/**
48-
* The duration, in seconds, of the role session. The value specified can can range from 900 seconds (15 minutes) up to
49-
* the maximum session duration that is set for the role. The maximum session duration setting can have a value from 1
50-
* hour to 12 hours. If you specify a value higher than this setting or the administrator setting (whichever is lower),
51-
* the operation fails. For example, if you specify a session duration of 12 hours, but your administrator set the
52-
* maximum session duration to 6 hours, your operation fails. To learn how to view the maximum value for your role, see
53-
* View the Maximum Session Duration Setting for a Role in the *IAM User Guide*.
54-
*
55-
* @see https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session
48+
* The duration, in seconds, of the role session. The value specified can range from 900 seconds (15 minutes) up to the
49+
* maximum session duration set for the role. The maximum session duration setting can have a value from 1 hour to 12
50+
* hours. If you specify a value higher than this setting or the administrator setting (whichever is lower), the
51+
* operation fails. For example, if you specify a session duration of 12 hours, but your administrator set the maximum
52+
* session duration to 6 hours, your operation fails.
5653
*
5754
* @var int|null
5855
*/
5956
private $durationSeconds;
6057

6158
/**
6259
* A list of session tags that you want to pass. Each session tag consists of a key name and an associated value. For
63-
* more information about session tags, see Tagging STS Sessions in the *IAM User Guide*.
60+
* more information about session tags, see Tagging Amazon Web Services STS Sessions in the *IAM User Guide*.
6461
*
6562
* @see https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html
6663
*

src/Sts/StsClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class StsClient extends AbstractApi
2929
* might not normally have access to. These temporary credentials consist of an access key ID, a secret access key, and
3030
* a security token. Typically, you use `AssumeRole` within your account or for cross-account access. For a comparison
3131
* of `AssumeRole` with other API operations that produce temporary credentials, see Requesting Temporary Security
32-
* Credentials and Comparing the STS API operations in the *IAM User Guide*.
32+
* Credentials and Comparing the Amazon Web Services STS API operations in the *IAM User Guide*.
3333
*
3434
* @see https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html
3535
* @see https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison

src/Sts/ValueObject/Tag.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
/**
88
* You can pass custom key-value pair attributes when you assume a role or federate a user. These are called session
9-
* tags. You can then use the session tags to control access to resources. For more information, see Tagging STS
10-
* Sessions in the *IAM User Guide*.
9+
* tags. You can then use the session tags to control access to resources. For more information, see Tagging Amazon Web
10+
* Services STS Sessions in the *IAM User Guide*.
1111
*
1212
* @see https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html
1313
*/

0 commit comments

Comments
 (0)