aws logo
AWS Classic v5.33.0, Mar 24 23

aws.timestreamwrite.Table

Provides a Timestream table resource.

Example Usage

Basic usage

using System.Collections.Generic;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.TimestreamWrite.Table("example", new()
    {
        DatabaseName = aws_timestreamwrite_database.Example.Database_name,
        TableName = "example",
    });

});
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/timestreamwrite"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := timestreamwrite.NewTable(ctx, "example", &timestreamwrite.TableArgs{
			DatabaseName: pulumi.Any(aws_timestreamwrite_database.Example.Database_name),
			TableName:    pulumi.String("example"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.timestreamwrite.Table;
import com.pulumi.aws.timestreamwrite.TableArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new Table("example", TableArgs.builder()        
            .databaseName(aws_timestreamwrite_database.example().database_name())
            .tableName("example")
            .build());

    }
}
import pulumi
import pulumi_aws as aws

example = aws.timestreamwrite.Table("example",
    database_name=aws_timestreamwrite_database["example"]["database_name"],
    table_name="example")
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.timestreamwrite.Table("example", {
    databaseName: aws_timestreamwrite_database.example.database_name,
    tableName: "example",
});
resources:
  example:
    type: aws:timestreamwrite:Table
    properties:
      databaseName: ${aws_timestreamwrite_database.example.database_name}
      tableName: example

Full usage

using System.Collections.Generic;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.TimestreamWrite.Table("example", new()
    {
        DatabaseName = aws_timestreamwrite_database.Example.Database_name,
        TableName = "example",
        RetentionProperties = new Aws.TimestreamWrite.Inputs.TableRetentionPropertiesArgs
        {
            MagneticStoreRetentionPeriodInDays = 30,
            MemoryStoreRetentionPeriodInHours = 8,
        },
        Tags = 
        {
            { "Name", "example-timestream-table" },
        },
    });

});
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/timestreamwrite"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := timestreamwrite.NewTable(ctx, "example", &timestreamwrite.TableArgs{
			DatabaseName: pulumi.Any(aws_timestreamwrite_database.Example.Database_name),
			TableName:    pulumi.String("example"),
			RetentionProperties: &timestreamwrite.TableRetentionPropertiesArgs{
				MagneticStoreRetentionPeriodInDays: pulumi.Int(30),
				MemoryStoreRetentionPeriodInHours:  pulumi.Int(8),
			},
			Tags: pulumi.StringMap{
				"Name": pulumi.String("example-timestream-table"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.timestreamwrite.Table;
import com.pulumi.aws.timestreamwrite.TableArgs;
import com.pulumi.aws.timestreamwrite.inputs.TableRetentionPropertiesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new Table("example", TableArgs.builder()        
            .databaseName(aws_timestreamwrite_database.example().database_name())
            .tableName("example")
            .retentionProperties(TableRetentionPropertiesArgs.builder()
                .magneticStoreRetentionPeriodInDays(30)
                .memoryStoreRetentionPeriodInHours(8)
                .build())
            .tags(Map.of("Name", "example-timestream-table"))
            .build());

    }
}
import pulumi
import pulumi_aws as aws

example = aws.timestreamwrite.Table("example",
    database_name=aws_timestreamwrite_database["example"]["database_name"],
    table_name="example",
    retention_properties=aws.timestreamwrite.TableRetentionPropertiesArgs(
        magnetic_store_retention_period_in_days=30,
        memory_store_retention_period_in_hours=8,
    ),
    tags={
        "Name": "example-timestream-table",
    })
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.timestreamwrite.Table("example", {
    databaseName: aws_timestreamwrite_database.example.database_name,
    tableName: "example",
    retentionProperties: {
        magneticStoreRetentionPeriodInDays: 30,
        memoryStoreRetentionPeriodInHours: 8,
    },
    tags: {
        Name: "example-timestream-table",
    },
});
resources:
  example:
    type: aws:timestreamwrite:Table
    properties:
      databaseName: ${aws_timestreamwrite_database.example.database_name}
      tableName: example
      retentionProperties:
        magneticStoreRetentionPeriodInDays: 30
        memoryStoreRetentionPeriodInHours: 8
      tags:
        Name: example-timestream-table

