View on GitHub

aws-sdk-swift

TimestreamWriteClient

public class TimestreamWriteClient 

Inheritance

TimestreamWriteClientProtocol

Initializers

init(config:)

public init(config: AWSClientRuntime.AWSClientConfiguration) 

init(region:)

public convenience init(region: Swift.String? = nil) throws 

Properties

clientName

public static let clientName = "TimestreamWriteClient"

Methods

createDatabase(input:completion:)

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.

public func createDatabase(input: CreateDatabaseInput, completion: @escaping (ClientRuntime.SdkResult<CreateDatabaseOutputResponse, CreateDatabaseOutputError>) -> Void)

createTable(input:completion:)

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.

public func createTable(input: CreateTableInput, completion: @escaping (ClientRuntime.SdkResult<CreateTableOutputResponse, CreateTableOutputError>) -> Void)

deleteDatabase(input:completion:)

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.

public func deleteDatabase(input: DeleteDatabaseInput, completion: @escaping (ClientRuntime.SdkResult<DeleteDatabaseOutputResponse, DeleteDatabaseOutputError>) -> Void)

deleteTable(input:completion:)

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.

public func deleteTable(input: DeleteTableInput, completion: @escaping (ClientRuntime.SdkResult<DeleteTableOutputResponse, DeleteTableOutputError>) -> Void)

describeDatabase(input:completion:)

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.

public func describeDatabase(input: DescribeDatabaseInput, completion: @escaping (ClientRuntime.SdkResult<DescribeDatabaseOutputResponse, DescribeDatabaseOutputError>) -> Void)

describeEndpoints(input:completion:)

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:

public func describeEndpoints(input: DescribeEndpointsInput, completion: @escaping (ClientRuntime.SdkResult<DescribeEndpointsOutputResponse, DescribeEndpointsOutputError>) -> Void)

For detailed information on how to use DescribeEndpoints, see The Endpoint Discovery Pattern and REST APIs.

describeTable(input:completion:)

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.

public func describeTable(input: DescribeTableInput, completion: @escaping (ClientRuntime.SdkResult<DescribeTableOutputResponse, DescribeTableOutputError>) -> Void)

listDatabases(input:completion:)

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

public func listDatabases(input: ListDatabasesInput, completion: @escaping (ClientRuntime.SdkResult<ListDatabasesOutputResponse, ListDatabasesOutputError>) -> Void)

listTables(input:completion:)

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

public func listTables(input: ListTablesInput, completion: @escaping (ClientRuntime.SdkResult<ListTablesOutputResponse, ListTablesOutputError>) -> Void)

listTagsForResource(input:completion:)

List all tags on a Timestream resource.

public func listTagsForResource(input: ListTagsForResourceInput, completion: @escaping (ClientRuntime.SdkResult<ListTagsForResourceOutputResponse, ListTagsForResourceOutputError>) -> Void)

tagResource(input:completion:)

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.

public func tagResource(input: TagResourceInput, completion: @escaping (ClientRuntime.SdkResult<TagResourceOutputResponse, TagResourceOutputError>) -> Void)

untagResource(input:completion:)

Removes the association of tags from a Timestream resource.

public func untagResource(input: UntagResourceInput, completion: @escaping (ClientRuntime.SdkResult<UntagResourceOutputResponse, UntagResourceOutputError>) -> Void)

updateDatabase(input:completion:)

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.

public func updateDatabase(input: UpdateDatabaseInput, completion: @escaping (ClientRuntime.SdkResult<UpdateDatabaseOutputResponse, UpdateDatabaseOutputError>) -> Void)

updateTable(input:completion:)

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.

public func updateTable(input: UpdateTableInput, completion: @escaping (ClientRuntime.SdkResult<UpdateTableOutputResponse, UpdateTableOutputError>) -> Void)

writeRecords(input:completion:)

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.

public func writeRecords(input: WriteRecordsInput, completion: @escaping (ClientRuntime.SdkResult<WriteRecordsOutputResponse, WriteRecordsOutputError>) -> Void)