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.342.35"
"${LATEST}": "3.342.36"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
6 changes: 4 additions & 2 deletions src/Service/DynamoDb/src/ValueObject/GlobalSecondaryIndex.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ final class GlobalSecondaryIndex
private $projection;

/**
* Represents the provisioned throughput settings for the specified global secondary index.
* Represents the provisioned throughput settings for the specified global secondary index. You must use either
* `OnDemandThroughput` or `ProvisionedThroughput` based on your table's capacity mode.
*
* For current minimum and maximum provisioned throughput values, see Service, Account, and Table Quotas [^1] in the
* *Amazon DynamoDB Developer Guide*.
Expand All @@ -56,7 +57,8 @@ final class GlobalSecondaryIndex

/**
* The maximum number of read and write units for the specified global secondary index. If you use this parameter, you
* must specify `MaxReadRequestUnits`, `MaxWriteRequestUnits`, or both.
* must specify `MaxReadRequestUnits`, `MaxWriteRequestUnits`, or both. You must use either `OnDemandThroughput` or
* `ProvisionedThroughput` based on your table's capacity mode.
*
* @var OnDemandThroughput|null
*/
Expand Down