本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。
查询SDK客户端
您可以使用以下代码片段为查询创建 Timestream 客户端。SDK该查询SDK用于查询存储在 Timestream 中的现有时间序列数据。
- Java
-
private static AmazonTimestreamQuery buildQueryClient() { AmazonTimestreamQuery client = AmazonTimestreamQueryClient.builder().withRegion("us-east-1").build(); return client; }
- Java v2
-
private static TimestreamQueryClient buildQueryClient() { return TimestreamQueryClient.builder() .region(Region.US_EAST_1) .build(); }
- Go
-
sess, err := session.NewSession(&aws.Config{Region: aws.String("us-east-1")})
- Python
-
query_client = session.client('timestream-query')
- Node.js
-
以下代码段用 AWS SDK于 JavaScript v3。有关如何安装客户端和用法的更多信息,请参阅适用于 JavaScript v3 的 Timestream 查询客户端-。AWS SDK
此处显示了其他命令导入。创建客户端不需要
QueryCommand
导入。import { TimestreamQueryClient, QueryCommand } from "@aws-sdk/client-timestream-query"; const queryClient = new TimestreamQueryClient({ region: "us-east-1" });
以下代码段使用了 for AWS SDK JavaScript V2 样式。它基于 Node.js 示例 Amazon Timestream 中的示例 LiveAnalytics 应用程序,供其
上使用。 GitHub queryClient = new AWS.TimestreamQuery();
- .NET
-
var queryClientConfig = new AmazonTimestreamQueryConfig { RegionEndpoint = RegionEndpoint.USEast1 }; var queryClient = new AmazonTimestreamQueryClient(queryClientConfig);
写SDK客户端
创建数据库