Skip to content

Commit

Permalink
Amazon Timestream Write Update: (New Service) Amazon Timestream is a …
Browse files Browse the repository at this point in the history
…fast, scalable, fully managed, purpose-built time series database that makes it easy to store and analyze trillions of time series data points per day.
  • Loading branch information
AWS committed Sep 29, 2020
1 parent d4f9c43 commit 1e7d327
Show file tree
Hide file tree
Showing 7 changed files with 1,117 additions and 0 deletions.
@@ -0,0 +1,5 @@
{
"type": "feature",
"category": "Amazon Timestream Write",
"description": "(New Service) Amazon Timestream is a fast, scalable, fully managed, purpose-built time series database that makes it easy to store and analyze trillions of time series data points per day."
}
5 changes: 5 additions & 0 deletions aws-sdk-java/pom.xml
Expand Up @@ -1163,6 +1163,11 @@ Amazon AutoScaling, etc).</description>
<artifactId>ssoadmin</artifactId>
<version>${awsjavasdk.version}</version>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>timestreamwrite</artifactId>
<version>${awsjavasdk.version}</version>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
Expand Down
5 changes: 5 additions & 0 deletions bom/pom.xml
Expand Up @@ -1283,6 +1283,11 @@
<artifactId>ssoadmin</artifactId>
<version>${awsjavasdk.version}</version>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>timestreamwrite</artifactId>
<version>${awsjavasdk.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
1 change: 1 addition & 0 deletions services/pom.xml
Expand Up @@ -250,6 +250,7 @@
<module>appflow</module>
<module>redshiftdata</module>
<module>ssoadmin</module>
<module>timestreamwrite</module>
</modules>
<description>The AWS Java SDK services</description>
<url>https://aws.amazon.com/sdkforjava</url>
Expand Down
60 changes: 60 additions & 0 deletions services/timestreamwrite/pom.xml
@@ -0,0 +1,60 @@
<?xml version="1.0"?>
<!--
~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
~
~ Licensed under the Apache License, Version 2.0 (the "License").
~ You may not use this file except in compliance with the License.
~ A copy of the License is located at
~
~ http://aws.amazon.com/apache2.0
~
~ or in the "license" file accompanying this file. This file is distributed
~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
~ express or implied. See the License for the specific language governing
~ permissions and limitations under the License.
-->

<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>services</artifactId>
<version>2.14.28-SNAPSHOT</version>
</parent>
<artifactId>timestreamwrite</artifactId>
<name>AWS Java SDK :: Services :: Timestream Write</name>
<description>The AWS Java SDK for Timestream Write module holds the client classes that are used for
communicating with Timestream Write.
</description>
<url>https://aws.amazon.com/sdkforjava</url>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>software.amazon.awssdk.services.timestreamwrite</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>protocol-core</artifactId>
<version>${awsjavasdk.version}</version>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-json-protocol</artifactId>
<version>${awsjavasdk.version}</version>
</dependency>
</dependencies>
</project>
@@ -0,0 +1,14 @@
{
"pagination": {
"ListDatabases": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults"
},
"ListTables": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults"
}
}
}

0 comments on commit 1e7d327

Please sign in to comment.