Skip to content

Commit

Permalink
Add the MediaConvert client (#1417)
Browse files Browse the repository at this point in the history
* Add the initial structure for the MediaConvert service

* Add the MediaConvert service

* Add endpoint discovery for the MediaConvert client

* Add the async-aws/media-convert package in the overview

* Add the documentation for the media-convert package

* Add the ListJobs operation for MediaConvert

* Register the MediaConvert service in the Symfony bundle

* Update the ignored errors for phpstan

* Regenerate the psalm baseline
  • Loading branch information
stof authored Jun 12, 2023
1 parent 38ebd07 commit f2b8ba4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- Support for Athena
- Support for MediaConvert

## 1.10.0

Expand Down
4 changes: 4 additions & 0 deletions src/DependencyInjection/AwsPackagesProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ public static function getAllServices(): array
'class' => \AsyncAws\Lambda\LambdaClient::class,
'package' => 'async-aws/lambda',
],
'media_convert' => [
'class' => \AsyncAws\MediaConvert\MediaConvertClient::class,
'package' => 'async-aws/media-convert',
],
'rds_data_service' => [
'class' => \AsyncAws\RdsDataService\RdsDataServiceClient::class,
'package' => 'async-aws/rds-data-service',
Expand Down

0 comments on commit f2b8ba4

Please sign in to comment.