Create Table Resource

new Table(name: string, args: TableArgs, opts?: CustomResourceOptions);
@overload
def Table(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          database_name: Optional[str] = None,
          magnetic_store_write_properties: Optional[TableMagneticStoreWritePropertiesArgs] = None,
          retention_properties: Optional[TableRetentionPropertiesArgs] = None,
          table_name: Optional[str] = None,
          tags: Optional[Mapping[str, str]] = None)
@overload
def Table(resource_name: str,
          args: TableArgs,
          opts: Optional[ResourceOptions] = None)
func NewTable(ctx *Context, name string, args TableArgs, opts ...ResourceOption) (*Table, error)
public Table(string name, TableArgs args, CustomResourceOptions? opts = null)
public Table(String name, TableArgs args)
public Table(String name, TableArgs args, CustomResourceOptions options)
type: aws:timestreamwrite:Table
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args TableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args TableArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args TableArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args TableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args TableArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Table Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The Table resource accepts the following input properties:

DatabaseName string

The name of the Timestream database.

TableName string

The name of the Timestream table.

MagneticStoreWriteProperties TableMagneticStoreWritePropertiesArgs

Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.

RetentionProperties TableRetentionPropertiesArgs

The retention duration for the memory store and magnetic store. See Retention Properties below for more details. If not provided, magnetic_store_retention_period_in_days default to 73000 and memory_store_retention_period_in_hours defaults to 6.

Tags Dictionary<string, string>

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

DatabaseName string

The name of the Timestream database.

TableName string

The name of the Timestream table.

MagneticStoreWriteProperties TableMagneticStoreWritePropertiesArgs

Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.

RetentionProperties TableRetentionPropertiesArgs

The retention duration for the memory store and magnetic store. See Retention Properties below for more details. If not provided, magnetic_store_retention_period_in_days default to 73000 and memory_store_retention_period_in_hours defaults to 6.

Tags map[string]string

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

databaseName String

The name of the Timestream database.

tableName String

The name of the Timestream table.

magneticStoreWriteProperties TableMagneticStoreWritePropertiesArgs

Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.

retentionProperties TableRetentionPropertiesArgs

The retention duration for the memory store and magnetic store. See Retention Properties below for more details. If not provided, magnetic_store_retention_period_in_days default to 73000 and memory_store_retention_period_in_hours defaults to 6.

tags Map<String,String>

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

databaseName string

The name of the Timestream database.

tableName string

The name of the Timestream table.

magneticStoreWriteProperties TableMagneticStoreWritePropertiesArgs

Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.

retentionProperties TableRetentionPropertiesArgs

The retention duration for the memory store and magnetic store. See Retention Properties below for more details. If not provided, magnetic_store_retention_period_in_days default to 73000 and memory_store_retention_period_in_hours defaults to 6.

tags {[key: string]: string}

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

database_name str

The name of the Timestream database.

table_name str

The name of the Timestream table.

magnetic_store_write_properties TableMagneticStoreWritePropertiesArgs

Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.

retention_properties TableRetentionPropertiesArgs

The retention duration for the memory store and magnetic store. See Retention Properties below for more details. If not provided, magnetic_store_retention_period_in_days default to 73000 and memory_store_retention_period_in_hours defaults to 6.

tags Mapping[str, str]

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

databaseName String

The name of the Timestream database.

tableName String

The name of the Timestream table.

magneticStoreWriteProperties Property Map

Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.

retentionProperties Property Map

The retention duration for the memory store and magnetic store. See Retention Properties below for more details. If not provided, magnetic_store_retention_period_in_days default to 73000 and memory_store_retention_period_in_hours defaults to 6.

tags Map<String>

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Outputs

