Skip to content

Commit 7bd4f8f

Browse files
Add timestream clients (#1217)
* Add timestream client * Fixes * Fixes * Fixes * wip * Update AwsClientFactory.php * Fixes * Updated change logs
1 parent 9611cd0 commit 7bd4f8f

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
### Added
66

77
- Support for CodeBuild
8+
- Support for TimestreamQuery
9+
- Support for TimestreamWrite
810

911
## 1.7.0
1012

src/DependencyInjection/AwsPackagesProvider.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,14 @@ public static function getAllServices(): array
125125
'class' => \AsyncAws\StepFunctions\StepFunctionsClient::class,
126126
'package' => 'async-aws/step-functions',
127127
],
128+
'timestream_query' => [
129+
'class' => \AsyncAws\TimestreamQuery\TimestreamQueryClient::class,
130+
'package' => 'async-aws/timestream-query',
131+
],
132+
'timestream_write' => [
133+
'class' => \AsyncAws\TimestreamWrite\TimestreamWriteClient::class,
134+
'package' => 'async-aws/timestream-write',
135+
],
128136
'x_ray' => [
129137
'class' => \AsyncAws\XRay\XRayClient::class,
130138
'package' => 'async-aws/x-ray',

0 commit comments

Comments
 (0)