Skip to content

Commit f2b8ba4

Browse files
authored
Add the MediaConvert client (#1417)
* 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
1 parent 38ebd07 commit f2b8ba4

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

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

77
- Support for Athena
8+
- Support for MediaConvert
89

910
## 1.10.0
1011

src/DependencyInjection/AwsPackagesProvider.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@ public static function getAllServices(): array
9797
'class' => \AsyncAws\Lambda\LambdaClient::class,
9898
'package' => 'async-aws/lambda',
9999
],
100+
'media_convert' => [
101+
'class' => \AsyncAws\MediaConvert\MediaConvertClient::class,
102+
'package' => 'async-aws/media-convert',
103+
],
100104
'rds_data_service' => [
101105
'class' => \AsyncAws\RdsDataService\RdsDataServiceClient::class,
102106
'package' => 'async-aws/rds-data-service',

0 commit comments

Comments
 (0)