![]() |
![]()
| ![]() |
![]()
NAMEPaws::TimestreamWrite - Perl Interface to AWS Amazon Timestream Write SYNOPSISuse Paws; my $obj = Paws->service('TimestreamWrite'); my $res = $obj->Method( Arg1 => $val1, Arg2 => [ 'V1', 'V2' ], # if Arg3 is an object, the HashRef will be used as arguments to the constructor # of the arguments type Arg3 => { Att1 => 'Val1' }, # if Arg4 is an array of objects, the HashRefs will be passed as arguments to # the constructor of the arguments type Arg4 => [ { Att1 => 'Val1' }, { Att1 => 'Val2' } ], ); DESCRIPTIONAmazon Timestream is a fast, scalable, fully managed time series database service that makes it easy to store and analyze trillions of time series data points per day. With Timestream, you can easily store and analyze IoT sensor data to derive insights from your IoT applications. You can analyze industrial telemetry to streamline equipment management and maintenance. You can also store and analyze log data and metrics to improve the performance and availability of your applications. Timestream is built from the ground up to effectively ingest, process, and store time series data. It organizes data to optimize query processing. It automatically scales based on the volume of data ingested and on the query volume to ensure you receive optimal performance while inserting and querying data. As your data grows over time, Timestream’s adaptive query processing engine spans across storage tiers to provide fast analysis while reducing costs. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/ingest.timestream-2018-11-01> METHODSCreateDatabase
Each argument is described in detail in: Paws::TimestreamWrite::CreateDatabase Returns: a Paws::TimestreamWrite::CreateDatabaseResponse instance Creates a new Timestream database. If the KMS key is not specified, the database will be encrypted with a Timestream managed KMS key located in your account. Refer to AWS managed KMS keys (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk) for more info. Service quotas apply. For more information, see Access Management (https://docs.aws.amazon.com/timestream/latest/developerguide/ts-limits.html) in the Timestream Developer Guide. CreateTable
Each argument is described in detail in: Paws::TimestreamWrite::CreateTable Returns: a Paws::TimestreamWrite::CreateTableResponse instance The CreateTable operation adds a new table to an existing database in your account. In an AWS account, table names must be at least unique within each Region if they are in the same database. You may have identical table names in the same Region if the tables are in seperate databases. While creating the table, you must specify the table name, database name, and the retention properties. Service quotas apply. For more information, see Access Management (https://docs.aws.amazon.com/timestream/latest/developerguide/ts-limits.html) in the Timestream Developer Guide. DeleteDatabaseEach argument is described in detail in: Paws::TimestreamWrite::DeleteDatabase Returns: nothing Deletes a given Timestream database. This is an irreversible operation. After a database is deleted, the time series data from its tables cannot be recovered. All tables in the database must be deleted first, or a ValidationException error will be thrown. Due to the nature of distributed retries, the operation can return either success or a ResourceNotFoundException. Clients should consider them equivalent. DeleteTableEach argument is described in detail in: Paws::TimestreamWrite::DeleteTable Returns: nothing Deletes a given Timestream table. This is an irreversible operation. After a Timestream database table is deleted, the time series data stored in the table cannot be recovered. Due to the nature of distributed retries, the operation can return either success or a ResourceNotFoundException. Clients should consider them equivalent. DescribeDatabaseEach argument is described in detail in: Paws::TimestreamWrite::DescribeDatabase Returns: a Paws::TimestreamWrite::DescribeDatabaseResponse instance Returns information about the database, including the database name, time that the database was created, and the total number of tables found within the database. Service quotas apply. For more information, see Access Management (https://docs.aws.amazon.com/timestream/latest/developerguide/ts-limits.html) in the Timestream Developer Guide. DescribeEndpointsEach argument is described in detail in: Paws::TimestreamWrite::DescribeEndpoints Returns: a Paws::TimestreamWrite::DescribeEndpointsResponse instance DescribeEndpoints returns a list of available endpoints to make Timestream API calls against. This API is available through both Write and Query. Because Timestream’s SDKs are designed to transparently work with the service’s architecture, including the management and mapping of the service endpoints, it is not recommended that you use this API unless:
For detailed information on how to use DescribeEndpoints, see The Endpoint Discovery Pattern and REST APIs (https://docs.aws.amazon.com/timestream/latest/developerguide/Using-API.endpoint-discovery.html). DescribeTableEach argument is described in detail in: Paws::TimestreamWrite::DescribeTable Returns: a Paws::TimestreamWrite::DescribeTableResponse instance Returns information about the table, including the table name, database name, retention duration of the memory store and the magnetic store. Service quotas apply. For more information, see Access Management (https://docs.aws.amazon.com/timestream/latest/developerguide/ts-limits.html) in the Timestream Developer Guide. ListDatabases
Each argument is described in detail in: Paws::TimestreamWrite::ListDatabases Returns: a Paws::TimestreamWrite::ListDatabasesResponse instance Returns a list of your Timestream databases. Service quotas apply. For more information, see Access Management (https://docs.aws.amazon.com/timestream/latest/developerguide/ts-limits.html) in the Timestream Developer Guide. ListTables
Each argument is described in detail in: Paws::TimestreamWrite::ListTables Returns: a Paws::TimestreamWrite::ListTablesResponse instance A list of tables, along with the name, status and retention properties of each table. ListTagsForResourceEach argument is described in detail in: Paws::TimestreamWrite::ListTagsForResource Returns: a Paws::TimestreamWrite::ListTagsForResourceResponse instance List all tags on a Timestream resource. TagResourceEach argument is described in detail in: Paws::TimestreamWrite::TagResource Returns: a Paws::TimestreamWrite::TagResourceResponse instance Associate a set of tags with a Timestream resource. You can then activate these user-defined tags so that they appear on the Billing and Cost Management console for cost allocation tracking. UntagResourceEach argument is described in detail in: Paws::TimestreamWrite::UntagResource Returns: a Paws::TimestreamWrite::UntagResourceResponse instance Removes the association of tags from a Timestream resource. UpdateDatabaseEach argument is described in detail in: Paws::TimestreamWrite::UpdateDatabase Returns: a Paws::TimestreamWrite::UpdateDatabaseResponse instance Modifies the KMS key for an existing database. While updating the database, you must specify the database name and the identifier of the new KMS key to be used ("KmsKeyId"). If there are any concurrent "UpdateDatabase" requests, first writer wins. UpdateTable
Each argument is described in detail in: Paws::TimestreamWrite::UpdateTable Returns: a Paws::TimestreamWrite::UpdateTableResponse instance Modifies the retention duration of the memory store and magnetic store for your Timestream table. Note that the change in retention duration takes effect immediately. For example, if the retention period of the memory store was initially set to 2 hours and then changed to 24 hours, the memory store will be capable of holding 24 hours of data, but will be populated with 24 hours of data 22 hours after this change was made. Timestream does not retrieve data from the magnetic store to populate the memory store. Service quotas apply. For more information, see Access Management (https://docs.aws.amazon.com/timestream/latest/developerguide/ts-limits.html) in the Timestream Developer Guide. WriteRecords
Each argument is described in detail in: Paws::TimestreamWrite::WriteRecords Returns: nothing The WriteRecords operation enables you to write your time series data into Timestream. You can specify a single data point or a batch of data points to be inserted into the system. Timestream offers you with a flexible schema that auto detects the column names and data types for your Timestream tables based on the dimension names and data types of the data points you specify when invoking writes into the database. Timestream support eventual consistency read semantics. This means that when you query data immediately after writing a batch of data into Timestream, the query results might not reflect the results of a recently completed write operation. The results may also include some stale data. If you repeat the query request after a short time, the results should return the latest data. Service quotas apply. For more information, see Access Management (https://docs.aws.amazon.com/timestream/latest/developerguide/ts-limits.html) in the Timestream Developer Guide. PAGINATORSPaginator methods are helpers that repetively call methods that return partial results SEE ALSOThis service class forms part of Paws BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|