Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.372.1"
"${LATEST}": "3.372.2"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/Iam/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Changed

- AWS enhancement: Documentation updates.

## 1.8.0

### Added
Expand Down
4 changes: 2 additions & 2 deletions src/Service/Iam/src/IamClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ public function createAccessKey($input = []): CreateAccessKeyResponse
*
* You can have a maximum of two sets of service-specific credentials for each supported service per user.
*
* You can create service-specific credentials for Amazon Bedrock, CodeCommit and Amazon Keyspaces (for Apache
* Cassandra).
* You can create service-specific credentials for Amazon Bedrock, Amazon CloudWatch Logs, CodeCommit and Amazon
* Keyspaces (for Apache Cassandra).
*
* You can reset the password to a new service-generated value by calling ResetServiceSpecificCredential [^1].
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ final class CreateServiceSpecificCredentialRequest extends Input
private $serviceName;

/**
* The number of days until the service specific credential expires. This field is only valid for Bedrock API keys and
* must be a positive integer. When not specified, the credential will not expire.
* The number of days until the service specific credential expires. This field is only valid for Bedrock and CloudWatch
* Logs API keys and must be a positive integer. When not specified, the credential will not expire.
*
* @var int|null
*/
Expand Down
12 changes: 6 additions & 6 deletions src/Service/Iam/src/ValueObject/ServiceSpecificCredential.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ final class ServiceSpecificCredential
private $createDate;

/**
* The date and time when the service specific credential expires. This field is only present for Bedrock API keys that
* were created with an expiration period.
* The date and time when the service specific credential expires. This field is only present for Bedrock API keys and
* CloudWatch Logs API keys that were created with an expiration period.
*
* @var \DateTimeImmutable|null
*/
Expand Down Expand Up @@ -51,16 +51,16 @@ final class ServiceSpecificCredential
private $servicePassword;

/**
* For Bedrock API keys, this is the public portion of the credential that includes the IAM user name and a suffix
* containing version and creation information.
* For Bedrock API keys and CloudWatch Logs API keys, this is the public portion of the credential that includes the IAM
* user name and a suffix containing version and creation information.
*
* @var string|null
*/
private $serviceCredentialAlias;

/**
* For Bedrock API keys, this is the secret portion of the credential that should be used to authenticate API calls.
* This value is returned only when the credential is created.
* For Bedrock API keys and CloudWatch Logs API keys, this is the secret portion of the credential that should be used
* to authenticate API calls. This value is returned only when the credential is created.
*
* @var string|null
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ final class ServiceSpecificCredentialMetadata
private $serviceUserName;

/**
* For Bedrock API keys, this is the public portion of the credential that includes the IAM user name and a suffix
* containing version and creation information.
* For Bedrock API keys and CloudWatch Logs API keys, this is the public portion of the credential that includes the IAM
* user name and a suffix containing version and creation information.
*
* @var string|null
*/
Expand All @@ -50,8 +50,8 @@ final class ServiceSpecificCredentialMetadata
private $createDate;

/**
* The date and time when the service specific credential expires. This field is only present for Bedrock API keys that
* were created with an expiration period.
* The date and time when the service specific credential expires. This field is only present for Bedrock API keys and
* CloudWatch Logs API keys that were created with an expiration period.
*
* @var \DateTimeImmutable|null
*/
Expand Down