Timestream Write

This page documents function available when using the Timestream_Write module, created with @service Timestream_Write.

Index

Documentation

Main.Timestream_Write.create_databaseMethod
create_database(database_name)
create_database(database_name, params::Dict{String,<:Any})

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 for more info. Service quotas apply. For more information, see Access Management in the Timestream Developer Guide.

Arguments

  • database_name: The name of the Timestream database.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "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. Refer to AWS managed KMS keys for more info.
  • "Tags": A list of key-value pairs to label the table.
source
Main.Timestream_Write.create_tableMethod
create_table(database_name, table_name)
create_table(database_name, table_name, params::Dict{String,<:Any})

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 in the Timestream Developer Guide.

Arguments

  • database_name: The name of the Timestream database.
  • table_name: The name of the Timestream table.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "RetentionProperties": The duration for which your time series data must be stored in the memory store and the magnetic store.
  • "Tags": A list of key-value pairs to label the table.
source
Main.Timestream_Write.delete_databaseMethod
delete_database(database_name)
delete_database(database_name, params::Dict{String,<:Any})

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.

Arguments

  • database_name: The name of the Timestream database to be deleted.
source
Main.Timestream_Write.delete_tableMethod
delete_table(database_name, table_name)
delete_table(database_name, table_name, params::Dict{String,<:Any})

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.

Arguments

  • database_name: The name of the database where the Timestream database is to be deleted.
  • table_name: The name of the Timestream table to be deleted.
source
Main.Timestream_Write.describe_databaseMethod
describe_database(database_name)
describe_database(database_name, params::Dict{String,<:Any})

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 in the Timestream Developer Guide.

Arguments

  • database_name: The name of the Timestream database.
source
Main.Timestream_Write.describe_endpointsMethod
describe_endpoints()
describe_endpoints(params::Dict{String,<:Any})

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: 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 to use DescribeEndpoints, see The Endpoint Discovery Pattern and REST APIs.

source
Main.Timestream_Write.describe_tableMethod
describe_table(database_name, table_name)
describe_table(database_name, table_name, params::Dict{String,<:Any})

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 in the Timestream Developer Guide.

Arguments

  • database_name: The name of the Timestream database.
  • table_name: The name of the Timestream table.
source
Main.Timestream_Write.list_databasesMethod
list_databases()
list_databases(params::Dict{String,<:Any})

Returns a list of your Timestream databases. Service quotas apply. For more information, see Access Management in the Timestream Developer Guide.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "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.
  • "NextToken": The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.
source
Main.Timestream_Write.list_tablesMethod
list_tables()
list_tables(params::Dict{String,<:Any})

A list of tables, along with the name, status and retention properties of each table.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "DatabaseName": The name of the Timestream database.
  • "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.
  • "NextToken": The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.
source
Main.Timestream_Write.list_tags_for_resourceMethod
list_tags_for_resource(resource_arn)
list_tags_for_resource(resource_arn, params::Dict{String,<:Any})

List all tags on a Timestream resource.

Arguments

  • resource_arn: The Timestream resource with tags to be listed. This value is an Amazon Resource Name (ARN).
source
Main.Timestream_Write.tag_resourceMethod
tag_resource(resource_arn, tags)
tag_resource(resource_arn, tags, params::Dict{String,<:Any})

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.

Arguments

  • resource_arn: Identifies the Timestream resource to which tags should be added. This value is an Amazon Resource Name (ARN).
  • tags: The tags to be assigned to the Timestream resource.
source
Main.Timestream_Write.untag_resourceMethod
untag_resource(resource_arn, tag_keys)
untag_resource(resource_arn, tag_keys, params::Dict{String,<:Any})

Removes the association of tags from a Timestream resource.

Arguments

  • resource_arn: The Timestream resource that the tags will be removed from. This value is an Amazon Resource Name (ARN).
  • tag_keys: A list of tags keys. Existing tags of the resource whose keys are members of this list will be removed from the Timestream resource.
source
Main.Timestream_Write.update_databaseMethod
update_database(database_name, kms_key_id)
update_database(database_name, kms_key_id, params::Dict{String,<:Any})

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.

Arguments

  • database_name: The name of the database.
  • kms_key_id: 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
source
Main.Timestream_Write.update_tableMethod
update_table(database_name, retention_properties, table_name)
update_table(database_name, retention_properties, table_name, params::Dict{String,<:Any})

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 in the Timestream Developer Guide.

Arguments

  • database_name: The name of the Timestream database.
  • retention_properties: The retention duration of the memory store and the magnetic store.
  • table_name: The name of the Timesream table.
source
Main.Timestream_Write.write_recordsMethod
write_records(database_name, records, table_name)
write_records(database_name, records, table_name, params::Dict{String,<:Any})

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 in the Timestream Developer Guide.

Arguments

  • database_name: The name of the Timestream database.
  • records: An array of records containing the unique dimension and measure attributes for each time series data point.
  • table_name: The name of the Timesream table.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "CommonAttributes": A record containing the common measure and dimension attributes shared across all the records in the request. The measure and dimension attributes specified in here will be merged with the measure and dimension attributes in the records object when the data is written into Timestream.
source