'2.0', 'service' => '
Amazon 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.
', 'operations' => [ 'CreateBatchLoadTask' => 'Creates a new Timestream batch load task. A batch load task processes data from a CSV source in an S3 location and writes to a Timestream table. A mapping from source to target is defined in a batch load task. Errors and events are written to a report at an S3 location. For the report, if the KMS key is not specified, the report will be encrypted with an S3 managed key when SSE_S3
is the option. Otherwise an error is thrown. For more information, see Amazon Web Services managed keys. Service quotas apply. For details, see code sample.
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. For more information, see Amazon Web Services managed keys. Service quotas apply. For details, see code sample.
', 'CreateTable' => 'Adds a new table to an existing database in your account. In an Amazon Web Services account, table names must be at least unique within each Region if they are in the same database. You might have identical table names in the same Region if the tables are in separate databases. While creating the table, you must specify the table name, database name, and the retention properties. Service quotas apply. See code sample for details.
', 'DeleteDatabase' => '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.
See code sample for details.
', 'DeleteTable' => '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.
See code sample for details.
', 'DescribeBatchLoadTask' => 'Returns information about the batch load task, including configurations, mappings, progress, and other details. Service quotas apply. See code sample for details.
', 'DescribeDatabase' => '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. See code sample for details.
', 'DescribeEndpoints' => 'Returns a list of available endpoints to make Timestream API calls against. This API operation is available through both the Write and Query APIs.
Because the Timestream SDKs are designed to transparently work with the service’s architecture, including the management and mapping of the service endpoints, we don\'t recommend that you use this API operation unless:
You are using VPC endpoints (Amazon Web Services PrivateLink) with Timestream
Your application uses a programming language that does not yet have SDK support
You require better control over the client-side implementation
For detailed information on how and when to use and implement DescribeEndpoints, see The Endpoint Discovery Pattern.
', 'DescribeTable' => 'Returns information about the table, including the table name, database name, retention duration of the memory store and the magnetic store. Service quotas apply. See code sample for details.
', 'ListBatchLoadTasks' => 'Provides a list of batch load tasks, along with the name, status, when the task is resumable until, and other details. See code sample for details.
', 'ListDatabases' => 'Returns a list of your Timestream databases. Service quotas apply. See code sample for details.
', 'ListTables' => 'Provides a list of tables, along with the name, status, and retention properties of each table. See code sample for details.
', 'ListTagsForResource' => 'Lists all tags on a Timestream resource.
', 'ResumeBatchLoadTask' => '', 'TagResource' => '
Associates 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.
', 'UntagResource' => 'Removes the association of tags from a Timestream resource.
', 'UpdateDatabase' => ' 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.
See code sample for details.
', 'UpdateTable' => '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.
See code sample for details.
', 'WriteRecords' => '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 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 supports 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.
See code sample for details.
Upserts
You can use the Version
parameter in a WriteRecords
request to update data points. Timestream tracks a version number with each record. Version
defaults to 1
when it\'s not specified for the record in the request. Timestream updates an existing record’s measure value along with its Version
when it receives a write request with a higher Version
number for that record. When it receives an update request where the measure value is the same as that of the existing record, Timestream still updates Version
, if it is greater than the existing value of Version
. You can update a data point as many times as desired, as long as the value of Version
continuously increases.
For example, suppose you write a new record without indicating Version
in the request. Timestream stores this record, and set Version
to 1
. Now, suppose you try to update this record with a WriteRecords
request of the same record with a different measure value but, like before, do not provide Version
. In this case, Timestream will reject this update with a RejectedRecordsException
since the updated record’s version is not greater than the existing value of Version.
However, if you were to resend the update request with Version
set to 2
, Timestream would then succeed in updating the record’s value, and the Version
would be set to 2
. Next, suppose you sent a WriteRecords
request with this same record and an identical measure value, but with Version
set to 3
. In this case, Timestream would only update Version
to 3
. Any further updates would need to send a version number greater than 3
, or the update requests would receive a RejectedRecordsException
.
You are not authorized to perform this action.
', 'refs' => [], ], 'AmazonResourceName' => [ 'base' => NULL, 'refs' => [ 'ListTagsForResourceRequest$ResourceARN' => 'The Timestream resource with tags to be listed. This value is an Amazon Resource Name (ARN).
', 'TagResourceRequest$ResourceARN' => 'Identifies the Timestream resource to which tags should be added. This value is an Amazon Resource Name (ARN).
', 'UntagResourceRequest$ResourceARN' => 'The Timestream resource that the tags will be removed from. This value is an Amazon Resource Name (ARN).
', ], ], 'BatchLoadDataFormat' => [ 'base' => NULL, 'refs' => [ 'DataSourceConfiguration$DataFormat' => 'This is currently CSV.
', ], ], 'BatchLoadProgressReport' => [ 'base' => 'Details about the progress of a batch load task.
', 'refs' => [ 'BatchLoadTaskDescription$ProgressReport' => '', ], ], 'BatchLoadStatus' => [ 'base' => NULL, 'refs' => [ 'BatchLoadTask$TaskStatus' => 'Status of the batch load task.
', 'BatchLoadTaskDescription$TaskStatus' => 'Status of the batch load task.
', 'ListBatchLoadTasksRequest$TaskStatus' => 'Status of the batch load task.
', ], ], 'BatchLoadTask' => [ 'base' => 'Details about a batch load task.
', 'refs' => [ 'BatchLoadTaskList$member' => NULL, ], ], 'BatchLoadTaskDescription' => [ 'base' => 'Details about a batch load task.
', 'refs' => [ 'DescribeBatchLoadTaskResponse$BatchLoadTaskDescription' => 'Description of the batch load task.
', ], ], 'BatchLoadTaskId' => [ 'base' => NULL, 'refs' => [ 'BatchLoadTask$TaskId' => 'The ID of the batch load task.
', 'BatchLoadTaskDescription$TaskId' => 'The ID of the batch load task.
', 'CreateBatchLoadTaskResponse$TaskId' => 'The ID of the batch load task.
', 'DescribeBatchLoadTaskRequest$TaskId' => 'The ID of the batch load task.
', 'ResumeBatchLoadTaskRequest$TaskId' => 'The ID of the batch load task to resume.
', ], ], 'BatchLoadTaskList' => [ 'base' => NULL, 'refs' => [ 'ListBatchLoadTasksResponse$BatchLoadTasks' => 'A list of batch load task details.
', ], ], 'Boolean' => [ 'base' => NULL, 'refs' => [ 'CsvConfiguration$TrimWhiteSpace' => 'Specifies to trim leading and trailing white space.
', 'MagneticStoreWriteProperties$EnableMagneticStoreWrites' => 'A flag to enable magnetic store writes.
', ], ], 'ClientRequestToken' => [ 'base' => NULL, 'refs' => [ 'CreateBatchLoadTaskRequest$ClientToken' => '', ], ], 'ConflictException' => [ 'base' => 'Timestream was unable to process this request because it contains resource that already exists.
', 'refs' => [], ], 'CreateBatchLoadTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateBatchLoadTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateDatabaseRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateDatabaseResponse' => [ 'base' => NULL, 'refs' => [], ], 'CreateTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'CreateTableResponse' => [ 'base' => NULL, 'refs' => [], ], 'CsvConfiguration' => [ 'base' => 'A delimited data format where the column separator can be a comma and the record separator is a newline character.
', 'refs' => [ 'DataSourceConfiguration$CsvConfiguration' => NULL, ], ], 'DataModel' => [ 'base' => 'Data model for a batch load task.
', 'refs' => [ 'DataModelConfiguration$DataModel' => '', ], ], 'DataModelConfiguration' => [ 'base' => '', 'refs' => [ 'BatchLoadTaskDescription$DataModelConfiguration' => 'Data model configuration for a batch load task. This contains details about where a data model for a batch load task is stored.
', 'CreateBatchLoadTaskRequest$DataModelConfiguration' => NULL, ], ], 'DataModelS3Configuration' => [ 'base' => '', 'refs' => [ 'DataModelConfiguration$DataModelS3Configuration' => '', ], ], 'DataSourceConfiguration' => [ 'base' => 'Defines configuration details about the data source.
', 'refs' => [ 'BatchLoadTaskDescription$DataSourceConfiguration' => 'Configuration details about the data source for a batch load task.
', 'CreateBatchLoadTaskRequest$DataSourceConfiguration' => 'Defines configuration details about the data source for a batch load task.
', ], ], 'DataSourceS3Configuration' => [ 'base' => '', 'refs' => [ 'DataSourceConfiguration$DataSourceS3Configuration' => '
Configuration of an S3 location for a file which contains data to load.
', ], ], 'Database' => [ 'base' => 'A top-level container for a table. Databases and tables are the fundamental management concepts in Amazon Timestream. All tables in a database are encrypted with the same KMS key.
', 'refs' => [ 'CreateDatabaseResponse$Database' => 'The newly created Timestream database.
', 'DatabaseList$member' => NULL, 'DescribeDatabaseResponse$Database' => 'The name of the Timestream table.
', 'UpdateDatabaseResponse$Database' => NULL, ], ], 'DatabaseList' => [ 'base' => NULL, 'refs' => [ 'ListDatabasesResponse$Databases' => 'A list of database names.
', ], ], 'Date' => [ 'base' => NULL, 'refs' => [ 'BatchLoadTask$CreationTime' => 'The time when the Timestream batch load task was created.
', 'BatchLoadTask$LastUpdatedTime' => 'The time when the Timestream batch load task was last updated.
', 'BatchLoadTask$ResumableUntil' => '', 'BatchLoadTaskDescription$CreationTime' => '
The time when the Timestream batch load task was created.
', 'BatchLoadTaskDescription$LastUpdatedTime' => 'The time when the Timestream batch load task was last updated.
', 'BatchLoadTaskDescription$ResumableUntil' => '', 'Database$CreationTime' => '
The time when the database was created, calculated from the Unix epoch time.
', 'Database$LastUpdatedTime' => 'The last time that this database was updated.
', 'Table$CreationTime' => 'The time when the Timestream table was created.
', 'Table$LastUpdatedTime' => 'The time when the Timestream table was last updated.
', ], ], 'DeleteDatabaseRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeBatchLoadTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeBatchLoadTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDatabaseRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeDatabaseResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEndpointsRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeEndpointsResponse' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTableRequest' => [ 'base' => NULL, 'refs' => [], ], 'DescribeTableResponse' => [ 'base' => NULL, 'refs' => [], ], 'Dimension' => [ 'base' => 'Represents the metadata attributes of the time series. For example, the name and Availability Zone of an EC2 instance or the name of the manufacturer of a wind turbine are dimensions.
', 'refs' => [ 'Dimensions$member' => NULL, ], ], 'DimensionMapping' => [ 'base' => '', 'refs' => [ 'DimensionMappings$member' => NULL, ], ], 'DimensionMappings' => [ 'base' => NULL, 'refs' => [ 'DataModel$DimensionMappings' => 'Source to target mappings for dimensions.
', ], ], 'DimensionValueType' => [ 'base' => NULL, 'refs' => [ 'Dimension$DimensionValueType' => 'The data type of the dimension for the time-series data point.
', ], ], 'Dimensions' => [ 'base' => NULL, 'refs' => [ 'Record$Dimensions' => 'Contains the list of dimensions for time-series data points.
', ], ], 'Endpoint' => [ 'base' => 'Represents an available endpoint against which to make API calls against, as well as the TTL for that endpoint.
', 'refs' => [ 'Endpoints$member' => NULL, ], ], 'Endpoints' => [ 'base' => NULL, 'refs' => [ 'DescribeEndpointsResponse$Endpoints' => 'An Endpoints
object is returned when a DescribeEndpoints
request is made.
The reason why a record was not successfully inserted into Timestream. Possible causes of failure include:
Records with duplicate data where there are multiple records with the same dimensions, timestamps, and measure names but:
Measure values are different
Version is not present in the request, or the value of version in the new record is equal to or lower than the existing value
If Timestream rejects data for this case, the ExistingVersion
field in the RejectedRecords
response will indicate the current record’s version. To force an update, you can resend the request with a version for the record set to a value greater than the ExistingVersion
.
Records with timestamps that lie outside the retention duration of the memory store.
When the retention window is updated, you will receive a RejectedRecords
exception if you immediately try to ingest data within the new window. To avoid a RejectedRecords
exception, wait until the duration of the new window to ingest new data. For further information, see Best Practices for Configuring Timestream and the explanation of how storage works in Timestream.
Records with dimensions or measures that exceed the Timestream defined limits.
For more information, see Access Management in the Timestream Developer Guide.
', 'RejectedRecordsException$Message' => NULL, 'ResourceNotFoundException$Message' => NULL, 'ServiceQuotaExceededException$Message' => NULL, 'ThrottlingException$Message' => NULL, 'ValidationException$Message' => NULL, ], ], 'Integer' => [ 'base' => NULL, 'refs' => [ 'RecordsIngested$Total' => 'Total count of successfully ingested records.
', 'RecordsIngested$MemoryStore' => 'Count of records ingested into the memory store.
', 'RecordsIngested$MagneticStore' => 'Count of records ingested into the magnetic store.
', ], ], 'InternalServerException' => [ 'base' => 'Timestream was unable to fully process this request because of an internal server error.
', 'refs' => [], ], 'InvalidEndpointException' => [ 'base' => 'The requested endpoint was not valid.
', 'refs' => [], ], 'ListBatchLoadTasksRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListBatchLoadTasksResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListDatabasesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListDatabasesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTablesRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTablesResponse' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'ListTagsForResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'Long' => [ 'base' => NULL, 'refs' => [ 'BatchLoadProgressReport$RecordsProcessed' => '', 'BatchLoadProgressReport$RecordsIngested' => '', 'BatchLoadProgressReport$ParseFailures' => '', 'BatchLoadProgressReport$RecordIngestionFailures' => '', 'BatchLoadProgressReport$FileFailures' => '', 'BatchLoadProgressReport$BytesMetered' => '', 'Database$TableCount' => 'The total number of tables found within a Timestream database.
', 'Endpoint$CachePeriodInMinutes' => 'The TTL for the endpoint, in minutes.
', ], ], 'MagneticStoreRejectedDataLocation' => [ 'base' => 'The location to write error reports for records rejected, asynchronously, during magnetic store writes.
', 'refs' => [ 'MagneticStoreWriteProperties$MagneticStoreRejectedDataLocation' => 'The location to write error reports for records rejected asynchronously during magnetic store writes.
', ], ], 'MagneticStoreRetentionPeriodInDays' => [ 'base' => NULL, 'refs' => [ 'RetentionProperties$MagneticStoreRetentionPeriodInDays' => 'The duration for which data must be stored in the magnetic store.
', ], ], 'MagneticStoreWriteProperties' => [ 'base' => 'The set of properties on a table for configuring magnetic store writes.
', 'refs' => [ 'CreateTableRequest$MagneticStoreWriteProperties' => 'Contains properties to set on the table when enabling magnetic store writes.
', 'Table$MagneticStoreWriteProperties' => 'Contains properties to set on the table when enabling magnetic store writes.
', 'UpdateTableRequest$MagneticStoreWriteProperties' => 'Contains properties to set on the table when enabling magnetic store writes.
', ], ], 'MeasureValue' => [ 'base' => 'Represents the data attribute of the time series. For example, the CPU utilization of an EC2 instance or the RPM of a wind turbine are measures. MeasureValue has both name and value.
MeasureValue is only allowed for type MULTI
. Using MULTI
type, you can pass multiple data attributes associated with the same time series in a single record
Contains the data type of the MeasureValue for the time-series data point.
', 'MixedMeasureMapping$MeasureValueType' => '', 'Record$MeasureValueType' => ' Contains the data type of the measure value for the time-series data point. Default type is DOUBLE
. For more information, see Data types.
Contains the list of MeasureValue for time-series data points.
This is only allowed for type MULTI
. For scalar values, use MeasureValue
attribute of the record directly.
The duration for which data must be stored in the memory store.
', ], ], 'MixedMeasureMapping' => [ 'base' => '', 'refs' => [ 'MixedMeasureMappingList$member' => NULL, ], ], 'MixedMeasureMappingList' => [ 'base' => NULL, 'refs' => [ 'DataModel$MixedMeasureMappings' => 'Source to target mappings for measures.
', ], ], 'MultiMeasureAttributeMapping' => [ 'base' => '', 'refs' => [ 'MultiMeasureAttributeMappingList$member' => NULL, ], ], 'MultiMeasureAttributeMappingList' => [ 'base' => NULL, 'refs' => [ 'MixedMeasureMapping$MultiMeasureAttributeMappings' => '', 'MultiMeasureMappings$MultiMeasureAttributeMappings' => '', ], ], 'MultiMeasureMappings' => [ 'base' => '', 'refs' => [ 'DataModel$MultiMeasureMappings' => 'Source to target mappings for multi-measure records.
', ], ], 'PageLimit' => [ 'base' => NULL, 'refs' => [ 'ListBatchLoadTasksRequest$MaxResults' => 'The total number of items to return in the output. If the total number of items available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.
', ], ], 'PaginationLimit' => [ 'base' => NULL, 'refs' => [ 'ListDatabasesRequest$MaxResults' => 'The total number of items to return in the output. If the total number of items available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.
', 'ListTablesRequest$MaxResults' => 'The total number of items to return in the output. If the total number of items available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.
', ], ], 'PartitionKey' => [ 'base' => 'An attribute used in partitioning data in a table. A dimension key partitions data using the values of the dimension specified by the dimension-name as partition key, while a measure key partitions data using measure names (values of the \'measure_name\' column).
', 'refs' => [ 'PartitionKeyList$member' => NULL, ], ], 'PartitionKeyEnforcementLevel' => [ 'base' => NULL, 'refs' => [ 'PartitionKey$EnforcementInRecord' => 'The level of enforcement for the specification of a dimension key in ingested records. Options are REQUIRED (dimension key must be specified) and OPTIONAL (dimension key does not have to be specified).
', ], ], 'PartitionKeyList' => [ 'base' => NULL, 'refs' => [ 'Schema$CompositePartitionKey' => 'A non-empty list of partition keys defining the attributes used to partition the table data. The order of the list determines the partition hierarchy. The name and type of each partition key as well as the partition key order cannot be changed after the table is created. However, the enforcement level of each partition key can be changed.
', ], ], 'PartitionKeyType' => [ 'base' => NULL, 'refs' => [ 'PartitionKey$Type' => 'The type of the partition key. Options are DIMENSION (dimension key) and MEASURE (measure key).
', ], ], 'Record' => [ 'base' => 'Represents a time-series data point being written into Timestream. Each record contains an array of dimensions. Dimensions represent the metadata attributes of a time-series data point, such as the instance name or Availability Zone of an EC2 instance. A record also contains the measure name, which is the name of the measure being collected (for example, the CPU utilization of an EC2 instance). Additionally, a record contains the measure value and the value type, which is the data type of the measure value. Also, the record contains the timestamp of when the measure was collected and the timestamp unit, which represents the granularity of the timestamp.
Records have a Version
field, which is a 64-bit long
that you can use for updating data points. Writes of a duplicate record with the same dimension, timestamp, and measure name but different measure value will only succeed if the Version
attribute of the record in the write request is higher than that of the existing record. Timestream defaults to a Version
of 1
for records without the Version
field.
A record that contains the common measure, dimension, time, and version attributes shared across all the records in the request. The measure and dimension attributes specified will be merged with the measure and dimension attributes in the records object when the data is written into Timestream. Dimensions may not overlap, or a ValidationException
will be thrown. In other words, a record must contain dimensions with unique names.
The index of the record in the input request for WriteRecords. Indexes begin with 0.
', ], ], 'RecordVersion' => [ 'base' => NULL, 'refs' => [ 'BatchLoadTaskDescription$RecordVersion' => '', 'CreateBatchLoadTaskRequest$RecordVersion' => '', 'Record$Version' => '64-bit attribute used for record updates. Write requests for duplicate data with a higher version number will update the existing measure value and version. In cases where the measure value is the same, Version
will still be updated. Default value is 1
.
Version
must be 1
or greater, or you will receive a ValidationException
error.
The existing version of the record. This value is populated in scenarios where an identical record exists with a higher version than the version in the write request.
', ], ], 'Records' => [ 'base' => NULL, 'refs' => [ 'WriteRecordsRequest$Records' => 'An array of records that contain the unique measure, dimension, time, and version attributes for each time-series data point.
', ], ], 'RecordsIngested' => [ 'base' => 'Information on the records ingested by this request.
', 'refs' => [ 'WriteRecordsResponse$RecordsIngested' => 'Information on the records ingested by this request.
', ], ], 'RejectedRecord' => [ 'base' => 'Represents records that were not successfully inserted into Timestream due to data validation issues that must be resolved before reinserting time-series data into the system.
', 'refs' => [ 'RejectedRecords$member' => NULL, ], ], 'RejectedRecords' => [ 'base' => NULL, 'refs' => [ 'RejectedRecordsException$RejectedRecords' => '', ], ], 'RejectedRecordsException' => [ 'base' => '
WriteRecords would throw this exception in the following cases:
Records with duplicate data where there are multiple records with the same dimensions, timestamps, and measure names but:
Measure values are different
Version is not present in the request or the value of version in the new record is equal to or lower than the existing value
In this case, if Timestream rejects data, the ExistingVersion
field in the RejectedRecords
response will indicate the current record’s version. To force an update, you can resend the request with a version for the record set to a value greater than the ExistingVersion
.
Records with timestamps that lie outside the retention duration of the memory store.
Records with dimensions or measures that exceed the Timestream defined limits.
For more information, see Quotas in the Amazon Timestream Developer Guide.
', 'refs' => [], ], 'ReportConfiguration' => [ 'base' => 'Report configuration for a batch load task. This contains details about where error reports are stored.
', 'refs' => [ 'BatchLoadTaskDescription$ReportConfiguration' => 'Report configuration for a batch load task. This contains details about where error reports are stored.
', 'CreateBatchLoadTaskRequest$ReportConfiguration' => NULL, ], ], 'ReportS3Configuration' => [ 'base' => '', 'refs' => [ 'ReportConfiguration$ReportS3Configuration' => 'Configuration of an S3 location to write error reports and events for a batch load.
', ], ], 'ResourceCreateAPIName' => [ 'base' => NULL, 'refs' => [ 'CreateBatchLoadTaskRequest$TargetDatabaseName' => 'Target Timestream database for a batch load task.
', 'CreateBatchLoadTaskRequest$TargetTableName' => 'Target Timestream table for a batch load task.
', 'CreateDatabaseRequest$DatabaseName' => 'The name of the Timestream database.
', 'CreateTableRequest$DatabaseName' => 'The name of the Timestream database.
', 'CreateTableRequest$TableName' => 'The name of the Timestream table.
', ], ], 'ResourceName' => [ 'base' => NULL, 'refs' => [ 'BatchLoadTask$DatabaseName' => 'Database name for the database into which a batch load task loads data.
', 'BatchLoadTask$TableName' => 'Table name for the table into which a batch load task loads data.
', 'BatchLoadTaskDescription$TargetDatabaseName' => '', 'BatchLoadTaskDescription$TargetTableName' => '', 'Database$DatabaseName' => 'The name of the Timestream database.
', 'DeleteDatabaseRequest$DatabaseName' => 'The name of the Timestream database to be deleted.
', 'DeleteTableRequest$DatabaseName' => 'The name of the database where the Timestream database is to be deleted.
', 'DeleteTableRequest$TableName' => 'The name of the Timestream table to be deleted.
', 'DescribeDatabaseRequest$DatabaseName' => 'The name of the Timestream database.
', 'DescribeTableRequest$DatabaseName' => 'The name of the Timestream database.
', 'DescribeTableRequest$TableName' => 'The name of the Timestream table.
', 'ListTablesRequest$DatabaseName' => 'The name of the Timestream database.
', 'Table$TableName' => 'The name of the Timestream table.
', 'Table$DatabaseName' => 'The name of the Timestream database that contains this table.
', 'UpdateDatabaseRequest$DatabaseName' => 'The name of the database.
', 'UpdateTableRequest$DatabaseName' => 'The name of the Timestream database.
', 'UpdateTableRequest$TableName' => 'The name of the Timestream table.
', 'WriteRecordsRequest$DatabaseName' => 'The name of the Timestream database.
', 'WriteRecordsRequest$TableName' => 'The name of the Timestream table.
', ], ], 'ResourceNotFoundException' => [ 'base' => 'The operation tried to access a nonexistent resource. The resource might not be specified correctly, or its status might not be ACTIVE.
', 'refs' => [], ], 'ResumeBatchLoadTaskRequest' => [ 'base' => NULL, 'refs' => [], ], 'ResumeBatchLoadTaskResponse' => [ 'base' => NULL, 'refs' => [], ], 'RetentionProperties' => [ 'base' => 'Retention properties contain the duration for which your time-series data must be stored in the magnetic store and the memory store.
', 'refs' => [ 'CreateTableRequest$RetentionProperties' => 'The duration for which your time-series data must be stored in the memory store and the magnetic store.
', 'Table$RetentionProperties' => 'The retention duration for the memory store and magnetic store.
', 'UpdateTableRequest$RetentionProperties' => 'The retention duration of the memory store and the magnetic store.
', ], ], 'S3BucketName' => [ 'base' => NULL, 'refs' => [ 'DataModelS3Configuration$BucketName' => '', 'DataSourceS3Configuration$BucketName' => 'The bucket name of the customer S3 bucket.
', 'ReportS3Configuration$BucketName' => '', 'S3Configuration$BucketName' => 'The bucket name of the customer S3 bucket.
', ], ], 'S3Configuration' => [ 'base' => 'The configuration that specifies an S3 location.
', 'refs' => [ 'MagneticStoreRejectedDataLocation$S3Configuration' => 'Configuration of an S3 location to write error reports for records rejected, asynchronously, during magnetic store writes.
', ], ], 'S3EncryptionOption' => [ 'base' => NULL, 'refs' => [ 'ReportS3Configuration$EncryptionOption' => '', 'S3Configuration$EncryptionOption' => 'The encryption option for the customer S3 location. Options are S3 server-side encryption with an S3 managed key or Amazon Web Services managed key.
', ], ], 'S3ObjectKey' => [ 'base' => NULL, 'refs' => [ 'DataModelS3Configuration$ObjectKey' => '', 'DataSourceS3Configuration$ObjectKeyPrefix' => '', ], ], 'S3ObjectKeyPrefix' => [ 'base' => NULL, 'refs' => [ 'ReportS3Configuration$ObjectKeyPrefix' => '', 'S3Configuration$ObjectKeyPrefix' => '
The object key preview for the customer S3 location.
', ], ], 'ScalarMeasureValueType' => [ 'base' => NULL, 'refs' => [ 'MultiMeasureAttributeMapping$MeasureValueType' => '', ], ], 'Schema' => [ 'base' => 'A Schema specifies the expected data model of the table.
', 'refs' => [ 'CreateTableRequest$Schema' => 'The schema of the table.
', 'Table$Schema' => 'The schema of the table.
', 'UpdateTableRequest$Schema' => 'The schema of the table.
', ], ], 'SchemaName' => [ 'base' => NULL, 'refs' => [ 'Dimension$Name' => 'Dimension represents the metadata attributes of the time series. For example, the name and Availability Zone of an EC2 instance or the name of the manufacturer of a wind turbine are dimensions.
For constraints on dimension names, see Naming Constraints.
', 'DimensionMapping$SourceColumn' => '', 'DimensionMapping$DestinationColumn' => '', 'MeasureValue$Name' => '
The name of the MeasureValue.
For constraints on MeasureValue names, see Naming Constraints in the Amazon Timestream Developer Guide.
', 'MixedMeasureMapping$MeasureName' => '', 'MixedMeasureMapping$SourceColumn' => '', 'MixedMeasureMapping$TargetMeasureName' => '', 'MultiMeasureAttributeMapping$SourceColumn' => '', 'MultiMeasureAttributeMapping$TargetMultiMeasureAttributeName' => '', 'MultiMeasureMappings$TargetMultiMeasureName' => '', 'PartitionKey$Name' => 'The name of the attribute used for a dimension key.
', 'Record$MeasureName' => 'Measure represents the data attribute of the time series. For example, the CPU utilization of an EC2 instance or the RPM of a wind turbine are measures.
', ], ], 'SchemaValue' => [ 'base' => NULL, 'refs' => [ 'Dimension$Value' => 'The value of the dimension.
', ], ], 'ServiceQuotaExceededException' => [ 'base' => 'The instance quota of resource exceeded for this account.
', 'refs' => [], ], 'String' => [ 'base' => NULL, 'refs' => [ 'Database$Arn' => 'The Amazon Resource Name that uniquely identifies this database.
', 'Endpoint$Address' => 'An endpoint address.
', 'ListBatchLoadTasksRequest$NextToken' => 'A token to specify where to start paginating. This is the NextToken from a previously truncated response.
', 'ListBatchLoadTasksResponse$NextToken' => 'A token to specify where to start paginating. Provide the next ListBatchLoadTasksRequest.
', 'ListDatabasesRequest$NextToken' => 'The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.
', 'ListDatabasesResponse$NextToken' => 'The pagination token. This parameter is returned when the response is truncated.
', 'ListTablesRequest$NextToken' => 'The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.
', 'ListTablesResponse$NextToken' => 'A token to specify where to start paginating. This is the NextToken from a previously truncated response.
', 'Table$Arn' => 'The Amazon Resource Name that uniquely identifies this table.
', ], ], 'StringValue1' => [ 'base' => NULL, 'refs' => [ 'CsvConfiguration$ColumnSeparator' => 'Column separator can be one of comma (\',\'), pipe (\'|), semicolon (\';\'), tab(\'/t\'), or blank space (\' \').
', 'CsvConfiguration$EscapeChar' => 'Escape character can be one of
', 'CsvConfiguration$QuoteChar' => 'Can be single quote (\') or double quote (").
', ], ], 'StringValue2048' => [ 'base' => NULL, 'refs' => [ 'BatchLoadTaskDescription$ErrorMessage' => '', 'CreateDatabaseRequest$KmsKeyId' => 'The KMS key for the database. If the KMS key is not specified, the database will be encrypted with a Timestream managed KMS key located in your account. For more information, see Amazon Web Services managed keys.
', 'Database$KmsKeyId' => 'The identifier of the KMS key used to encrypt the data stored in the database.
', 'MeasureValue$Value' => 'The value for the MeasureValue. For information, see Data types.
', 'Record$MeasureValue' => 'Contains the measure value for the time-series data point.
', 'ReportS3Configuration$KmsKeyId' => '', 'S3Configuration$KmsKeyId' => 'The KMS key ID for the customer S3 location when encrypting with an Amazon Web Services managed key.
', 'UpdateDatabaseRequest$KmsKeyId' => ' The identifier of the new KMS key (KmsKeyId
) to be used to encrypt the data stored in the database. If the KmsKeyId
currently registered with the database is the same as the KmsKeyId
in the request, there will not be any update.
You can specify the KmsKeyId
using any of the following:
Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
Key ARN: arn:aws:kms:us-east-1:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
Alias name: alias/ExampleAlias
Alias ARN: arn:aws:kms:us-east-1:111122223333:alias/ExampleAlias
Can be blank space (\' \').
', 'DataModel$TimeColumn' => 'Source column to be mapped to time.
', 'DataModel$MeasureNameColumn' => '', 'Record$Time' => ' Contains the time at which the measure value for the data point was collected. The time value plus the unit provides the time elapsed since the epoch. For example, if the time value is 12345
and the unit is ms
, then 12345 ms
have elapsed since the epoch.
Represents a database table in Timestream. Tables contain one or more related time series. You can modify the retention duration of the memory store and the magnetic store for a table.
', 'refs' => [ 'CreateTableResponse$Table' => 'The newly created Timestream table.
', 'DescribeTableResponse$Table' => 'The Timestream table.
', 'TableList$member' => NULL, 'UpdateTableResponse$Table' => 'The updated Timestream table.
', ], ], 'TableList' => [ 'base' => NULL, 'refs' => [ 'ListTablesResponse$Tables' => 'A list of tables.
', ], ], 'TableStatus' => [ 'base' => NULL, 'refs' => [ 'Table$TableStatus' => 'The current state of the table:
DELETING
- The table is being deleted.
ACTIVE
- The table is ready for use.
A tag is a label that you assign to a Timestream database and/or table. Each tag consists of a key and an optional value, both of which you define. With tags, you can categorize databases and/or tables, for example, by purpose, owner, or environment.
', 'refs' => [ 'TagList$member' => NULL, ], ], 'TagKey' => [ 'base' => NULL, 'refs' => [ 'Tag$Key' => 'The key of the tag. Tag keys are case sensitive.
', 'TagKeyList$member' => NULL, ], ], 'TagKeyList' => [ 'base' => NULL, 'refs' => [ 'UntagResourceRequest$TagKeys' => 'A list of tags keys. Existing tags of the resource whose keys are members of this list will be removed from the Timestream resource.
', ], ], 'TagList' => [ 'base' => NULL, 'refs' => [ 'CreateDatabaseRequest$Tags' => 'A list of key-value pairs to label the table.
', 'CreateTableRequest$Tags' => 'A list of key-value pairs to label the table.
', 'ListTagsForResourceResponse$Tags' => 'The tags currently associated with the Timestream resource.
', 'TagResourceRequest$Tags' => 'The tags to be assigned to the Timestream resource.
', ], ], 'TagResourceRequest' => [ 'base' => NULL, 'refs' => [], ], 'TagResourceResponse' => [ 'base' => NULL, 'refs' => [], ], 'TagValue' => [ 'base' => NULL, 'refs' => [ 'Tag$Value' => 'The value of the tag. Tag values are case-sensitive and can be null.
', ], ], 'ThrottlingException' => [ 'base' => 'Too many requests were made by a user and they exceeded the service quotas. The request was throttled.
', 'refs' => [], ], 'TimeUnit' => [ 'base' => NULL, 'refs' => [ 'DataModel$TimeUnit' => ' The granularity of the timestamp unit. It indicates if the time value is in seconds, milliseconds, nanoseconds, or other supported values. Default is MILLISECONDS
.
The granularity of the timestamp unit. It indicates if the time value is in seconds, milliseconds, nanoseconds, or other supported values. Default is MILLISECONDS
.
An invalid or malformed request.
', 'refs' => [], ], 'WriteRecordsRequest' => [ 'base' => NULL, 'refs' => [], ], 'WriteRecordsResponse' => [ 'base' => NULL, 'refs' => [], ], ],];