From 554c14f41c3547ddef816660cdd112b33b6b4f5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Mon, 20 Jul 2026 00:10:33 +0000 Subject: [PATCH 1/4] Fix typos --- docs/authentication/hard-coded.md | 2 +- docs/clients/code-deploy.md | 2 +- docs/clients/rds-data-service.md | 2 +- src/CodeGenerator/src/Generator/PaginationGenerator.php | 2 +- .../src/Generator/RequestSerializer/QuerySerializer.php | 2 +- .../src/Generator/ResponseParser/RestJsonParser.php | 6 +++--- .../src/Generator/ResponseParser/RestXmlParser.php | 6 +++--- src/Core/CHANGELOG.md | 4 ++-- src/Core/src/Credentials/ConfigurationProvider.php | 2 +- src/Core/src/Credentials/SsoTokenProvider.php | 4 ++-- src/Integration/Monolog/CloudWatch/composer.json | 2 +- .../Athena/src/ValueObject/ManagedLoggingConfiguration.php | 2 +- src/Service/Athena/tests/Unit/AthenaClientTest.php | 2 +- .../tests/Unit/Result/ListTableMetadataOutputTest.php | 2 +- src/Service/CodeCommit/src/ValueObject/UserInfo.php | 2 +- .../tests/Unit/Input/CreateDeploymentInputTest.php | 4 ++-- .../tests/Unit/Result/GetDeploymentOutputTest.php | 4 ++-- .../Iot/tests/Unit/Input/CreateThingTypeRequestTest.php | 4 ++-- src/Service/Kinesis/src/Input/ListShardsInput.php | 2 +- src/Service/Kinesis/src/ValueObject/ShardFilter.php | 4 ++-- src/Service/Lambda/CHANGELOG.md | 2 +- src/Service/Lambda/src/Result/FunctionConfiguration.php | 2 +- .../Lambda/src/ValueObject/FunctionConfiguration.php | 2 +- src/Service/Lambda/src/ValueObject/RuntimeVersionConfig.php | 2 +- .../LocationService/src/Result/CalculateRouteResponse.php | 2 +- src/Service/LocationService/src/ValueObject/Leg.php | 2 +- src/Service/MediaConvert/src/Enum/AccelerationStatus.php | 2 +- .../MediaConvert/src/Enum/AudioLanguageCodeControl.php | 2 +- src/Service/MediaConvert/src/Enum/CmfcC2paManifest.php | 2 +- src/Service/MediaConvert/src/Enum/DolbyVisionLevel6Mode.php | 2 +- src/Service/MediaConvert/src/Enum/Mp4C2paManifest.php | 2 +- src/Service/MediaConvert/src/Enum/MpdC2paManifest.php | 2 +- .../MediaConvert/src/ValueObject/AudioDescription.php | 4 ++-- .../MediaConvert/src/ValueObject/AutomatedAbrRule.php | 4 ++-- .../src/ValueObject/BurninDestinationSettings.php | 2 +- .../MediaConvert/src/ValueObject/CaptionSelector.php | 2 +- .../MediaConvert/src/ValueObject/CaptionSourceSettings.php | 4 ++-- src/Service/MediaConvert/src/ValueObject/ClipLimits.php | 2 +- src/Service/MediaConvert/src/ValueObject/CmfcSettings.php | 2 +- src/Service/MediaConvert/src/ValueObject/DolbyVision.php | 2 +- .../src/ValueObject/DvbSubDestinationSettings.php | 2 +- .../MediaConvert/src/ValueObject/FileSourceSettings.php | 2 +- src/Service/MediaConvert/src/ValueObject/H264Settings.php | 2 +- src/Service/MediaConvert/src/ValueObject/Job.php | 2 +- src/Service/MediaConvert/src/ValueObject/JobSettings.php | 2 +- src/Service/MediaConvert/src/ValueObject/Mp4Settings.php | 2 +- src/Service/MediaConvert/src/ValueObject/MpdSettings.php | 2 +- .../MediaConvert/src/ValueObject/StaticKeyProvider.php | 2 +- src/Service/MediaConvert/src/ValueObject/VideoSelector.php | 2 +- src/Service/MediaConvert/src/ValueObject/XavcSettings.php | 2 +- src/Service/RdsDataService/CHANGELOG.md | 2 +- src/Service/Route53/src/Input/CreateHostedZoneRequest.php | 2 +- src/Service/S3/CHANGELOG.md | 2 +- src/Service/S3/src/S3Client.php | 4 ++-- src/Service/S3/tests/Integration/S3ClientTest.php | 2 +- src/Service/Ses/src/ValueObject/Template.php | 4 ++-- 56 files changed, 71 insertions(+), 71 deletions(-) diff --git a/docs/authentication/hard-coded.md b/docs/authentication/hard-coded.md index 8182430ce..b8cefa23a 100644 --- a/docs/authentication/hard-coded.md +++ b/docs/authentication/hard-coded.md @@ -30,7 +30,7 @@ $client = new AwsClientFactory([ 'accessKeyId' => 'AKIAIOSFODNN7EXAMPLE', 'accessKeySecret' => 'wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY', 'roleArn' => 'arn:aws:iam::1234567891011:role/name-of-my-role', - 'roleSessionName' => 'my-session-name', // Optionnal + 'roleSessionName' => 'my-session-name', // Optional ]); ``` diff --git a/docs/clients/code-deploy.md b/docs/clients/code-deploy.md index ca1937cf6..ffe07fbd5 100644 --- a/docs/clients/code-deploy.md +++ b/docs/clients/code-deploy.md @@ -28,7 +28,7 @@ $deployment = $codeDeploy->createDeployment(new CreateDeploymentInput([ ], ])); -echo 'DepoymentId: '. $deployment->getDeploymentId(); +echo 'DeploymentId: '. $deployment->getDeploymentId(); ``` diff --git a/docs/clients/rds-data-service.md b/docs/clients/rds-data-service.md index 50182c901..d21c95302 100644 --- a/docs/clients/rds-data-service.md +++ b/docs/clients/rds-data-service.md @@ -72,7 +72,7 @@ try { 'transaction' => $transaction->getTransactionId(), ]); } catch (\Throwable $e) { - // Make sure to allways rollback since there is no connection. + // Make sure to always roll back since there is no connection. // If you forget than the transaction might block tables for up to 5 minutes. $client->rollbackTransaction($database + [ 'transaction' => $transaction->getTransactionId(), diff --git a/src/CodeGenerator/src/Generator/PaginationGenerator.php b/src/CodeGenerator/src/Generator/PaginationGenerator.php index 9181b1633..e22ee06ef 100644 --- a/src/CodeGenerator/src/Generator/PaginationGenerator.php +++ b/src/CodeGenerator/src/Generator/PaginationGenerator.php @@ -298,7 +298,7 @@ private function generateGetter(string $property, string $expression, bool $useG $last = true; } if (!preg_match('/^[a-z]++$/i', $part)) { - throw new LogicException(\sprintf('The part "%s" of the getter expression "%s" is n9ot yet supported', $part, $expression)); + throw new LogicException(\sprintf('The part "%s" of the getter expression "%s" is not yet supported', $part, $expression)); } if (!$useGetter && $getter === $property) { diff --git a/src/CodeGenerator/src/Generator/RequestSerializer/QuerySerializer.php b/src/CodeGenerator/src/Generator/RequestSerializer/QuerySerializer.php index c92db6456..c9e597e4c 100644 --- a/src/CodeGenerator/src/Generator/RequestSerializer/QuerySerializer.php +++ b/src/CodeGenerator/src/Generator/RequestSerializer/QuerySerializer.php @@ -167,7 +167,7 @@ protected function getName(Member $member): string if ($member instanceof StructureMember) { $name = $this->getQueryName($member, $member->getName()); } else { - throw new \RuntimeException('Guessing the name fot this member not yet implemented'); + throw new \RuntimeException('Guessing the name for this member not yet implemented'); } $shape = $member->getShape(); diff --git a/src/CodeGenerator/src/Generator/ResponseParser/RestJsonParser.php b/src/CodeGenerator/src/Generator/ResponseParser/RestJsonParser.php index 26471c770..e4939e2a8 100644 --- a/src/CodeGenerator/src/Generator/ResponseParser/RestJsonParser.php +++ b/src/CodeGenerator/src/Generator/ResponseParser/RestJsonParser.php @@ -127,17 +127,17 @@ public function generateForPath(StructureShape $shape, string $path, string $out $input = '$response->toArray()'; } $path = explode('.', $path); - $accesor = ''; + $accessor = ''; while (\count($path) > 0) { $item = array_shift($path); $member = $shape->getMember($item); $shape = $member->getShape(); - $accesor .= '[' . var_export($this->getInputAccessorName($member), true) . ']'; + $accessor .= '[' . var_export($this->getInputAccessorName($member), true) . ']'; } $body .= strtr('OUTPUT = INPUTPATH ?? null', [ 'INPUT' => $input, - 'PATH' => $accesor, + 'PATH' => $accessor, 'OUTPUT' => $output, ]); diff --git a/src/CodeGenerator/src/Generator/ResponseParser/RestXmlParser.php b/src/CodeGenerator/src/Generator/ResponseParser/RestXmlParser.php index 0321dddac..0a3f9227c 100644 --- a/src/CodeGenerator/src/Generator/ResponseParser/RestXmlParser.php +++ b/src/CodeGenerator/src/Generator/ResponseParser/RestXmlParser.php @@ -126,16 +126,16 @@ public function generateForPath(StructureShape $shape, string $path, string $out $body .= strtr('$data = $data->WRAPPER;' . "\n", ['WRAPPER' => $wrapper]); } $path = explode('.', $path); - $accesor = '$data'; + $accessor = '$data'; while (\count($path) > 0) { $item = array_shift($path); $member = $shape->getMember($item); $shape = $member->getShape(); - $accesor = $this->getInputAccessor($accesor, $member); + $accessor = $this->getInputAccessor($accessor, $member); } $body .= strtr('OUTPUT = PATH', [ - 'PATH' => $this->parseXmlElement($accesor, $shape, true, false), + 'PATH' => $this->parseXmlElement($accessor, $shape, true, false), 'OUTPUT' => $output, ]); diff --git a/src/Core/CHANGELOG.md b/src/Core/CHANGELOG.md index 5aed54864..ddaa899ab 100644 --- a/src/Core/CHANGELOG.md +++ b/src/Core/CHANGELOG.md @@ -398,14 +398,14 @@ - Support for EventBridge in `AwsClientFactory` - Support for IAM in `AwsClientFactory` -- Add a `PsrCacheProvider` and `SymfonyCacheProvider` to persists crendentials in a cache pool +- Add a `PsrCacheProvider` and `SymfonyCacheProvider` to persist credentials in a cache pool - Add a `Credential::adjustExpireDate` method for adjusting the time according to the time difference with AWS clock - Support for global and regional endpoints - Add a `Configuration::optionExists` to allow third parties to check if an option is available (needed by libraries supporting several versions of core) ### Deprecated -- Clients extending `AbstractApi` should override `getEndpointMetata`. The method will be abstract in 2.0 +- Clients extending `AbstractApi` should override `getEndpointMetadata`. The method will be abstract in 2.0 - Custom endpoints should not contain `%region%` and `%service` placeholder. They won't be replaced anymore in 2.0 - Protected methods `getServiceCode`, `getSignatureVersion` and `getSignatureScopeName` of AbstractApi are deprecated and will be removed in 2.0 diff --git a/src/Core/src/Credentials/ConfigurationProvider.php b/src/Core/src/Credentials/ConfigurationProvider.php index 3dca53444..143c3baa8 100644 --- a/src/Core/src/Credentials/ConfigurationProvider.php +++ b/src/Core/src/Credentials/ConfigurationProvider.php @@ -74,7 +74,7 @@ private function getCredentialsFromRole(Credentials $credentials, string $region try { if (null === $credentials = $result->getCredentials()) { - throw new RuntimeException('The AsumeRole response does not contains credentials'); + throw new RuntimeException('The AssumeRole response does not contain credentials'); } } catch (\Exception $e) { $this->logger->warning('Failed to get credentials from assumed role: {exception}".', ['exception' => $e]); diff --git a/src/Core/src/Credentials/SsoTokenProvider.php b/src/Core/src/Credentials/SsoTokenProvider.php index 9b1ec7d90..655c8381c 100644 --- a/src/Core/src/Credentials/SsoTokenProvider.php +++ b/src/Core/src/Credentials/SsoTokenProvider.php @@ -154,8 +154,8 @@ private function loadSsoToken(string $sessionName): ?array ); } catch (\JsonException $e) { $this->logger->warning( - 'The sso cache file {path} contains invalide JSON.', - ['path' => $filepath, 'ecxeption' => $e] + 'The sso cache file {path} contains invalid JSON.', + ['path' => $filepath, 'exception' => $e] ); return null; diff --git a/src/Integration/Monolog/CloudWatch/composer.json b/src/Integration/Monolog/CloudWatch/composer.json index 8b63603fb..5dbcb218a 100644 --- a/src/Integration/Monolog/CloudWatch/composer.json +++ b/src/Integration/Monolog/CloudWatch/composer.json @@ -5,7 +5,7 @@ "type": "library", "keywords": [ "aws", - "aync-aws", + "async-aws", "Monolog", "CloudWatch", "Logs" diff --git a/src/Service/Athena/src/ValueObject/ManagedLoggingConfiguration.php b/src/Service/Athena/src/ValueObject/ManagedLoggingConfiguration.php index 0c8c9f957..175e3985e 100644 --- a/src/Service/Athena/src/ValueObject/ManagedLoggingConfiguration.php +++ b/src/Service/Athena/src/ValueObject/ManagedLoggingConfiguration.php @@ -10,7 +10,7 @@ final class ManagedLoggingConfiguration { /** - * Enables mamanged log persistence. + * Enables managed log persistence. * * @var bool */ diff --git a/src/Service/Athena/tests/Unit/AthenaClientTest.php b/src/Service/Athena/tests/Unit/AthenaClientTest.php index 6765b47a9..705bea213 100644 --- a/src/Service/Athena/tests/Unit/AthenaClientTest.php +++ b/src/Service/Athena/tests/Unit/AthenaClientTest.php @@ -267,7 +267,7 @@ public function testStartQueryExecution(): void $client = new AthenaClient([], new NullProvider(), new MockHttpClient()); $input = new StartQueryExecutionInput([ - 'QueryString' => 'SELECT * FROM iadDatabase.catalog LIMT 10', + 'QueryString' => 'SELECT * FROM iadDatabase.catalog LIMIT 10', ]); $result = $client->startQueryExecution($input); diff --git a/src/Service/Athena/tests/Unit/Result/ListTableMetadataOutputTest.php b/src/Service/Athena/tests/Unit/Result/ListTableMetadataOutputTest.php index a03020c5b..021c98e96 100644 --- a/src/Service/Athena/tests/Unit/Result/ListTableMetadataOutputTest.php +++ b/src/Service/Athena/tests/Unit/Result/ListTableMetadataOutputTest.php @@ -57,7 +57,7 @@ public function testListTableMetadataOutput(): void new AthenaClient(), new ListTableMetadataInput([ 'CatalogName' => 'iadCatalog', - 'DatabaseName' => 'iadDatbase', + 'DatabaseName' => 'iadDatabase', ]) ); diff --git a/src/Service/CodeCommit/src/ValueObject/UserInfo.php b/src/Service/CodeCommit/src/ValueObject/UserInfo.php index 0173dfc2c..7aa1d42ca 100644 --- a/src/Service/CodeCommit/src/ValueObject/UserInfo.php +++ b/src/Service/CodeCommit/src/ValueObject/UserInfo.php @@ -22,7 +22,7 @@ final class UserInfo private $email; /** - * The date when the specified commit was commited, in timestamp format with GMT offset. + * The date when the specified commit was committed, in timestamp format with GMT offset. * * @var string|null */ diff --git a/src/Service/CodeDeploy/tests/Unit/Input/CreateDeploymentInputTest.php b/src/Service/CodeDeploy/tests/Unit/Input/CreateDeploymentInputTest.php index c5f15ce62..62857edde 100644 --- a/src/Service/CodeDeploy/tests/Unit/Input/CreateDeploymentInputTest.php +++ b/src/Service/CodeDeploy/tests/Unit/Input/CreateDeploymentInputTest.php @@ -54,7 +54,7 @@ public function testRequest(): void 'targetInstances' => new TargetInstances([ 'tagFilters' => [new EC2TagFilter([ 'Key' => 'key', - 'Value' => 'valu3', + 'Value' => 'value3', 'Type' => EC2TagFilterType::KEY_AND_VALUE, ])], 'autoScalingGroups' => ['auto-scaling-groups'], @@ -135,7 +135,7 @@ public function testRequest(): void { "Key": "key", "Type": "KEY_AND_VALUE", - "Value": "valu3" + "Value": "value3" } ] }, diff --git a/src/Service/CodeDeploy/tests/Unit/Result/GetDeploymentOutputTest.php b/src/Service/CodeDeploy/tests/Unit/Result/GetDeploymentOutputTest.php index 198161d45..566dcc732 100644 --- a/src/Service/CodeDeploy/tests/Unit/Result/GetDeploymentOutputTest.php +++ b/src/Service/CodeDeploy/tests/Unit/Result/GetDeploymentOutputTest.php @@ -109,7 +109,7 @@ public function testGetDeploymentOutput(): void "sha256": "sha256" }, "gitHubLocation": { - "commitId": "commmit-id", + "commitId": "commit-id", "repository": "repository" }, "revisionType": "GitHub", @@ -239,7 +239,7 @@ public function testGetDeploymentOutput(): void self::assertSame('content', $info->getPreviousRevision()->getAppSpecContent()->getContent()); self::assertSame('sha256', $info->getPreviousRevision()->getAppSpecContent()->getSha256()); - self::assertSame('commmit-id', $info->getPreviousRevision()->getGitHubLocation()->getCommitId()); + self::assertSame('commit-id', $info->getPreviousRevision()->getGitHubLocation()->getCommitId()); self::assertSame('repository', $info->getPreviousRevision()->getGitHubLocation()->getRepository()); self::assertSame(RevisionLocationType::GIT_HUB, $info->getPreviousRevision()->getRevisionType()); diff --git a/src/Service/Iot/tests/Unit/Input/CreateThingTypeRequestTest.php b/src/Service/Iot/tests/Unit/Input/CreateThingTypeRequestTest.php index 795007619..33a373584 100644 --- a/src/Service/Iot/tests/Unit/Input/CreateThingTypeRequestTest.php +++ b/src/Service/Iot/tests/Unit/Input/CreateThingTypeRequestTest.php @@ -15,7 +15,7 @@ public function testRequest(): void 'thingTypeName' => 'hvac', 'thingTypeProperties' => new ThingTypeProperties([ 'thingTypeDescription' => 'HVAC', - 'searchableAttributes' => ['air-conditionner'], + 'searchableAttributes' => ['air-conditioner'], ]), 'tags' => [new Tag([ 'Key' => 'default_temperature', @@ -37,7 +37,7 @@ public function testRequest(): void } ], "thingTypeProperties": { - "searchableAttributes": [ "air-conditionner" ], + "searchableAttributes": [ "air-conditioner" ], "thingTypeDescription": "HVAC" } } diff --git a/src/Service/Kinesis/src/Input/ListShardsInput.php b/src/Service/Kinesis/src/Input/ListShardsInput.php index 24ac20bff..47e7f27c5 100644 --- a/src/Service/Kinesis/src/Input/ListShardsInput.php +++ b/src/Service/Kinesis/src/Input/ListShardsInput.php @@ -83,7 +83,7 @@ final class ListShardsInput extends Input * specify either the `ShardId` or the `Timestamp` optional properties. * * If you specify the `AFTER_SHARD_ID` type, you must also provide the value for the optional `ShardId` property. The - * `ShardId` property is identical in fuctionality to the `ExclusiveStartShardId` parameter of the `ListShards` API. + * `ShardId` property is identical in functionality to the `ExclusiveStartShardId` parameter of the `ListShards` API. * When `ShardId` property is specified, the response includes the shards starting with the shard whose ID immediately * follows the `ShardId` that you provided. * diff --git a/src/Service/Kinesis/src/ValueObject/ShardFilter.php b/src/Service/Kinesis/src/ValueObject/ShardFilter.php index 1d1eadc6c..04111583c 100644 --- a/src/Service/Kinesis/src/ValueObject/ShardFilter.php +++ b/src/Service/Kinesis/src/ValueObject/ShardFilter.php @@ -23,7 +23,7 @@ final class ShardFilter * - `AT_LATEST` - the response includes only the currently open shards of the data stream. * - `AT_TIMESTAMP` - the response includes all shards whose start timestamp is less than or equal to the given * timestamp and end timestamp is greater than or equal to the given timestamp or still open. - * - `FROM_TIMESTAMP` - the response incldues all closed shards whose end timestamp is greater than or equal to the + * - `FROM_TIMESTAMP` - the response includes all closed shards whose end timestamp is greater than or equal to the * given timestamp and also all open shards. Corrected to `TRIM_HORIZON` of the data stream if `FROM_TIMESTAMP` is * less than the `TRIM_HORIZON` value. * @@ -32,7 +32,7 @@ final class ShardFilter private $type; /** - * The exclusive start `shardID` speified in the `ShardFilter` parameter. This property can only be used if the + * The exclusive start `shardID` specified in the `ShardFilter` parameter. This property can only be used if the * `AFTER_SHARD_ID` shard type is specified. * * @var string|null diff --git a/src/Service/Lambda/CHANGELOG.md b/src/Service/Lambda/CHANGELOG.md index e4a718ea9..0fb0cbf51 100644 --- a/src/Service/Lambda/CHANGELOG.md +++ b/src/Service/Lambda/CHANGELOG.md @@ -65,7 +65,7 @@ ### Added - AWS api-change: Rework regions configuration -- AWS api-change: remove trailling `/` in `ListFunctions` request +- AWS api-change: remove trailing `/` in `ListFunctions` request ### Changed diff --git a/src/Service/Lambda/src/Result/FunctionConfiguration.php b/src/Service/Lambda/src/Result/FunctionConfiguration.php index a4833728f..63c77a404 100644 --- a/src/Service/Lambda/src/Result/FunctionConfiguration.php +++ b/src/Service/Lambda/src/Result/FunctionConfiguration.php @@ -328,7 +328,7 @@ class FunctionConfiguration extends Result private $snapStart; /** - * The ARN of the runtime and any errors that occured. + * The ARN of the runtime and any errors that occurred. * * @var RuntimeVersionConfig|null */ diff --git a/src/Service/Lambda/src/ValueObject/FunctionConfiguration.php b/src/Service/Lambda/src/ValueObject/FunctionConfiguration.php index 5b4ffcb95..3ea23949b 100644 --- a/src/Service/Lambda/src/ValueObject/FunctionConfiguration.php +++ b/src/Service/Lambda/src/ValueObject/FunctionConfiguration.php @@ -300,7 +300,7 @@ final class FunctionConfiguration private $snapStart; /** - * The ARN of the runtime and any errors that occured. + * The ARN of the runtime and any errors that occurred. * * @var RuntimeVersionConfig|null */ diff --git a/src/Service/Lambda/src/ValueObject/RuntimeVersionConfig.php b/src/Service/Lambda/src/ValueObject/RuntimeVersionConfig.php index f29c56c3d..96aa6c68e 100644 --- a/src/Service/Lambda/src/ValueObject/RuntimeVersionConfig.php +++ b/src/Service/Lambda/src/ValueObject/RuntimeVersionConfig.php @@ -3,7 +3,7 @@ namespace AsyncAws\Lambda\ValueObject; /** - * The ARN of the runtime and any errors that occured. + * The ARN of the runtime and any errors that occurred. */ final class RuntimeVersionConfig { diff --git a/src/Service/LocationService/src/Result/CalculateRouteResponse.php b/src/Service/LocationService/src/Result/CalculateRouteResponse.php index 87d3c8c55..5447f0e29 100644 --- a/src/Service/LocationService/src/Result/CalculateRouteResponse.php +++ b/src/Service/LocationService/src/Result/CalculateRouteResponse.php @@ -29,7 +29,7 @@ class CalculateRouteResponse extends Result * A route with a waypoint between the departure and destination position returns two legs with the positions snapped to * a nearby road: * - * - Leg 1: The `StartPosition` is the departure position . The `EndPosition` is the waypoint positon. + * - Leg 1: The `StartPosition` is the departure position. The `EndPosition` is the waypoint position. * - Leg 2: The `StartPosition` is the waypoint position. The `EndPosition` is the destination position. * * [^1]: https://docs.aws.amazon.com/location/previous/developerguide/snap-to-nearby-road.html diff --git a/src/Service/LocationService/src/ValueObject/Leg.php b/src/Service/LocationService/src/ValueObject/Leg.php index b6f88ea79..a27f605aa 100644 --- a/src/Service/LocationService/src/ValueObject/Leg.php +++ b/src/Service/LocationService/src/ValueObject/Leg.php @@ -17,7 +17,7 @@ * A route with a waypoint between the departure and destination position returns two legs with the positions snapped to * a nearby road: * - * - Leg 1: The `StartPosition` is the departure position . The `EndPosition` is the waypoint positon. + * - Leg 1: The `StartPosition` is the departure position. The `EndPosition` is the waypoint position. * - Leg 2: The `StartPosition` is the waypoint position. The `EndPosition` is the destination position. * * [^1]: https://docs.aws.amazon.com/location/previous/developerguide/snap-to-nearby-road.html diff --git a/src/Service/MediaConvert/src/Enum/AccelerationStatus.php b/src/Service/MediaConvert/src/Enum/AccelerationStatus.php index 3e3968dd6..7458f101b 100644 --- a/src/Service/MediaConvert/src/Enum/AccelerationStatus.php +++ b/src/Service/MediaConvert/src/Enum/AccelerationStatus.php @@ -7,7 +7,7 @@ * (AccelerationMode) set to DISABLED, AccelerationStatus is always NOT_APPLICABLE. For jobs that have Acceleration * (AccelerationMode) set to ENABLED or PREFERRED, AccelerationStatus is one of the other states. AccelerationStatus is * IN_PROGRESS initially, while the service determines whether the input files and job settings are compatible with - * accelerated transcoding. If they are, AcclerationStatus is ACCELERATED. If your input files and job settings aren't + * accelerated transcoding. If they are, AccelerationStatus is ACCELERATED. If your input files and job settings aren't * compatible with accelerated transcoding, the service either fails your job or runs it without accelerated * transcoding, depending on how you set Acceleration (AccelerationMode). When the service runs your job without * accelerated transcoding, AccelerationStatus is NOT_ACCELERATED. diff --git a/src/Service/MediaConvert/src/Enum/AudioLanguageCodeControl.php b/src/Service/MediaConvert/src/Enum/AudioLanguageCodeControl.php index 3730dde0f..390e274ea 100644 --- a/src/Service/MediaConvert/src/Enum/AudioLanguageCodeControl.php +++ b/src/Service/MediaConvert/src/Enum/AudioLanguageCodeControl.php @@ -4,7 +4,7 @@ /** * Specify which source for language code takes precedence for this audio track. When you choose Follow input, the - * service uses the language code from the input track if it's present. If there's no languge code on the input track, + * service uses the language code from the input track if it's present. If there's no language code on the input track, * the service uses the code that you specify in the setting Language code. When you choose Use configured, the service * uses the language code that you specify. */ diff --git a/src/Service/MediaConvert/src/Enum/CmfcC2paManifest.php b/src/Service/MediaConvert/src/Enum/CmfcC2paManifest.php index ea013dd1c..49b35d38e 100644 --- a/src/Service/MediaConvert/src/Enum/CmfcC2paManifest.php +++ b/src/Service/MediaConvert/src/Enum/CmfcC2paManifest.php @@ -3,7 +3,7 @@ namespace AsyncAws\MediaConvert\Enum; /** - * When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on + * When enabled, a C2PA compliant manifest will be generated, signed and embedded in the output. For more information on * C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html. */ final class CmfcC2paManifest diff --git a/src/Service/MediaConvert/src/Enum/DolbyVisionLevel6Mode.php b/src/Service/MediaConvert/src/Enum/DolbyVisionLevel6Mode.php index 549e245bf..6c82c02f4 100644 --- a/src/Service/MediaConvert/src/Enum/DolbyVisionLevel6Mode.php +++ b/src/Service/MediaConvert/src/Enum/DolbyVisionLevel6Mode.php @@ -3,7 +3,7 @@ namespace AsyncAws\MediaConvert\Enum; /** - * Use Dolby Vision Mode to choose how the service will handle Dolby Vision MaxCLL and MaxFALL properies. + * Use Dolby Vision Mode to choose how the service will handle Dolby Vision MaxCLL and MaxFALL properties. */ final class DolbyVisionLevel6Mode { diff --git a/src/Service/MediaConvert/src/Enum/Mp4C2paManifest.php b/src/Service/MediaConvert/src/Enum/Mp4C2paManifest.php index 52a53c4a0..2f7693b2c 100644 --- a/src/Service/MediaConvert/src/Enum/Mp4C2paManifest.php +++ b/src/Service/MediaConvert/src/Enum/Mp4C2paManifest.php @@ -3,7 +3,7 @@ namespace AsyncAws\MediaConvert\Enum; /** - * When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on + * When enabled, a C2PA compliant manifest will be generated, signed and embedded in the output. For more information on * C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html. */ final class Mp4C2paManifest diff --git a/src/Service/MediaConvert/src/Enum/MpdC2paManifest.php b/src/Service/MediaConvert/src/Enum/MpdC2paManifest.php index 97f437cc6..fb5cdc75b 100644 --- a/src/Service/MediaConvert/src/Enum/MpdC2paManifest.php +++ b/src/Service/MediaConvert/src/Enum/MpdC2paManifest.php @@ -3,7 +3,7 @@ namespace AsyncAws\MediaConvert\Enum; /** - * When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on + * When enabled, a C2PA compliant manifest will be generated, signed and embedded in the output. For more information on * C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html. */ final class MpdC2paManifest diff --git a/src/Service/MediaConvert/src/ValueObject/AudioDescription.php b/src/Service/MediaConvert/src/ValueObject/AudioDescription.php index 74adc125f..c0f0e8750 100644 --- a/src/Service/MediaConvert/src/ValueObject/AudioDescription.php +++ b/src/Service/MediaConvert/src/ValueObject/AudioDescription.php @@ -93,7 +93,7 @@ final class AudioDescription /** * Specify the language for your output audio track. To follow the input language: Leave blank. When you do, also set * Language code control to Follow input. If no input language is detected MediaConvert will not write an output - * language code. To follow the input langauge, but fall back to a specified language code if there is no input language + * language code. To follow the input language, but fall back to a specified language code if there is no input language * to follow: Enter an ISO 639-2 three-letter language code in all capital letters. When you do, also set Language code * control to Follow input. To specify the language code: Enter an ISO 639 three-letter language code in all capital * letters. When you do, also set Language code control to Use configured. @@ -104,7 +104,7 @@ final class AudioDescription /** * Specify which source for language code takes precedence for this audio track. When you choose Follow input, the - * service uses the language code from the input track if it's present. If there's no languge code on the input track, + * service uses the language code from the input track if it's present. If there's no language code on the input track, * the service uses the code that you specify in the setting Language code. When you choose Use configured, the service * uses the language code that you specify. * diff --git a/src/Service/MediaConvert/src/ValueObject/AutomatedAbrRule.php b/src/Service/MediaConvert/src/ValueObject/AutomatedAbrRule.php index 8714a3378..f1bb12f41 100644 --- a/src/Service/MediaConvert/src/ValueObject/AutomatedAbrRule.php +++ b/src/Service/MediaConvert/src/ValueObject/AutomatedAbrRule.php @@ -11,7 +11,7 @@ final class AutomatedAbrRule { /** - * When customer adds the allowed renditions rule for auto ABR ladder, they are required to add at leat one rendition to + * When customer adds the allowed renditions rule for auto ABR ladder, they are required to add at least one rendition to * allowedRenditions list. * * @var AllowedRenditionSize[]|null @@ -19,7 +19,7 @@ final class AutomatedAbrRule private $allowedRenditions; /** - * When customer adds the force include renditions rule for auto ABR ladder, they are required to add at leat one + * When customer adds the force include renditions rule for auto ABR ladder, they are required to add at least one * rendition to forceIncludeRenditions list. * * @var ForceIncludeRenditionSize[]|null diff --git a/src/Service/MediaConvert/src/ValueObject/BurninDestinationSettings.php b/src/Service/MediaConvert/src/ValueObject/BurninDestinationSettings.php index 882da4fca..aae4857ee 100644 --- a/src/Service/MediaConvert/src/ValueObject/BurninDestinationSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/BurninDestinationSettings.php @@ -145,7 +145,7 @@ final class BurninDestinationSettings private $fontSize; /** - * Ignore this setting unless your Font color is set to Hex. Enter either six or eight hexidecimal digits, representing + * Ignore this setting unless your Font color is set to Hex. Enter either six or eight hexadecimal digits, representing * red, green, and blue, with two optional extra digits for alpha. For example a value of 1122AABB is a red value of * 0x11, a green value of 0x22, a blue value of 0xAA, and an alpha value of 0xBB. * diff --git a/src/Service/MediaConvert/src/ValueObject/CaptionSelector.php b/src/Service/MediaConvert/src/ValueObject/CaptionSelector.php index e8706b4be..12df6ee16 100644 --- a/src/Service/MediaConvert/src/ValueObject/CaptionSelector.php +++ b/src/Service/MediaConvert/src/ValueObject/CaptionSelector.php @@ -34,7 +34,7 @@ final class CaptionSelector /** * If your input captions are SCC, TTML, STL, SMI, SRT, or IMSC in an xml file, specify the URI of the input captions - * source file. If your input captions are IMSC in an IMF package, use TrackSourceSettings instead of FileSoureSettings. + * source file. If your input captions are IMSC in an IMF package, use TrackSourceSettings instead of FileSourceSettings. * * @var CaptionSourceSettings|null */ diff --git a/src/Service/MediaConvert/src/ValueObject/CaptionSourceSettings.php b/src/Service/MediaConvert/src/ValueObject/CaptionSourceSettings.php index 1a3e54e02..a04066b07 100644 --- a/src/Service/MediaConvert/src/ValueObject/CaptionSourceSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/CaptionSourceSettings.php @@ -7,7 +7,7 @@ /** * If your input captions are SCC, TTML, STL, SMI, SRT, or IMSC in an xml file, specify the URI of the input captions - * source file. If your input captions are IMSC in an IMF package, use TrackSourceSettings instead of FileSoureSettings. + * source file. If your input captions are IMSC in an IMF package, use TrackSourceSettings instead of FileSourceSettings. */ final class CaptionSourceSettings { @@ -35,7 +35,7 @@ final class CaptionSourceSettings /** * If your input captions are SCC, SMI, SRT, STL, TTML, WebVTT, or IMSC 1.1 in an xml file, specify the URI of the input * caption source file. If your caption source is IMSC in an IMF package, use TrackSourceSettings instead of - * FileSoureSettings. + * FileSourceSettings. * * @var FileSourceSettings|null */ diff --git a/src/Service/MediaConvert/src/ValueObject/ClipLimits.php b/src/Service/MediaConvert/src/ValueObject/ClipLimits.php index 51ef3259d..3b3b69403 100644 --- a/src/Service/MediaConvert/src/ValueObject/ClipLimits.php +++ b/src/Service/MediaConvert/src/ValueObject/ClipLimits.php @@ -41,7 +41,7 @@ final class ClipLimits * Specify the Minimum YUV color sample limit. MediaConvert conforms any pixels in your input below the value that you * specify to typical limited range bounds. Enter an integer from 0 to 128. Leave blank to use the default value 64. The * value that you enter applies to 10-bit ranges. For 8-bit ranges, MediaConvert automatically scales this value down. - * When you specify a value for Minumum YUV, you must set Sample range conversion to Limited range clip. + * When you specify a value for Minimum YUV, you must set Sample range conversion to Limited range clip. * * @var int|null */ diff --git a/src/Service/MediaConvert/src/ValueObject/CmfcSettings.php b/src/Service/MediaConvert/src/ValueObject/CmfcSettings.php index 016d38592..fa161cd4a 100644 --- a/src/Service/MediaConvert/src/ValueObject/CmfcSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/CmfcSettings.php @@ -83,7 +83,7 @@ final class CmfcSettings private $audioTrackType; /** - * When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on + * When enabled, a C2PA compliant manifest will be generated, signed and embedded in the output. For more information on * C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html. * * @var CmfcC2paManifest::*|null diff --git a/src/Service/MediaConvert/src/ValueObject/DolbyVision.php b/src/Service/MediaConvert/src/ValueObject/DolbyVision.php index c9f28fdb7..0040ed6f1 100644 --- a/src/Service/MediaConvert/src/ValueObject/DolbyVision.php +++ b/src/Service/MediaConvert/src/ValueObject/DolbyVision.php @@ -33,7 +33,7 @@ final class DolbyVision private $l6Metadata; /** - * Use Dolby Vision Mode to choose how the service will handle Dolby Vision MaxCLL and MaxFALL properies. + * Use Dolby Vision Mode to choose how the service will handle Dolby Vision MaxCLL and MaxFALL properties. * * @var DolbyVisionLevel6Mode::*|null */ diff --git a/src/Service/MediaConvert/src/ValueObject/DvbSubDestinationSettings.php b/src/Service/MediaConvert/src/ValueObject/DvbSubDestinationSettings.php index 7fd127359..d33477ea0 100644 --- a/src/Service/MediaConvert/src/ValueObject/DvbSubDestinationSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/DvbSubDestinationSettings.php @@ -200,7 +200,7 @@ final class DvbSubDestinationSettings private $height; /** - * Ignore this setting unless your Font color is set to Hex. Enter either six or eight hexidecimal digits, representing + * Ignore this setting unless your Font color is set to Hex. Enter either six or eight hexadecimal digits, representing * red, green, and blue, with two optional extra digits for alpha. For example a value of 1122AABB is a red value of * 0x11, a green value of 0x22, a blue value of 0xAA, and an alpha value of 0xBB. * diff --git a/src/Service/MediaConvert/src/ValueObject/FileSourceSettings.php b/src/Service/MediaConvert/src/ValueObject/FileSourceSettings.php index 5357489bd..d3f1e3aee 100644 --- a/src/Service/MediaConvert/src/ValueObject/FileSourceSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/FileSourceSettings.php @@ -12,7 +12,7 @@ /** * If your input captions are SCC, SMI, SRT, STL, TTML, WebVTT, or IMSC 1.1 in an xml file, specify the URI of the input * caption source file. If your caption source is IMSC in an IMF package, use TrackSourceSettings instead of - * FileSoureSettings. + * FileSourceSettings. */ final class FileSourceSettings { diff --git a/src/Service/MediaConvert/src/ValueObject/H264Settings.php b/src/Service/MediaConvert/src/ValueObject/H264Settings.php index 75a4e3a45..0e38e4ab2 100644 --- a/src/Service/MediaConvert/src/ValueObject/H264Settings.php +++ b/src/Service/MediaConvert/src/ValueObject/H264Settings.php @@ -452,7 +452,7 @@ final class H264Settings * a specification requirement, we recommend that you adjust the softness of your output by using a lower value for the * setting Sharpness or by enabling a noise reducer filter. The Softness setting specifies the quantization matrices * that the encoder uses. Keep the default value, 0, for flat quantization. Choose the value 1 or 16 to use the default - * JVT softening quantization matricies from the H.264 specification. Choose a value from 17 to 128 to use planar + * JVT softening quantization matrices from the H.264 specification. Choose a value from 17 to 128 to use planar * interpolation. Increasing values from 17 to 128 result in increasing reduction of high-frequency data. The value 128 * results in the softest video. * diff --git a/src/Service/MediaConvert/src/ValueObject/Job.php b/src/Service/MediaConvert/src/ValueObject/Job.php index 5b0a83d75..3c009803b 100644 --- a/src/Service/MediaConvert/src/ValueObject/Job.php +++ b/src/Service/MediaConvert/src/ValueObject/Job.php @@ -29,7 +29,7 @@ final class Job * (AccelerationMode) set to DISABLED, AccelerationStatus is always NOT_APPLICABLE. For jobs that have Acceleration * (AccelerationMode) set to ENABLED or PREFERRED, AccelerationStatus is one of the other states. AccelerationStatus is * IN_PROGRESS initially, while the service determines whether the input files and job settings are compatible with - * accelerated transcoding. If they are, AcclerationStatus is ACCELERATED. If your input files and job settings aren't + * accelerated transcoding. If they are, AccelerationStatus is ACCELERATED. If your input files and job settings aren't * compatible with accelerated transcoding, the service either fails your job or runs it without accelerated * transcoding, depending on how you set Acceleration (AccelerationMode). When the service runs your job without * accelerated transcoding, AccelerationStatus is NOT_ACCELERATED. diff --git a/src/Service/MediaConvert/src/ValueObject/JobSettings.php b/src/Service/MediaConvert/src/ValueObject/JobSettings.php index 3a38043d0..0b859532f 100644 --- a/src/Service/MediaConvert/src/ValueObject/JobSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/JobSettings.php @@ -60,7 +60,7 @@ final class JobSettings /** * Use Inputs to define source file used in the transcode job. There can be multiple inputs add in a job. These inputs - * will be concantenated together to create the output. + * will be concatenated together to create the output. * * @var Input[]|null */ diff --git a/src/Service/MediaConvert/src/ValueObject/Mp4Settings.php b/src/Service/MediaConvert/src/ValueObject/Mp4Settings.php index ab32d0ecd..3685e89d9 100644 --- a/src/Service/MediaConvert/src/ValueObject/Mp4Settings.php +++ b/src/Service/MediaConvert/src/ValueObject/Mp4Settings.php @@ -32,7 +32,7 @@ final class Mp4Settings private $audioDuration; /** - * When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on + * When enabled, a C2PA compliant manifest will be generated, signed and embedded in the output. For more information on * C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html. * * @var Mp4C2paManifest::*|null diff --git a/src/Service/MediaConvert/src/ValueObject/MpdSettings.php b/src/Service/MediaConvert/src/ValueObject/MpdSettings.php index 6ecf13144..b5d9b33b3 100644 --- a/src/Service/MediaConvert/src/ValueObject/MpdSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/MpdSettings.php @@ -46,7 +46,7 @@ final class MpdSettings private $audioDuration; /** - * When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on + * When enabled, a C2PA compliant manifest will be generated, signed and embedded in the output. For more information on * C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html. * * @var MpdC2paManifest::*|null diff --git a/src/Service/MediaConvert/src/ValueObject/StaticKeyProvider.php b/src/Service/MediaConvert/src/ValueObject/StaticKeyProvider.php index b796d0e47..35a75c1d5 100644 --- a/src/Service/MediaConvert/src/ValueObject/StaticKeyProvider.php +++ b/src/Service/MediaConvert/src/ValueObject/StaticKeyProvider.php @@ -24,7 +24,7 @@ final class StaticKeyProvider private $keyFormatVersions; /** - * Relates to DRM implementation. Use a 32-character hexidecimal string to specify Key Value. + * Relates to DRM implementation. Use a 32-character hexadecimal string to specify Key Value. * * @var string|null */ diff --git a/src/Service/MediaConvert/src/ValueObject/VideoSelector.php b/src/Service/MediaConvert/src/ValueObject/VideoSelector.php index 976a8648f..af4750287 100644 --- a/src/Service/MediaConvert/src/ValueObject/VideoSelector.php +++ b/src/Service/MediaConvert/src/ValueObject/VideoSelector.php @@ -103,7 +103,7 @@ final class VideoSelector /** * Use PID to select specific video data from an input file. Specify this value as an integer; the system automatically - * converts it to the hexidecimal value. For example, 257 selects PID 0x101. A PID, or packet identifier, is an + * converts it to the hexadecimal value. For example, 257 selects PID 0x101. A PID, or packet identifier, is an * identifier for a set of data in an MPEG-2 transport stream container. * * @var int|null diff --git a/src/Service/MediaConvert/src/ValueObject/XavcSettings.php b/src/Service/MediaConvert/src/ValueObject/XavcSettings.php index 23a608e05..2f426351b 100644 --- a/src/Service/MediaConvert/src/ValueObject/XavcSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/XavcSettings.php @@ -125,7 +125,7 @@ final class XavcSettings * Ignore this setting unless your downstream workflow requires that you specify it explicitly. Otherwise, we recommend * that you adjust the softness of your output by using a lower value for the setting Sharpness or by enabling a noise * reducer filter. The Softness setting specifies the quantization matrices that the encoder uses. Keep the default - * value, 0, for flat quantization. Choose the value 1 or 16 to use the default JVT softening quantization matricies + * value, 0, for flat quantization. Choose the value 1 or 16 to use the default JVT softening quantization matrices * from the H.264 specification. Choose a value from 17 to 128 to use planar interpolation. Increasing values from 17 to * 128 result in increasing reduction of high-frequency data. The value 128 results in the softest video. * diff --git a/src/Service/RdsDataService/CHANGELOG.md b/src/Service/RdsDataService/CHANGELOG.md index cfca2957e..b2b765eb7 100644 --- a/src/Service/RdsDataService/CHANGELOG.md +++ b/src/Service/RdsDataService/CHANGELOG.md @@ -49,7 +49,7 @@ ### Added -- AWS api-change: Addded InvalidResourceStateException. +- AWS api-change: Added InvalidResourceStateException. ## 2.2.1 diff --git a/src/Service/Route53/src/Input/CreateHostedZoneRequest.php b/src/Service/Route53/src/Input/CreateHostedZoneRequest.php index b52a368fc..584430b84 100644 --- a/src/Service/Route53/src/Input/CreateHostedZoneRequest.php +++ b/src/Service/Route53/src/Input/CreateHostedZoneRequest.php @@ -34,7 +34,7 @@ final class CreateHostedZoneRequest extends Input * with this hosted zone. * * You can specify only one Amazon VPC when you create a private hosted zone. If you are associating a VPC with a hosted - * zone with this request, the paramaters `VPCId` and `VPCRegion` are also required. + * zone with this request, the parameters `VPCId` and `VPCRegion` are also required. * * To associate additional Amazon VPCs with the hosted zone, use AssociateVPCWithHostedZone [^1] after you create a * hosted zone. diff --git a/src/Service/S3/CHANGELOG.md b/src/Service/S3/CHANGELOG.md index 1f1e98683..710273588 100644 --- a/src/Service/S3/CHANGELOG.md +++ b/src/Service/S3/CHANGELOG.md @@ -355,7 +355,7 @@ ### Fixed -- Fixed an issue in Metadata not beeing sent to AWS in `PutObject`, `CopyObject` and `CreateMultipartUpload` +- Fixed an issue in Metadata not being sent to AWS in `PutObject`, `CopyObject` and `CreateMultipartUpload` - Internal AWS prefix were added to Metadata's name in `GetObject` and `HeadObject`. ## 1.2.0 diff --git a/src/Service/S3/src/S3Client.php b/src/Service/S3/src/S3Client.php index 6fd65bfea..c861bd2d0 100644 --- a/src/Service/S3/src/S3Client.php +++ b/src/Service/S3/src/S3Client.php @@ -1470,7 +1470,7 @@ public function getBucketEncryption($input): GetBucketEncryptionOutput * key name prefix, which is supported for general purpose buckets for backward compatibility. For the related API * description, see GetBucketLifecycle [^2]. * - * > Lifecyle configurations for directory buckets only support expiring objects and cancelling multipart uploads. + * > Lifecycle configurations for directory buckets only support expiring objects and cancelling multipart uploads. * > Expiring of versioned objects, transitions and tag filters are not supported. * * - `Permissions`: @@ -2578,7 +2578,7 @@ public function putBucketCors($input): Result * previous version of the API supported filtering based only on an object key name prefix, which is supported for * backward compatibility for general purpose buckets. For the related API description, see PutBucketLifecycle [^3]. * - * > Lifecyle configurations for directory buckets only support expiring objects and cancelling multipart uploads. + * > Lifecycle configurations for directory buckets only support expiring objects and cancelling multipart uploads. * > Expiring of versioned objects,transitions and tag filters are not supported. * * A lifecycle rule consists of the following: diff --git a/src/Service/S3/tests/Integration/S3ClientTest.php b/src/Service/S3/tests/Integration/S3ClientTest.php index d065ab7f9..954f7e37f 100644 --- a/src/Service/S3/tests/Integration/S3ClientTest.php +++ b/src/Service/S3/tests/Integration/S3ClientTest.php @@ -487,7 +487,7 @@ public function testGetObjectConsistent(): void 'Key' => 'bar', ]); self::assertEquals('content', $result->getBody()->getContentAsString()); - // calling it twice to ensure consitency + // calling it twice to ensure consistency self::assertEquals('content', $result->getBody()->getContentAsString()); self::assertEquals('content', stream_get_contents($result->getBody()->getContentAsResource())); self::assertEquals('content', implode('', iterator_to_array($result->getBody()->getChunks()))); diff --git a/src/Service/Ses/src/ValueObject/Template.php b/src/Service/Ses/src/ValueObject/Template.php index ed4d2dc3d..7d2603665 100644 --- a/src/Service/Ses/src/ValueObject/Template.php +++ b/src/Service/Ses/src/ValueObject/Template.php @@ -5,7 +5,7 @@ /** * An object that defines the email template to use for an email message, and the values to use for any message * variables in that template. An *email template* is a type of message template that contains content that you want to - * reuse in email messages that you send. You can specifiy the email template by providing the name or ARN of an *email + * reuse in email messages that you send. You can specify the email template by providing the name or ARN of an *email * template* previously saved in your Amazon SES account or by providing the full template content. */ final class Template @@ -28,7 +28,7 @@ final class Template /** * The content of the template. * - * > Amazon SES supports only simple substitions when you send email using the `SendEmail` or `SendBulkEmail` operations + * > Amazon SES supports only simple substitutions when you send email using the `SendEmail` or `SendBulkEmail` operations * > and you provide the full template content in the request. * * @var EmailTemplateContent|null From fe0372097cad4203add069ef2e290761198ff2b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Mon, 20 Jul 2026 00:32:53 +0000 Subject: [PATCH 2/4] Regenerate --- .../Athena/src/ValueObject/ManagedLoggingConfiguration.php | 2 +- src/Service/CodeCommit/src/ValueObject/UserInfo.php | 2 +- src/Service/ElastiCache/src/ValueObject/CacheCluster.php | 2 +- src/Service/Kinesis/src/Input/ListShardsInput.php | 2 +- src/Service/Kinesis/src/ValueObject/ShardFilter.php | 4 ++-- src/Service/Lambda/src/Result/FunctionConfiguration.php | 2 +- src/Service/Lambda/src/ValueObject/FunctionConfiguration.php | 2 +- src/Service/Lambda/src/ValueObject/RuntimeVersionConfig.php | 2 +- .../LocationService/src/Result/CalculateRouteResponse.php | 2 +- src/Service/LocationService/src/ValueObject/Leg.php | 2 +- src/Service/MediaConvert/src/Enum/AccelerationStatus.php | 2 +- .../MediaConvert/src/Enum/AudioLanguageCodeControl.php | 2 +- src/Service/MediaConvert/src/Enum/CmfcC2paManifest.php | 2 +- src/Service/MediaConvert/src/Enum/DolbyVisionLevel6Mode.php | 2 +- src/Service/MediaConvert/src/Enum/Mp4C2paManifest.php | 2 +- src/Service/MediaConvert/src/Enum/MpdC2paManifest.php | 2 +- src/Service/MediaConvert/src/ValueObject/AudioDescription.php | 4 ++-- src/Service/MediaConvert/src/ValueObject/AutomatedAbrRule.php | 4 ++-- .../src/ValueObject/BurninDestinationSettings.php | 2 +- src/Service/MediaConvert/src/ValueObject/CaptionSelector.php | 2 +- .../MediaConvert/src/ValueObject/CaptionSourceSettings.php | 4 ++-- src/Service/MediaConvert/src/ValueObject/ClipLimits.php | 2 +- src/Service/MediaConvert/src/ValueObject/CmfcSettings.php | 2 +- src/Service/MediaConvert/src/ValueObject/DolbyVision.php | 2 +- .../src/ValueObject/DvbSubDestinationSettings.php | 2 +- .../MediaConvert/src/ValueObject/FileSourceSettings.php | 2 +- src/Service/MediaConvert/src/ValueObject/H264Settings.php | 2 +- src/Service/MediaConvert/src/ValueObject/Job.php | 2 +- src/Service/MediaConvert/src/ValueObject/JobSettings.php | 2 +- src/Service/MediaConvert/src/ValueObject/Mp4Settings.php | 2 +- src/Service/MediaConvert/src/ValueObject/MpdSettings.php | 2 +- .../MediaConvert/src/ValueObject/StaticKeyProvider.php | 2 +- src/Service/MediaConvert/src/ValueObject/VideoSelector.php | 2 +- src/Service/MediaConvert/src/ValueObject/XavcSettings.php | 2 +- src/Service/Route53/src/Input/CreateHostedZoneRequest.php | 2 +- src/Service/S3/src/S3Client.php | 4 ++-- src/Service/Ses/src/ValueObject/Template.php | 4 ++-- 37 files changed, 43 insertions(+), 43 deletions(-) diff --git a/src/Service/Athena/src/ValueObject/ManagedLoggingConfiguration.php b/src/Service/Athena/src/ValueObject/ManagedLoggingConfiguration.php index 175e3985e..0c8c9f957 100644 --- a/src/Service/Athena/src/ValueObject/ManagedLoggingConfiguration.php +++ b/src/Service/Athena/src/ValueObject/ManagedLoggingConfiguration.php @@ -10,7 +10,7 @@ final class ManagedLoggingConfiguration { /** - * Enables managed log persistence. + * Enables mamanged log persistence. * * @var bool */ diff --git a/src/Service/CodeCommit/src/ValueObject/UserInfo.php b/src/Service/CodeCommit/src/ValueObject/UserInfo.php index 7aa1d42ca..0173dfc2c 100644 --- a/src/Service/CodeCommit/src/ValueObject/UserInfo.php +++ b/src/Service/CodeCommit/src/ValueObject/UserInfo.php @@ -22,7 +22,7 @@ final class UserInfo private $email; /** - * The date when the specified commit was committed, in timestamp format with GMT offset. + * The date when the specified commit was commited, in timestamp format with GMT offset. * * @var string|null */ diff --git a/src/Service/ElastiCache/src/ValueObject/CacheCluster.php b/src/Service/ElastiCache/src/ValueObject/CacheCluster.php index b98dbc678..9553a0c98 100644 --- a/src/Service/ElastiCache/src/ValueObject/CacheCluster.php +++ b/src/Service/ElastiCache/src/ValueObject/CacheCluster.php @@ -240,7 +240,7 @@ final class CacheCluster /** *  If you are running Valkey or Redis OSS engine version 6.0 or later, set this parameter to yes if you want to opt-in - * to the next auto minor version upgrade campaign. This parameter is disabled for previous versions. . + * to the next auto minor version upgrade campaign. This parameter is disabled for previous versions. * * @var bool|null */ diff --git a/src/Service/Kinesis/src/Input/ListShardsInput.php b/src/Service/Kinesis/src/Input/ListShardsInput.php index 47e7f27c5..24ac20bff 100644 --- a/src/Service/Kinesis/src/Input/ListShardsInput.php +++ b/src/Service/Kinesis/src/Input/ListShardsInput.php @@ -83,7 +83,7 @@ final class ListShardsInput extends Input * specify either the `ShardId` or the `Timestamp` optional properties. * * If you specify the `AFTER_SHARD_ID` type, you must also provide the value for the optional `ShardId` property. The - * `ShardId` property is identical in functionality to the `ExclusiveStartShardId` parameter of the `ListShards` API. + * `ShardId` property is identical in fuctionality to the `ExclusiveStartShardId` parameter of the `ListShards` API. * When `ShardId` property is specified, the response includes the shards starting with the shard whose ID immediately * follows the `ShardId` that you provided. * diff --git a/src/Service/Kinesis/src/ValueObject/ShardFilter.php b/src/Service/Kinesis/src/ValueObject/ShardFilter.php index 04111583c..1d1eadc6c 100644 --- a/src/Service/Kinesis/src/ValueObject/ShardFilter.php +++ b/src/Service/Kinesis/src/ValueObject/ShardFilter.php @@ -23,7 +23,7 @@ final class ShardFilter * - `AT_LATEST` - the response includes only the currently open shards of the data stream. * - `AT_TIMESTAMP` - the response includes all shards whose start timestamp is less than or equal to the given * timestamp and end timestamp is greater than or equal to the given timestamp or still open. - * - `FROM_TIMESTAMP` - the response includes all closed shards whose end timestamp is greater than or equal to the + * - `FROM_TIMESTAMP` - the response incldues all closed shards whose end timestamp is greater than or equal to the * given timestamp and also all open shards. Corrected to `TRIM_HORIZON` of the data stream if `FROM_TIMESTAMP` is * less than the `TRIM_HORIZON` value. * @@ -32,7 +32,7 @@ final class ShardFilter private $type; /** - * The exclusive start `shardID` specified in the `ShardFilter` parameter. This property can only be used if the + * The exclusive start `shardID` speified in the `ShardFilter` parameter. This property can only be used if the * `AFTER_SHARD_ID` shard type is specified. * * @var string|null diff --git a/src/Service/Lambda/src/Result/FunctionConfiguration.php b/src/Service/Lambda/src/Result/FunctionConfiguration.php index 63c77a404..a4833728f 100644 --- a/src/Service/Lambda/src/Result/FunctionConfiguration.php +++ b/src/Service/Lambda/src/Result/FunctionConfiguration.php @@ -328,7 +328,7 @@ class FunctionConfiguration extends Result private $snapStart; /** - * The ARN of the runtime and any errors that occurred. + * The ARN of the runtime and any errors that occured. * * @var RuntimeVersionConfig|null */ diff --git a/src/Service/Lambda/src/ValueObject/FunctionConfiguration.php b/src/Service/Lambda/src/ValueObject/FunctionConfiguration.php index 3ea23949b..5b4ffcb95 100644 --- a/src/Service/Lambda/src/ValueObject/FunctionConfiguration.php +++ b/src/Service/Lambda/src/ValueObject/FunctionConfiguration.php @@ -300,7 +300,7 @@ final class FunctionConfiguration private $snapStart; /** - * The ARN of the runtime and any errors that occurred. + * The ARN of the runtime and any errors that occured. * * @var RuntimeVersionConfig|null */ diff --git a/src/Service/Lambda/src/ValueObject/RuntimeVersionConfig.php b/src/Service/Lambda/src/ValueObject/RuntimeVersionConfig.php index 96aa6c68e..f29c56c3d 100644 --- a/src/Service/Lambda/src/ValueObject/RuntimeVersionConfig.php +++ b/src/Service/Lambda/src/ValueObject/RuntimeVersionConfig.php @@ -3,7 +3,7 @@ namespace AsyncAws\Lambda\ValueObject; /** - * The ARN of the runtime and any errors that occurred. + * The ARN of the runtime and any errors that occured. */ final class RuntimeVersionConfig { diff --git a/src/Service/LocationService/src/Result/CalculateRouteResponse.php b/src/Service/LocationService/src/Result/CalculateRouteResponse.php index 5447f0e29..87d3c8c55 100644 --- a/src/Service/LocationService/src/Result/CalculateRouteResponse.php +++ b/src/Service/LocationService/src/Result/CalculateRouteResponse.php @@ -29,7 +29,7 @@ class CalculateRouteResponse extends Result * A route with a waypoint between the departure and destination position returns two legs with the positions snapped to * a nearby road: * - * - Leg 1: The `StartPosition` is the departure position. The `EndPosition` is the waypoint position. + * - Leg 1: The `StartPosition` is the departure position . The `EndPosition` is the waypoint positon. * - Leg 2: The `StartPosition` is the waypoint position. The `EndPosition` is the destination position. * * [^1]: https://docs.aws.amazon.com/location/previous/developerguide/snap-to-nearby-road.html diff --git a/src/Service/LocationService/src/ValueObject/Leg.php b/src/Service/LocationService/src/ValueObject/Leg.php index a27f605aa..b6f88ea79 100644 --- a/src/Service/LocationService/src/ValueObject/Leg.php +++ b/src/Service/LocationService/src/ValueObject/Leg.php @@ -17,7 +17,7 @@ * A route with a waypoint between the departure and destination position returns two legs with the positions snapped to * a nearby road: * - * - Leg 1: The `StartPosition` is the departure position. The `EndPosition` is the waypoint position. + * - Leg 1: The `StartPosition` is the departure position . The `EndPosition` is the waypoint positon. * - Leg 2: The `StartPosition` is the waypoint position. The `EndPosition` is the destination position. * * [^1]: https://docs.aws.amazon.com/location/previous/developerguide/snap-to-nearby-road.html diff --git a/src/Service/MediaConvert/src/Enum/AccelerationStatus.php b/src/Service/MediaConvert/src/Enum/AccelerationStatus.php index 7458f101b..3e3968dd6 100644 --- a/src/Service/MediaConvert/src/Enum/AccelerationStatus.php +++ b/src/Service/MediaConvert/src/Enum/AccelerationStatus.php @@ -7,7 +7,7 @@ * (AccelerationMode) set to DISABLED, AccelerationStatus is always NOT_APPLICABLE. For jobs that have Acceleration * (AccelerationMode) set to ENABLED or PREFERRED, AccelerationStatus is one of the other states. AccelerationStatus is * IN_PROGRESS initially, while the service determines whether the input files and job settings are compatible with - * accelerated transcoding. If they are, AccelerationStatus is ACCELERATED. If your input files and job settings aren't + * accelerated transcoding. If they are, AcclerationStatus is ACCELERATED. If your input files and job settings aren't * compatible with accelerated transcoding, the service either fails your job or runs it without accelerated * transcoding, depending on how you set Acceleration (AccelerationMode). When the service runs your job without * accelerated transcoding, AccelerationStatus is NOT_ACCELERATED. diff --git a/src/Service/MediaConvert/src/Enum/AudioLanguageCodeControl.php b/src/Service/MediaConvert/src/Enum/AudioLanguageCodeControl.php index 390e274ea..3730dde0f 100644 --- a/src/Service/MediaConvert/src/Enum/AudioLanguageCodeControl.php +++ b/src/Service/MediaConvert/src/Enum/AudioLanguageCodeControl.php @@ -4,7 +4,7 @@ /** * Specify which source for language code takes precedence for this audio track. When you choose Follow input, the - * service uses the language code from the input track if it's present. If there's no language code on the input track, + * service uses the language code from the input track if it's present. If there's no languge code on the input track, * the service uses the code that you specify in the setting Language code. When you choose Use configured, the service * uses the language code that you specify. */ diff --git a/src/Service/MediaConvert/src/Enum/CmfcC2paManifest.php b/src/Service/MediaConvert/src/Enum/CmfcC2paManifest.php index 49b35d38e..ea013dd1c 100644 --- a/src/Service/MediaConvert/src/Enum/CmfcC2paManifest.php +++ b/src/Service/MediaConvert/src/Enum/CmfcC2paManifest.php @@ -3,7 +3,7 @@ namespace AsyncAws\MediaConvert\Enum; /** - * When enabled, a C2PA compliant manifest will be generated, signed and embedded in the output. For more information on + * When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on * C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html. */ final class CmfcC2paManifest diff --git a/src/Service/MediaConvert/src/Enum/DolbyVisionLevel6Mode.php b/src/Service/MediaConvert/src/Enum/DolbyVisionLevel6Mode.php index 6c82c02f4..549e245bf 100644 --- a/src/Service/MediaConvert/src/Enum/DolbyVisionLevel6Mode.php +++ b/src/Service/MediaConvert/src/Enum/DolbyVisionLevel6Mode.php @@ -3,7 +3,7 @@ namespace AsyncAws\MediaConvert\Enum; /** - * Use Dolby Vision Mode to choose how the service will handle Dolby Vision MaxCLL and MaxFALL properties. + * Use Dolby Vision Mode to choose how the service will handle Dolby Vision MaxCLL and MaxFALL properies. */ final class DolbyVisionLevel6Mode { diff --git a/src/Service/MediaConvert/src/Enum/Mp4C2paManifest.php b/src/Service/MediaConvert/src/Enum/Mp4C2paManifest.php index 2f7693b2c..52a53c4a0 100644 --- a/src/Service/MediaConvert/src/Enum/Mp4C2paManifest.php +++ b/src/Service/MediaConvert/src/Enum/Mp4C2paManifest.php @@ -3,7 +3,7 @@ namespace AsyncAws\MediaConvert\Enum; /** - * When enabled, a C2PA compliant manifest will be generated, signed and embedded in the output. For more information on + * When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on * C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html. */ final class Mp4C2paManifest diff --git a/src/Service/MediaConvert/src/Enum/MpdC2paManifest.php b/src/Service/MediaConvert/src/Enum/MpdC2paManifest.php index fb5cdc75b..97f437cc6 100644 --- a/src/Service/MediaConvert/src/Enum/MpdC2paManifest.php +++ b/src/Service/MediaConvert/src/Enum/MpdC2paManifest.php @@ -3,7 +3,7 @@ namespace AsyncAws\MediaConvert\Enum; /** - * When enabled, a C2PA compliant manifest will be generated, signed and embedded in the output. For more information on + * When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on * C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html. */ final class MpdC2paManifest diff --git a/src/Service/MediaConvert/src/ValueObject/AudioDescription.php b/src/Service/MediaConvert/src/ValueObject/AudioDescription.php index c0f0e8750..74adc125f 100644 --- a/src/Service/MediaConvert/src/ValueObject/AudioDescription.php +++ b/src/Service/MediaConvert/src/ValueObject/AudioDescription.php @@ -93,7 +93,7 @@ final class AudioDescription /** * Specify the language for your output audio track. To follow the input language: Leave blank. When you do, also set * Language code control to Follow input. If no input language is detected MediaConvert will not write an output - * language code. To follow the input language, but fall back to a specified language code if there is no input language + * language code. To follow the input langauge, but fall back to a specified language code if there is no input language * to follow: Enter an ISO 639-2 three-letter language code in all capital letters. When you do, also set Language code * control to Follow input. To specify the language code: Enter an ISO 639 three-letter language code in all capital * letters. When you do, also set Language code control to Use configured. @@ -104,7 +104,7 @@ final class AudioDescription /** * Specify which source for language code takes precedence for this audio track. When you choose Follow input, the - * service uses the language code from the input track if it's present. If there's no language code on the input track, + * service uses the language code from the input track if it's present. If there's no languge code on the input track, * the service uses the code that you specify in the setting Language code. When you choose Use configured, the service * uses the language code that you specify. * diff --git a/src/Service/MediaConvert/src/ValueObject/AutomatedAbrRule.php b/src/Service/MediaConvert/src/ValueObject/AutomatedAbrRule.php index f1bb12f41..8714a3378 100644 --- a/src/Service/MediaConvert/src/ValueObject/AutomatedAbrRule.php +++ b/src/Service/MediaConvert/src/ValueObject/AutomatedAbrRule.php @@ -11,7 +11,7 @@ final class AutomatedAbrRule { /** - * When customer adds the allowed renditions rule for auto ABR ladder, they are required to add at least one rendition to + * When customer adds the allowed renditions rule for auto ABR ladder, they are required to add at leat one rendition to * allowedRenditions list. * * @var AllowedRenditionSize[]|null @@ -19,7 +19,7 @@ final class AutomatedAbrRule private $allowedRenditions; /** - * When customer adds the force include renditions rule for auto ABR ladder, they are required to add at least one + * When customer adds the force include renditions rule for auto ABR ladder, they are required to add at leat one * rendition to forceIncludeRenditions list. * * @var ForceIncludeRenditionSize[]|null diff --git a/src/Service/MediaConvert/src/ValueObject/BurninDestinationSettings.php b/src/Service/MediaConvert/src/ValueObject/BurninDestinationSettings.php index aae4857ee..882da4fca 100644 --- a/src/Service/MediaConvert/src/ValueObject/BurninDestinationSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/BurninDestinationSettings.php @@ -145,7 +145,7 @@ final class BurninDestinationSettings private $fontSize; /** - * Ignore this setting unless your Font color is set to Hex. Enter either six or eight hexadecimal digits, representing + * Ignore this setting unless your Font color is set to Hex. Enter either six or eight hexidecimal digits, representing * red, green, and blue, with two optional extra digits for alpha. For example a value of 1122AABB is a red value of * 0x11, a green value of 0x22, a blue value of 0xAA, and an alpha value of 0xBB. * diff --git a/src/Service/MediaConvert/src/ValueObject/CaptionSelector.php b/src/Service/MediaConvert/src/ValueObject/CaptionSelector.php index 12df6ee16..e8706b4be 100644 --- a/src/Service/MediaConvert/src/ValueObject/CaptionSelector.php +++ b/src/Service/MediaConvert/src/ValueObject/CaptionSelector.php @@ -34,7 +34,7 @@ final class CaptionSelector /** * If your input captions are SCC, TTML, STL, SMI, SRT, or IMSC in an xml file, specify the URI of the input captions - * source file. If your input captions are IMSC in an IMF package, use TrackSourceSettings instead of FileSourceSettings. + * source file. If your input captions are IMSC in an IMF package, use TrackSourceSettings instead of FileSoureSettings. * * @var CaptionSourceSettings|null */ diff --git a/src/Service/MediaConvert/src/ValueObject/CaptionSourceSettings.php b/src/Service/MediaConvert/src/ValueObject/CaptionSourceSettings.php index a04066b07..1a3e54e02 100644 --- a/src/Service/MediaConvert/src/ValueObject/CaptionSourceSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/CaptionSourceSettings.php @@ -7,7 +7,7 @@ /** * If your input captions are SCC, TTML, STL, SMI, SRT, or IMSC in an xml file, specify the URI of the input captions - * source file. If your input captions are IMSC in an IMF package, use TrackSourceSettings instead of FileSourceSettings. + * source file. If your input captions are IMSC in an IMF package, use TrackSourceSettings instead of FileSoureSettings. */ final class CaptionSourceSettings { @@ -35,7 +35,7 @@ final class CaptionSourceSettings /** * If your input captions are SCC, SMI, SRT, STL, TTML, WebVTT, or IMSC 1.1 in an xml file, specify the URI of the input * caption source file. If your caption source is IMSC in an IMF package, use TrackSourceSettings instead of - * FileSourceSettings. + * FileSoureSettings. * * @var FileSourceSettings|null */ diff --git a/src/Service/MediaConvert/src/ValueObject/ClipLimits.php b/src/Service/MediaConvert/src/ValueObject/ClipLimits.php index 3b3b69403..51ef3259d 100644 --- a/src/Service/MediaConvert/src/ValueObject/ClipLimits.php +++ b/src/Service/MediaConvert/src/ValueObject/ClipLimits.php @@ -41,7 +41,7 @@ final class ClipLimits * Specify the Minimum YUV color sample limit. MediaConvert conforms any pixels in your input below the value that you * specify to typical limited range bounds. Enter an integer from 0 to 128. Leave blank to use the default value 64. The * value that you enter applies to 10-bit ranges. For 8-bit ranges, MediaConvert automatically scales this value down. - * When you specify a value for Minimum YUV, you must set Sample range conversion to Limited range clip. + * When you specify a value for Minumum YUV, you must set Sample range conversion to Limited range clip. * * @var int|null */ diff --git a/src/Service/MediaConvert/src/ValueObject/CmfcSettings.php b/src/Service/MediaConvert/src/ValueObject/CmfcSettings.php index fa161cd4a..016d38592 100644 --- a/src/Service/MediaConvert/src/ValueObject/CmfcSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/CmfcSettings.php @@ -83,7 +83,7 @@ final class CmfcSettings private $audioTrackType; /** - * When enabled, a C2PA compliant manifest will be generated, signed and embedded in the output. For more information on + * When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on * C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html. * * @var CmfcC2paManifest::*|null diff --git a/src/Service/MediaConvert/src/ValueObject/DolbyVision.php b/src/Service/MediaConvert/src/ValueObject/DolbyVision.php index 0040ed6f1..c9f28fdb7 100644 --- a/src/Service/MediaConvert/src/ValueObject/DolbyVision.php +++ b/src/Service/MediaConvert/src/ValueObject/DolbyVision.php @@ -33,7 +33,7 @@ final class DolbyVision private $l6Metadata; /** - * Use Dolby Vision Mode to choose how the service will handle Dolby Vision MaxCLL and MaxFALL properties. + * Use Dolby Vision Mode to choose how the service will handle Dolby Vision MaxCLL and MaxFALL properies. * * @var DolbyVisionLevel6Mode::*|null */ diff --git a/src/Service/MediaConvert/src/ValueObject/DvbSubDestinationSettings.php b/src/Service/MediaConvert/src/ValueObject/DvbSubDestinationSettings.php index d33477ea0..7fd127359 100644 --- a/src/Service/MediaConvert/src/ValueObject/DvbSubDestinationSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/DvbSubDestinationSettings.php @@ -200,7 +200,7 @@ final class DvbSubDestinationSettings private $height; /** - * Ignore this setting unless your Font color is set to Hex. Enter either six or eight hexadecimal digits, representing + * Ignore this setting unless your Font color is set to Hex. Enter either six or eight hexidecimal digits, representing * red, green, and blue, with two optional extra digits for alpha. For example a value of 1122AABB is a red value of * 0x11, a green value of 0x22, a blue value of 0xAA, and an alpha value of 0xBB. * diff --git a/src/Service/MediaConvert/src/ValueObject/FileSourceSettings.php b/src/Service/MediaConvert/src/ValueObject/FileSourceSettings.php index d3f1e3aee..5357489bd 100644 --- a/src/Service/MediaConvert/src/ValueObject/FileSourceSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/FileSourceSettings.php @@ -12,7 +12,7 @@ /** * If your input captions are SCC, SMI, SRT, STL, TTML, WebVTT, or IMSC 1.1 in an xml file, specify the URI of the input * caption source file. If your caption source is IMSC in an IMF package, use TrackSourceSettings instead of - * FileSourceSettings. + * FileSoureSettings. */ final class FileSourceSettings { diff --git a/src/Service/MediaConvert/src/ValueObject/H264Settings.php b/src/Service/MediaConvert/src/ValueObject/H264Settings.php index 0e38e4ab2..75a4e3a45 100644 --- a/src/Service/MediaConvert/src/ValueObject/H264Settings.php +++ b/src/Service/MediaConvert/src/ValueObject/H264Settings.php @@ -452,7 +452,7 @@ final class H264Settings * a specification requirement, we recommend that you adjust the softness of your output by using a lower value for the * setting Sharpness or by enabling a noise reducer filter. The Softness setting specifies the quantization matrices * that the encoder uses. Keep the default value, 0, for flat quantization. Choose the value 1 or 16 to use the default - * JVT softening quantization matrices from the H.264 specification. Choose a value from 17 to 128 to use planar + * JVT softening quantization matricies from the H.264 specification. Choose a value from 17 to 128 to use planar * interpolation. Increasing values from 17 to 128 result in increasing reduction of high-frequency data. The value 128 * results in the softest video. * diff --git a/src/Service/MediaConvert/src/ValueObject/Job.php b/src/Service/MediaConvert/src/ValueObject/Job.php index 3c009803b..5b0a83d75 100644 --- a/src/Service/MediaConvert/src/ValueObject/Job.php +++ b/src/Service/MediaConvert/src/ValueObject/Job.php @@ -29,7 +29,7 @@ final class Job * (AccelerationMode) set to DISABLED, AccelerationStatus is always NOT_APPLICABLE. For jobs that have Acceleration * (AccelerationMode) set to ENABLED or PREFERRED, AccelerationStatus is one of the other states. AccelerationStatus is * IN_PROGRESS initially, while the service determines whether the input files and job settings are compatible with - * accelerated transcoding. If they are, AccelerationStatus is ACCELERATED. If your input files and job settings aren't + * accelerated transcoding. If they are, AcclerationStatus is ACCELERATED. If your input files and job settings aren't * compatible with accelerated transcoding, the service either fails your job or runs it without accelerated * transcoding, depending on how you set Acceleration (AccelerationMode). When the service runs your job without * accelerated transcoding, AccelerationStatus is NOT_ACCELERATED. diff --git a/src/Service/MediaConvert/src/ValueObject/JobSettings.php b/src/Service/MediaConvert/src/ValueObject/JobSettings.php index 0b859532f..3a38043d0 100644 --- a/src/Service/MediaConvert/src/ValueObject/JobSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/JobSettings.php @@ -60,7 +60,7 @@ final class JobSettings /** * Use Inputs to define source file used in the transcode job. There can be multiple inputs add in a job. These inputs - * will be concatenated together to create the output. + * will be concantenated together to create the output. * * @var Input[]|null */ diff --git a/src/Service/MediaConvert/src/ValueObject/Mp4Settings.php b/src/Service/MediaConvert/src/ValueObject/Mp4Settings.php index 3685e89d9..ab32d0ecd 100644 --- a/src/Service/MediaConvert/src/ValueObject/Mp4Settings.php +++ b/src/Service/MediaConvert/src/ValueObject/Mp4Settings.php @@ -32,7 +32,7 @@ final class Mp4Settings private $audioDuration; /** - * When enabled, a C2PA compliant manifest will be generated, signed and embedded in the output. For more information on + * When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on * C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html. * * @var Mp4C2paManifest::*|null diff --git a/src/Service/MediaConvert/src/ValueObject/MpdSettings.php b/src/Service/MediaConvert/src/ValueObject/MpdSettings.php index b5d9b33b3..6ecf13144 100644 --- a/src/Service/MediaConvert/src/ValueObject/MpdSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/MpdSettings.php @@ -46,7 +46,7 @@ final class MpdSettings private $audioDuration; /** - * When enabled, a C2PA compliant manifest will be generated, signed and embedded in the output. For more information on + * When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on * C2PA, see https://c2pa.org/specifications/specifications/2.1/index.html. * * @var MpdC2paManifest::*|null diff --git a/src/Service/MediaConvert/src/ValueObject/StaticKeyProvider.php b/src/Service/MediaConvert/src/ValueObject/StaticKeyProvider.php index 35a75c1d5..b796d0e47 100644 --- a/src/Service/MediaConvert/src/ValueObject/StaticKeyProvider.php +++ b/src/Service/MediaConvert/src/ValueObject/StaticKeyProvider.php @@ -24,7 +24,7 @@ final class StaticKeyProvider private $keyFormatVersions; /** - * Relates to DRM implementation. Use a 32-character hexadecimal string to specify Key Value. + * Relates to DRM implementation. Use a 32-character hexidecimal string to specify Key Value. * * @var string|null */ diff --git a/src/Service/MediaConvert/src/ValueObject/VideoSelector.php b/src/Service/MediaConvert/src/ValueObject/VideoSelector.php index af4750287..976a8648f 100644 --- a/src/Service/MediaConvert/src/ValueObject/VideoSelector.php +++ b/src/Service/MediaConvert/src/ValueObject/VideoSelector.php @@ -103,7 +103,7 @@ final class VideoSelector /** * Use PID to select specific video data from an input file. Specify this value as an integer; the system automatically - * converts it to the hexadecimal value. For example, 257 selects PID 0x101. A PID, or packet identifier, is an + * converts it to the hexidecimal value. For example, 257 selects PID 0x101. A PID, or packet identifier, is an * identifier for a set of data in an MPEG-2 transport stream container. * * @var int|null diff --git a/src/Service/MediaConvert/src/ValueObject/XavcSettings.php b/src/Service/MediaConvert/src/ValueObject/XavcSettings.php index 2f426351b..23a608e05 100644 --- a/src/Service/MediaConvert/src/ValueObject/XavcSettings.php +++ b/src/Service/MediaConvert/src/ValueObject/XavcSettings.php @@ -125,7 +125,7 @@ final class XavcSettings * Ignore this setting unless your downstream workflow requires that you specify it explicitly. Otherwise, we recommend * that you adjust the softness of your output by using a lower value for the setting Sharpness or by enabling a noise * reducer filter. The Softness setting specifies the quantization matrices that the encoder uses. Keep the default - * value, 0, for flat quantization. Choose the value 1 or 16 to use the default JVT softening quantization matrices + * value, 0, for flat quantization. Choose the value 1 or 16 to use the default JVT softening quantization matricies * from the H.264 specification. Choose a value from 17 to 128 to use planar interpolation. Increasing values from 17 to * 128 result in increasing reduction of high-frequency data. The value 128 results in the softest video. * diff --git a/src/Service/Route53/src/Input/CreateHostedZoneRequest.php b/src/Service/Route53/src/Input/CreateHostedZoneRequest.php index 584430b84..b52a368fc 100644 --- a/src/Service/Route53/src/Input/CreateHostedZoneRequest.php +++ b/src/Service/Route53/src/Input/CreateHostedZoneRequest.php @@ -34,7 +34,7 @@ final class CreateHostedZoneRequest extends Input * with this hosted zone. * * You can specify only one Amazon VPC when you create a private hosted zone. If you are associating a VPC with a hosted - * zone with this request, the parameters `VPCId` and `VPCRegion` are also required. + * zone with this request, the paramaters `VPCId` and `VPCRegion` are also required. * * To associate additional Amazon VPCs with the hosted zone, use AssociateVPCWithHostedZone [^1] after you create a * hosted zone. diff --git a/src/Service/S3/src/S3Client.php b/src/Service/S3/src/S3Client.php index c861bd2d0..6fd65bfea 100644 --- a/src/Service/S3/src/S3Client.php +++ b/src/Service/S3/src/S3Client.php @@ -1470,7 +1470,7 @@ public function getBucketEncryption($input): GetBucketEncryptionOutput * key name prefix, which is supported for general purpose buckets for backward compatibility. For the related API * description, see GetBucketLifecycle [^2]. * - * > Lifecycle configurations for directory buckets only support expiring objects and cancelling multipart uploads. + * > Lifecyle configurations for directory buckets only support expiring objects and cancelling multipart uploads. * > Expiring of versioned objects, transitions and tag filters are not supported. * * - `Permissions`: @@ -2578,7 +2578,7 @@ public function putBucketCors($input): Result * previous version of the API supported filtering based only on an object key name prefix, which is supported for * backward compatibility for general purpose buckets. For the related API description, see PutBucketLifecycle [^3]. * - * > Lifecycle configurations for directory buckets only support expiring objects and cancelling multipart uploads. + * > Lifecyle configurations for directory buckets only support expiring objects and cancelling multipart uploads. * > Expiring of versioned objects,transitions and tag filters are not supported. * * A lifecycle rule consists of the following: diff --git a/src/Service/Ses/src/ValueObject/Template.php b/src/Service/Ses/src/ValueObject/Template.php index 7d2603665..ed4d2dc3d 100644 --- a/src/Service/Ses/src/ValueObject/Template.php +++ b/src/Service/Ses/src/ValueObject/Template.php @@ -5,7 +5,7 @@ /** * An object that defines the email template to use for an email message, and the values to use for any message * variables in that template. An *email template* is a type of message template that contains content that you want to - * reuse in email messages that you send. You can specify the email template by providing the name or ARN of an *email + * reuse in email messages that you send. You can specifiy the email template by providing the name or ARN of an *email * template* previously saved in your Amazon SES account or by providing the full template content. */ final class Template @@ -28,7 +28,7 @@ final class Template /** * The content of the template. * - * > Amazon SES supports only simple substitutions when you send email using the `SendEmail` or `SendBulkEmail` operations + * > Amazon SES supports only simple substitions when you send email using the `SendEmail` or `SendBulkEmail` operations * > and you provide the full template content in the request. * * @var EmailTemplateContent|null From d4f9bf3a06c93469d130aaa066b7c43baa48df44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Mon, 20 Jul 2026 09:10:23 +0000 Subject: [PATCH 3/4] Add component changelogs --- src/Core/CHANGELOG.md | 4 ++++ src/Integration/Monolog/CloudWatch/CHANGELOG.md | 4 ++++ src/Service/Athena/CHANGELOG.md | 4 ++++ src/Service/CodeDeploy/CHANGELOG.md | 4 ++++ src/Service/ElastiCache/CHANGELOG.md | 4 ++++ src/Service/Iot/CHANGELOG.md | 4 ++++ src/Service/Lambda/CHANGELOG.md | 4 ++++ src/Service/RdsDataService/CHANGELOG.md | 4 ++++ src/Service/S3/CHANGELOG.md | 4 ++++ 9 files changed, 36 insertions(+) diff --git a/src/Core/CHANGELOG.md b/src/Core/CHANGELOG.md index ddaa899ab..38b000066 100644 --- a/src/Core/CHANGELOG.md +++ b/src/Core/CHANGELOG.md @@ -2,6 +2,10 @@ ## NOT RELEASED +### Fixed + +- Fix typos. + ## 1.29.1 ### Changed diff --git a/src/Integration/Monolog/CloudWatch/CHANGELOG.md b/src/Integration/Monolog/CloudWatch/CHANGELOG.md index 577d64151..b00db8203 100644 --- a/src/Integration/Monolog/CloudWatch/CHANGELOG.md +++ b/src/Integration/Monolog/CloudWatch/CHANGELOG.md @@ -2,6 +2,10 @@ ## NOT RELEASED +### Fixed + +- Fix `async-aws` keyword typo. + ## 1.3.0 ### Dependency bumped diff --git a/src/Service/Athena/CHANGELOG.md b/src/Service/Athena/CHANGELOG.md index aaea71e31..0b7061a2d 100644 --- a/src/Service/Athena/CHANGELOG.md +++ b/src/Service/Athena/CHANGELOG.md @@ -2,6 +2,10 @@ ## NOT RELEASED +### Fixed + +- Fix typos. + ## 3.5.1 ### Changed diff --git a/src/Service/CodeDeploy/CHANGELOG.md b/src/Service/CodeDeploy/CHANGELOG.md index 5579b9507..55e7cd756 100644 --- a/src/Service/CodeDeploy/CHANGELOG.md +++ b/src/Service/CodeDeploy/CHANGELOG.md @@ -2,6 +2,10 @@ ## NOT RELEASED +### Fixed + +- Fix typos. + ## 2.4.1 ### Changed diff --git a/src/Service/ElastiCache/CHANGELOG.md b/src/Service/ElastiCache/CHANGELOG.md index 09ec84094..161c92b86 100644 --- a/src/Service/ElastiCache/CHANGELOG.md +++ b/src/Service/ElastiCache/CHANGELOG.md @@ -2,6 +2,10 @@ ## NOT RELEASED +### Fixed + +- Fix typos. + ## 1.5.0 ### Added diff --git a/src/Service/Iot/CHANGELOG.md b/src/Service/Iot/CHANGELOG.md index eeac340d7..21115b70b 100644 --- a/src/Service/Iot/CHANGELOG.md +++ b/src/Service/Iot/CHANGELOG.md @@ -2,6 +2,10 @@ ## NOT RELEASED +### Fixed + +- Fix typos. + ## 2.2.1 ### Changed diff --git a/src/Service/Lambda/CHANGELOG.md b/src/Service/Lambda/CHANGELOG.md index 0fb0cbf51..6e49f7a94 100644 --- a/src/Service/Lambda/CHANGELOG.md +++ b/src/Service/Lambda/CHANGELOG.md @@ -2,6 +2,10 @@ ## NOT RELEASED +### Fixed + +- Fix typos. + ### Added - AWS api-change: AWS Lambda Durable Functions now supports customer managed KMS keys. This allows customers to configure a KMS key in Durable Config to have all their durable execution data encrypted. diff --git a/src/Service/RdsDataService/CHANGELOG.md b/src/Service/RdsDataService/CHANGELOG.md index b2b765eb7..332a33962 100644 --- a/src/Service/RdsDataService/CHANGELOG.md +++ b/src/Service/RdsDataService/CHANGELOG.md @@ -2,6 +2,10 @@ ## NOT RELEASED +### Fixed + +- Fix typos. + ## 3.0.3 ### Changed diff --git a/src/Service/S3/CHANGELOG.md b/src/Service/S3/CHANGELOG.md index 710273588..bfa7fdc21 100644 --- a/src/Service/S3/CHANGELOG.md +++ b/src/Service/S3/CHANGELOG.md @@ -2,6 +2,10 @@ ## NOT RELEASED +### Fixed + +- Fix typos. + ### Changed - AWS enhancement: Documentation updates. From 39719f076c2680687d0448bc373f6762a07fbcb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 23 Jul 2026 11:57:46 +0200 Subject: [PATCH 4/4] Update src/Service/S3/CHANGELOG.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jérémy Derussé --- src/Service/S3/CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Service/S3/CHANGELOG.md b/src/Service/S3/CHANGELOG.md index bfa7fdc21..fcd5482a7 100644 --- a/src/Service/S3/CHANGELOG.md +++ b/src/Service/S3/CHANGELOG.md @@ -9,6 +9,13 @@ ### Changed - AWS enhancement: Documentation updates. +### Changed + +- AWS enhancement: Documentation updates. + +### Fixed + +- Fix typos. ## 3.4.0