All input properties are implicitly available as output properties. Additionally, the Table resource produces the following output properties:

Arn string

The ARN that uniquely identifies this table.

Id string

The provider-assigned unique ID for this managed resource.

TagsAll Dictionary<string, string>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Arn string

The ARN that uniquely identifies this table.

Id string

The provider-assigned unique ID for this managed resource.

TagsAll map[string]string

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

arn String

The ARN that uniquely identifies this table.

id String

The provider-assigned unique ID for this managed resource.

tagsAll Map<String,String>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

arn string

The ARN that uniquely identifies this table.

id string

The provider-assigned unique ID for this managed resource.

tagsAll {[key: string]: string}

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

arn str

The ARN that uniquely identifies this table.

id str

The provider-assigned unique ID for this managed resource.

tags_all Mapping[str, str]

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

arn String

The ARN that uniquely identifies this table.

id String

The provider-assigned unique ID for this managed resource.

tagsAll Map<String>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Look up Existing Table Resource

Get an existing Table resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: TableState, opts?: CustomResourceOptions): Table
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        database_name: Optional[str] = None,
        magnetic_store_write_properties: Optional[TableMagneticStoreWritePropertiesArgs] = None,
        retention_properties: Optional[TableRetentionPropertiesArgs] = None,
        table_name: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> Table
