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", ×treamwrite.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", ×treamwrite.TableArgs{
DatabaseName: pulumi.Any(aws_timestreamwrite_database.Example.Database_name),
TableName: pulumi.String("example"),
RetentionProperties: ×treamwrite.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)
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:
- Database
Name string The name of the Timestream database.
- Table
Name string The name of the Timestream table.
- Magnetic
Store TableWrite Properties Magnetic Store Write Properties Args Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.
- Retention
Properties TableRetention Properties Args 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 andmemory_store_retention_period_in_hours
defaults to 6.- 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.
- Database
Name string The name of the Timestream database.
- Table
Name string The name of the Timestream table.
- Magnetic
Store TableWrite Properties Magnetic Store Write Properties Args Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.
- Retention
Properties TableRetention Properties Args 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 andmemory_store_retention_period_in_hours
defaults to 6.- 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.
- database
Name String The name of the Timestream database.
- table
Name String The name of the Timestream table.
- magnetic
Store TableWrite Properties Magnetic Store Write Properties Args Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.
- retention
Properties TableRetention Properties Args 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 andmemory_store_retention_period_in_hours
defaults to 6.- 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.
- database
Name string The name of the Timestream database.
- table
Name string The name of the Timestream table.
- magnetic
Store TableWrite Properties Magnetic Store Write Properties Args Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.
- retention
Properties TableRetention Properties Args 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 andmemory_store_retention_period_in_hours
defaults to 6.- {[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_ Tablewrite_ properties Magnetic Store Write Properties Args Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.
- retention_
properties TableRetention Properties Args 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 andmemory_store_retention_period_in_hours
defaults to 6.- 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.
- database
Name String The name of the Timestream database.
- table
Name String The name of the Timestream table.
- magnetic
Store Property MapWrite Properties Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.
- retention
Properties 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 andmemory_store_retention_period_in_hours
defaults to 6.- 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:
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.
- Arn string
The ARN that uniquely identifies this table.
- Database
Name string The name of the Timestream database.
- Magnetic
Store TableWrite Properties Magnetic Store Write Properties Args Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.
- Retention
Properties TableRetention Properties Args 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 andmemory_store_retention_period_in_hours
defaults to 6.- Table
Name string The name of the Timestream table.
- 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.- 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.
- Database
Name string The name of the Timestream database.
- Magnetic
Store TableWrite Properties Magnetic Store Write Properties Args Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.
- Retention
Properties TableRetention Properties Args 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 andmemory_store_retention_period_in_hours
defaults to 6.- Table
Name string The name of the Timestream table.
- 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.- 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.
- database
Name String The name of the Timestream database.
- magnetic
Store TableWrite Properties Magnetic Store Write Properties Args Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.
- retention
Properties TableRetention Properties Args 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 andmemory_store_retention_period_in_hours
defaults to 6.- table
Name String The name of the Timestream table.
- 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.- 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.
- database
Name string The name of the Timestream database.
- magnetic
Store TableWrite Properties Magnetic Store Write Properties Args Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.
- retention
Properties TableRetention Properties Args 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 andmemory_store_retention_period_in_hours
defaults to 6.- table
Name string The name of the Timestream table.
- {[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.- {[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_ Tablewrite_ properties Magnetic Store Write Properties Args Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.
- retention_
properties TableRetention Properties Args 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 andmemory_store_retention_period_in_hours
defaults to 6.- table_
name str The name of the Timestream table.
- 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.- 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.
- database
Name String The name of the Timestream database.
- magnetic
Store Property MapWrite Properties Contains properties to set on the table when enabling magnetic store writes. See Magnetic Store Write Properties below for more details.
- retention
Properties 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 andmemory_store_retention_period_in_hours
defaults to 6.- table
Name String The name of the Timestream table.
- 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.- Map<String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Supporting Types
TableMagneticStoreWriteProperties
- Enable
Magnetic boolStore Writes A flag to enable magnetic store writes.
- Magnetic
Store TableRejected Data Location Magnetic Store Write Properties Magnetic Store Rejected Data Location 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 boolStore Writes A flag to enable magnetic store writes.
- Magnetic
Store TableRejected Data Location Magnetic Store Write Properties Magnetic Store Rejected Data Location 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 BooleanStore Writes A flag to enable magnetic store writes.
- magnetic
Store TableRejected Data Location Magnetic Store Write Properties Magnetic Store Rejected Data Location 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 booleanStore Writes A flag to enable magnetic store writes.
- magnetic
Store TableRejected Data Location Magnetic Store Write Properties Magnetic Store Rejected Data Location 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_ boolstore_ writes A flag to enable magnetic store writes.
- magnetic_
store_ Tablerejected_ data_ location Magnetic Store Write Properties Magnetic Store Rejected Data Location 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 BooleanStore Writes A flag to enable magnetic store writes.
- magnetic
Store Property MapRejected Data Location 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
Table
Magnetic Store Write Properties Magnetic Store Rejected Data Location S3Configuration 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
Table
Magnetic Store Write Properties Magnetic Store Rejected Data Location S3Configuration 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
Table
Magnetic Store Write Properties Magnetic Store Rejected Data Location S3Configuration 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
Table
Magnetic Store Write Properties Magnetic Store Rejected Data Location S3Configuration 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 TableMagnetic Store Write Properties Magnetic Store Rejected Data Location S3Configuration 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
- Bucket
Name string Bucket name of the customer S3 bucket.
- Encryption
Option 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
andSSE_S3
.- Kms
Key stringId KMS key arn for the customer s3 location when encrypting with a KMS managed key.
- Object
Key stringPrefix Object key prefix for the customer S3 location.
- Bucket
Name string Bucket name of the customer S3 bucket.
- Encryption
Option 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
andSSE_S3
.- Kms
Key stringId KMS key arn for the customer s3 location when encrypting with a KMS managed key.
- Object
Key stringPrefix Object key prefix for the customer S3 location.
- bucket
Name String Bucket name of the customer S3 bucket.
- encryption
Option 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
andSSE_S3
.- kms
Key StringId KMS key arn for the customer s3 location when encrypting with a KMS managed key.
- object
Key StringPrefix Object key prefix for the customer S3 location.
- bucket
Name string Bucket name of the customer S3 bucket.
- encryption
Option 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
andSSE_S3
.- kms
Key stringId KMS key arn for the customer s3 location when encrypting with a KMS managed key.
- object
Key stringPrefix 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
andSSE_S3
.- kms_
key_ strid KMS key arn for the customer s3 location when encrypting with a KMS managed key.
- object_
key_ strprefix Object key prefix for the customer S3 location.
- bucket
Name String Bucket name of the customer S3 bucket.
- encryption
Option 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
andSSE_S3
.- kms
Key StringId KMS key arn for the customer s3 location when encrypting with a KMS managed key.
- object
Key StringPrefix Object key prefix for the customer S3 location.
TableRetentionProperties
- Magnetic
Store intRetention Period In Days The duration for which data must be stored in the magnetic store. Minimum value of 1. Maximum value of 73000.
- Memory
Store intRetention Period In Hours The duration for which data must be stored in the memory store. Minimum value of 1. Maximum value of 8766.
- Magnetic
Store intRetention Period In Days The duration for which data must be stored in the magnetic store. Minimum value of 1. Maximum value of 73000.
- Memory
Store intRetention Period In Hours The duration for which data must be stored in the memory store. Minimum value of 1. Maximum value of 8766.
- magnetic
Store IntegerRetention Period In Days The duration for which data must be stored in the magnetic store. Minimum value of 1. Maximum value of 73000.
- memory
Store IntegerRetention Period In Hours The duration for which data must be stored in the memory store. Minimum value of 1. Maximum value of 8766.
- magnetic
Store numberRetention Period In Days The duration for which data must be stored in the magnetic store. Minimum value of 1. Maximum value of 73000.
- memory
Store numberRetention Period In Hours The duration for which data must be stored in the memory store. Minimum value of 1. Maximum value of 8766.
- magnetic_
store_ intretention_ period_ in_ days The duration for which data must be stored in the magnetic store. Minimum value of 1. Maximum value of 73000.
- memory_
store_ intretention_ period_ in_ hours The duration for which data must be stored in the memory store. Minimum value of 1. Maximum value of 8766.
- magnetic
Store NumberRetention Period In Days The duration for which data must be stored in the magnetic store. Minimum value of 1. Maximum value of 73000.
- memory
Store NumberRetention Period In Hours 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.