func GetTable(ctx *Context, name string, id IDInput, state *TableState, opts ...ResourceOption) (*Table, error)
public static Table Get(string name, Input<string> id, TableState? state, CustomResourceOptions? opts = null)
public static Table get(String name, Output<String> id, TableState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string

The ARN that uniquely identifies this table.

DatabaseName string

The name of the Timestream database.

MagneticStoreWriteProperties TableMagneticStoreWritePropertiesArgs

Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.

RetentionProperties TableRetentionPropertiesArgs

The retention duration for the memory store and magnetic store. See Retention Properties below for more details. If not provided, magnetic_store_retention_period_in_days default to 73000 and memory_store_retention_period_in_hours defaults to 6.

TableName string

The name of the Timestream table.

Tags Dictionary<string, string>

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

TagsAll Dictionary<string, string>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Arn string

The ARN that uniquely identifies this table.

DatabaseName string

The name of the Timestream database.

MagneticStoreWriteProperties TableMagneticStoreWritePropertiesArgs

Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.

RetentionProperties TableRetentionPropertiesArgs

The retention duration for the memory store and magnetic store. See Retention Properties below for more details. If not provided, magnetic_store_retention_period_in_days default to 73000 and memory_store_retention_period_in_hours defaults to 6.

TableName string

The name of the Timestream table.

Tags map[string]string

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

TagsAll map[string]string

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

arn String

The ARN that uniquely identifies this table.

databaseName String

The name of the Timestream database.

magneticStoreWriteProperties TableMagneticStoreWritePropertiesArgs

Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.

retentionProperties TableRetentionPropertiesArgs

The retention duration for the memory store and magnetic store. See Retention Properties below for more details. If not provided, magnetic_store_retention_period_in_days default to 73000 and memory_store_retention_period_in_hours defaults to 6.

tableName String

The name of the Timestream table.

tags Map<String,String>

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll Map<String,String>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

arn string

The ARN that uniquely identifies this table.

databaseName string

The name of the Timestream database.

magneticStoreWriteProperties TableMagneticStoreWritePropertiesArgs

Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.

retentionProperties TableRetentionPropertiesArgs

The retention duration for the memory store and magnetic store. See Retention Properties below for more details. If not provided, magnetic_store_retention_period_in_days default to 73000 and memory_store_retention_period_in_hours defaults to 6.

tableName string

The name of the Timestream table.

tags {[key: string]: string}

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll {[key: string]: string}

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

arn str

The ARN that uniquely identifies this table.

database_name str

The name of the Timestream database.

magnetic_store_write_properties TableMagneticStoreWritePropertiesArgs

Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.

retention_properties TableRetentionPropertiesArgs

The retention duration for the memory store and magnetic store. See Retention Properties below for more details. If not provided, magnetic_store_retention_period_in_days default to 73000 and memory_store_retention_period_in_hours defaults to 6.

table_name str

The name of the Timestream table.

tags Mapping[str, str]

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tags_all Mapping[str, str]

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

arn String

The ARN that uniquely identifies this table.

databaseName String

The name of the Timestream database.

magneticStoreWriteProperties Property Map

Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.

retentionProperties Property Map

The retention duration for the memory store and magnetic store. See Retention Properties below for more details. If not provided, magnetic_store_retention_period_in_days default to 73000 and memory_store_retention_period_in_hours defaults to 6.

tableName String

The name of the Timestream table.

tags Map<String>

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll Map<String>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Supporting Types

TableMagneticStoreWriteProperties

EnableMagneticStoreWrites bool

A flag to enable magnetic store writes.

MagneticStoreRejectedDataLocation TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocation

The location to write error reports for records rejected asynchronously during magnetic store writes. See Magnetic Store Rejected Data Location below for more details.

EnableMagneticStoreWrites bool

A flag to enable magnetic store writes.

MagneticStoreRejectedDataLocation TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocation

The location to write error reports for records rejected asynchronously during magnetic store writes. See Magnetic Store Rejected Data Location below for more details.

enableMagneticStoreWrites Boolean

A flag to enable magnetic store writes.

magneticStoreRejectedDataLocation TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocation

The location to write error reports for records rejected asynchronously during magnetic store writes. See Magnetic Store Rejected Data Location below for more details.

enableMagneticStoreWrites boolean

A flag to enable magnetic store writes.

magneticStoreRejectedDataLocation TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocation

The location to write error reports for records rejected asynchronously during magnetic store writes. See Magnetic Store Rejected Data Location below for more details.

enable_magnetic_store_writes bool

A flag to enable magnetic store writes.

magnetic_store_rejected_data_location TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocation

The location to write error reports for records rejected asynchronously during magnetic store writes. See Magnetic Store Rejected Data Location below for more details.

enableMagneticStoreWrites Boolean

A flag to enable magnetic store writes.

magneticStoreRejectedDataLocation Property Map

The location to write error reports for records rejected asynchronously during magnetic store writes. See Magnetic Store Rejected Data Location below for more details.

TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocation

S3Configuration TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocationS3Configuration

Configuration of an S3 location to write error reports for records rejected, asynchronously, during magnetic store writes. See S3 Configuration below for more details.

S3Configuration TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocationS3Configuration

Configuration of an S3 location to write error reports for records rejected, asynchronously, during magnetic store writes. See S3 Configuration below for more details.

s3Configuration TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocationS3Configuration

Configuration of an S3 location to write error reports for records rejected, asynchronously, during magnetic store writes. See S3 Configuration below for more details.

s3Configuration TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocationS3Configuration

Configuration of an S3 location to write error reports for records rejected, asynchronously, during magnetic store writes. See S3 Configuration below for more details.

s3_configuration TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocationS3Configuration

Configuration of an S3 location to write error reports for records rejected, asynchronously, during magnetic store writes. See S3 Configuration below for more details.

s3Configuration Property Map

Configuration of an S3 location to write error reports for records rejected, asynchronously, during magnetic store writes. See S3 Configuration below for more details.

TableMagneticStoreWritePropertiesMagneticStoreRejectedDataLocationS3Configuration

BucketName string

Bucket name of the customer S3 bucket.

EncryptionOption string

Encryption option for the customer s3 location. Options are S3 server side encryption with an S3-managed key or KMS managed key. Valid values are SSE_KMS and SSE_S3.

KmsKeyId string

KMS key arn for the customer s3 location when encrypting with a KMS managed key.

ObjectKeyPrefix string

Object key prefix for the customer S3 location.

BucketName string

Bucket name of the customer S3 bucket.

EncryptionOption string

Encryption option for the customer s3 location. Options are S3 server side encryption with an S3-managed key or KMS managed key. Valid values are SSE_KMS and SSE_S3.

KmsKeyId string

KMS key arn for the customer s3 location when encrypting with a KMS managed key.

ObjectKeyPrefix string

Object key prefix for the customer S3 location.

bucketName String

Bucket name of the customer S3 bucket.

encryptionOption String

Encryption option for the customer s3 location. Options are S3 server side encryption with an S3-managed key or KMS managed key. Valid values are SSE_KMS and SSE_S3.

kmsKeyId String

KMS key arn for the customer s3 location when encrypting with a KMS managed key.

objectKeyPrefix String

Object key prefix for the customer S3 location.

bucketName string

Bucket name of the customer S3 bucket.

encryptionOption string

Encryption option for the customer s3 location. Options are S3 server side encryption with an S3-managed key or KMS managed key. Valid values are SSE_KMS and SSE_S3.

kmsKeyId string

KMS key arn for the customer s3 location when encrypting with a KMS managed key.

objectKeyPrefix string

Object key prefix for the customer S3 location.

bucket_name str

Bucket name of the customer S3 bucket.

encryption_option str

Encryption option for the customer s3 location. Options are S3 server side encryption with an S3-managed key or KMS managed key. Valid values are SSE_KMS and SSE_S3.

kms_key_id str

KMS key arn for the customer s3 location when encrypting with a KMS managed key.

object_key_prefix str

Object key prefix for the customer S3 location.

bucketName String

Bucket name of the customer S3 bucket.

encryptionOption String

Encryption option for the customer s3 location. Options are S3 server side encryption with an S3-managed key or KMS managed key. Valid values are SSE_KMS and SSE_S3.

kmsKeyId String

KMS key arn for the customer s3 location when encrypting with a KMS managed key.

objectKeyPrefix String

Object key prefix for the customer S3 location.

TableRetentionProperties

MagneticStoreRetentionPeriodInDays int

The duration for which data must be stored in the magnetic store. Minimum value of 1. Maximum value of 73000.

MemoryStoreRetentionPeriodInHours int

The duration for which data must be stored in the memory store. Minimum value of 1. Maximum value of 8766.

MagneticStoreRetentionPeriodInDays int

The duration for which data must be stored in the magnetic store. Minimum value of 1. Maximum value of 73000.

MemoryStoreRetentionPeriodInHours int

The duration for which data must be stored in the memory store. Minimum value of 1. Maximum value of 8766.

magneticStoreRetentionPeriodInDays Integer

The duration for which data must be stored in the magnetic store. Minimum value of 1. Maximum value of 73000.

memoryStoreRetentionPeriodInHours Integer

The duration for which data must be stored in the memory store. Minimum value of 1. Maximum value of 8766.

magneticStoreRetentionPeriodInDays number

The duration for which data must be stored in the magnetic store. Minimum value of 1. Maximum value of 73000.

memoryStoreRetentionPeriodInHours number

The duration for which data must be stored in the memory store. Minimum value of 1. Maximum value of 8766.

magnetic_store_retention_period_in_days int

The duration for which data must be stored in the magnetic store. Minimum value of 1. Maximum value of 73000.

memory_store_retention_period_in_hours int

The duration for which data must be stored in the memory store. Minimum value of 1. Maximum value of 8766.

magneticStoreRetentionPeriodInDays Number

The duration for which data must be stored in the magnetic store. Minimum value of 1. Maximum value of 73000.

memoryStoreRetentionPeriodInHours Number

The duration for which data must be stored in the memory store. Minimum value of 1. Maximum value of 8766.

Import

Timestream tables can be imported using the table_name and database_name separate by a colon (:), e.g.,

 $ pulumi import aws:timestreamwrite/table:Table example ExampleTable:ExampleDatabase

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes

This Pulumi package is based on the aws Terraform Provider.