aws.s3tables.Table
Explore with Pulumi AI
Resource for managing an Amazon S3 Tables Table.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const exampleTableBucket = new aws.s3tables.TableBucket("example", {name: "example-bucket"});
const exampleNamespace = new aws.s3tables.Namespace("example", {
    namespace: "example-namespace",
    tableBucketArn: exampleTableBucket.arn,
});
const example = new aws.s3tables.Table("example", {
    name: "example-table",
    namespace: exampleNamespace.namespace,
    tableBucketArn: exampleNamespace.tableBucketArn,
    format: "ICEBERG",
});
import pulumi
import pulumi_aws as aws
example_table_bucket = aws.s3tables.TableBucket("example", name="example-bucket")
example_namespace = aws.s3tables.Namespace("example",
    namespace="example-namespace",
    table_bucket_arn=example_table_bucket.arn)
example = aws.s3tables.Table("example",
    name="example-table",
    namespace=example_namespace.namespace,
    table_bucket_arn=example_namespace.table_bucket_arn,
    format="ICEBERG")
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/s3tables"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		exampleTableBucket, err := s3tables.NewTableBucket(ctx, "example", &s3tables.TableBucketArgs{
			Name: pulumi.String("example-bucket"),
		})
		if err != nil {
			return err
		}
		exampleNamespace, err := s3tables.NewNamespace(ctx, "example", &s3tables.NamespaceArgs{
			Namespace:      pulumi.String("example-namespace"),
			TableBucketArn: exampleTableBucket.Arn,
		})
		if err != nil {
			return err
		}
		_, err = s3tables.NewTable(ctx, "example", &s3tables.TableArgs{
			Name:           pulumi.String("example-table"),
			Namespace:      exampleNamespace.Namespace,
			TableBucketArn: exampleNamespace.TableBucketArn,
			Format:         pulumi.String("ICEBERG"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() => 
{
    var exampleTableBucket = new Aws.S3Tables.TableBucket("example", new()
    {
        Name = "example-bucket",
    });
    var exampleNamespace = new Aws.S3Tables.Namespace("example", new()
    {
        NameSpace = "example-namespace",
        TableBucketArn = exampleTableBucket.Arn,
    });
    var example = new Aws.S3Tables.Table("example", new()
    {
        Name = "example-table",
        Namespace = exampleNamespace.NameSpace,
        TableBucketArn = exampleNamespace.TableBucketArn,
        Format = "ICEBERG",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.s3tables.TableBucket;
import com.pulumi.aws.s3tables.TableBucketArgs;
import com.pulumi.aws.s3tables.Namespace;
import com.pulumi.aws.s3tables.NamespaceArgs;
import com.pulumi.aws.s3tables.Table;
import com.pulumi.aws.s3tables.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 exampleTableBucket = new TableBucket("exampleTableBucket", TableBucketArgs.builder()
            .name("example-bucket")
            .build());
        var exampleNamespace = new Namespace("exampleNamespace", NamespaceArgs.builder()
            .namespace("example-namespace")
            .tableBucketArn(exampleTableBucket.arn())
            .build());
        var example = new Table("example", TableArgs.builder()
            .name("example-table")
            .namespace(exampleNamespace.namespace())
            .tableBucketArn(exampleNamespace.tableBucketArn())
            .format("ICEBERG")
            .build());
    }
}
resources:
  example:
    type: aws:s3tables:Table
    properties:
      name: example-table
      namespace: ${exampleNamespace.namespace}
      tableBucketArn: ${exampleNamespace.tableBucketArn}
      format: ICEBERG
  exampleNamespace:
    type: aws:s3tables:Namespace
    name: example
    properties:
      namespace: example-namespace
      tableBucketArn: ${exampleTableBucket.arn}
  exampleTableBucket:
    type: aws:s3tables:TableBucket
    name: example
    properties:
      name: example-bucket
Create Table Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Table(name: string, args: TableArgs, opts?: CustomResourceOptions);@overload
def Table(resource_name: str,
          args: TableArgs,
          opts: Optional[ResourceOptions] = None)
@overload
def Table(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          format: Optional[str] = None,
          namespace: Optional[str] = None,
          table_bucket_arn: Optional[str] = None,
          maintenance_configuration: Optional[TableMaintenanceConfigurationArgs] = None,
          name: Optional[str] = None)func NewTable(ctx *Context, name string, args TableArgs, opts ...ResourceOption) (*Table, error)public Table(string name, TableArgs args, CustomResourceOptions? opts = null)type: aws:s3tables:Table
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampletableResourceResourceFromS3tablestable = new Aws.S3Tables.Table("exampletableResourceResourceFromS3tablestable", new()
{
    Format = "string",
    Namespace = "string",
    TableBucketArn = "string",
    MaintenanceConfiguration = new Aws.S3Tables.Inputs.TableMaintenanceConfigurationArgs
    {
        IcebergCompaction = new Aws.S3Tables.Inputs.TableMaintenanceConfigurationIcebergCompactionArgs
        {
            Settings = new Aws.S3Tables.Inputs.TableMaintenanceConfigurationIcebergCompactionSettingsArgs
            {
                TargetFileSizeMb = 0,
            },
            Status = "string",
        },
        IcebergSnapshotManagement = new Aws.S3Tables.Inputs.TableMaintenanceConfigurationIcebergSnapshotManagementArgs
        {
            Settings = new Aws.S3Tables.Inputs.TableMaintenanceConfigurationIcebergSnapshotManagementSettingsArgs
            {
                MaxSnapshotAgeHours = 0,
                MinSnapshotsToKeep = 0,
            },
            Status = "string",
        },
    },
    Name = "string",
});
example, err := s3tables.NewTable(ctx, "exampletableResourceResourceFromS3tablestable", &s3tables.TableArgs{
	Format:         pulumi.String("string"),
	Namespace:      pulumi.String("string"),
	TableBucketArn: pulumi.String("string"),
	MaintenanceConfiguration: &s3tables.TableMaintenanceConfigurationArgs{
		IcebergCompaction: &s3tables.TableMaintenanceConfigurationIcebergCompactionArgs{
			Settings: &s3tables.TableMaintenanceConfigurationIcebergCompactionSettingsArgs{
				TargetFileSizeMb: pulumi.Int(0),
			},
			Status: pulumi.String("string"),
		},
		IcebergSnapshotManagement: &s3tables.TableMaintenanceConfigurationIcebergSnapshotManagementArgs{
			Settings: &s3tables.TableMaintenanceConfigurationIcebergSnapshotManagementSettingsArgs{
				MaxSnapshotAgeHours: pulumi.Int(0),
				MinSnapshotsToKeep:  pulumi.Int(0),
			},
			Status: pulumi.String("string"),
		},
	},
	Name: pulumi.String("string"),
})
var exampletableResourceResourceFromS3tablestable = new Table("exampletableResourceResourceFromS3tablestable", TableArgs.builder()
    .format("string")
    .namespace("string")
    .tableBucketArn("string")
    .maintenanceConfiguration(TableMaintenanceConfigurationArgs.builder()
        .icebergCompaction(TableMaintenanceConfigurationIcebergCompactionArgs.builder()
            .settings(TableMaintenanceConfigurationIcebergCompactionSettingsArgs.builder()
                .targetFileSizeMb(0)
                .build())
            .status("string")
            .build())
        .icebergSnapshotManagement(TableMaintenanceConfigurationIcebergSnapshotManagementArgs.builder()
            .settings(TableMaintenanceConfigurationIcebergSnapshotManagementSettingsArgs.builder()
                .maxSnapshotAgeHours(0)
                .minSnapshotsToKeep(0)
                .build())
            .status("string")
            .build())
        .build())
    .name("string")
    .build());
exampletable_resource_resource_from_s3tablestable = aws.s3tables.Table("exampletableResourceResourceFromS3tablestable",
    format="string",
    namespace="string",
    table_bucket_arn="string",
    maintenance_configuration={
        "iceberg_compaction": {
            "settings": {
                "target_file_size_mb": 0,
            },
            "status": "string",
        },
        "iceberg_snapshot_management": {
            "settings": {
                "max_snapshot_age_hours": 0,
                "min_snapshots_to_keep": 0,
            },
            "status": "string",
        },
    },
    name="string")
const exampletableResourceResourceFromS3tablestable = new aws.s3tables.Table("exampletableResourceResourceFromS3tablestable", {
    format: "string",
    namespace: "string",
    tableBucketArn: "string",
    maintenanceConfiguration: {
        icebergCompaction: {
            settings: {
                targetFileSizeMb: 0,
            },
            status: "string",
        },
        icebergSnapshotManagement: {
            settings: {
                maxSnapshotAgeHours: 0,
                minSnapshotsToKeep: 0,
            },
            status: "string",
        },
    },
    name: "string",
});
type: aws:s3tables:Table
properties:
    format: string
    maintenanceConfiguration:
        icebergCompaction:
            settings:
                targetFileSizeMb: 0
            status: string
        icebergSnapshotManagement:
            settings:
                maxSnapshotAgeHours: 0
                minSnapshotsToKeep: 0
            status: string
    name: string
    namespace: string
    tableBucketArn: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Table resource accepts the following input properties:
- Format string
- Format of the table.
Must be ICEBERG.
- Namespace string
- Name of the namespace for this table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
- TableBucket stringArn 
- ARN referencing the Table Bucket that contains this Namespace. - The following argument is optional: 
- MaintenanceConfiguration TableMaintenance Configuration 
- A single table bucket maintenance configuration block.
See maintenance_configurationbelow.
- Name string
- Name of the table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number. A full list of table naming rules can be found in the S3 Tables documentation.
- Format string
- Format of the table.
Must be ICEBERG.
- Namespace string
- Name of the namespace for this table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
- TableBucket stringArn 
- ARN referencing the Table Bucket that contains this Namespace. - The following argument is optional: 
- MaintenanceConfiguration TableMaintenance Configuration Args 
- A single table bucket maintenance configuration block.
See maintenance_configurationbelow.
- Name string
- Name of the table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number. A full list of table naming rules can be found in the S3 Tables documentation.
- format String
- Format of the table.
Must be ICEBERG.
- namespace String
- Name of the namespace for this table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
- tableBucket StringArn 
- ARN referencing the Table Bucket that contains this Namespace. - The following argument is optional: 
- maintenanceConfiguration TableMaintenance Configuration 
- A single table bucket maintenance configuration block.
See maintenance_configurationbelow.
- name String
- Name of the table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number. A full list of table naming rules can be found in the S3 Tables documentation.
- format string
- Format of the table.
Must be ICEBERG.
- namespace string
- Name of the namespace for this table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
- tableBucket stringArn 
- ARN referencing the Table Bucket that contains this Namespace. - The following argument is optional: 
- maintenanceConfiguration TableMaintenance Configuration 
- A single table bucket maintenance configuration block.
See maintenance_configurationbelow.
- name string
- Name of the table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number. A full list of table naming rules can be found in the S3 Tables documentation.
- format str
- Format of the table.
Must be ICEBERG.
- namespace str
- Name of the namespace for this table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
- table_bucket_ strarn 
- ARN referencing the Table Bucket that contains this Namespace. - The following argument is optional: 
- maintenance_configuration TableMaintenance Configuration Args 
- A single table bucket maintenance configuration block.
See maintenance_configurationbelow.
- name str
- Name of the table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number. A full list of table naming rules can be found in the S3 Tables documentation.
- format String
- Format of the table.
Must be ICEBERG.
- namespace String
- Name of the namespace for this table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
- tableBucket StringArn 
- ARN referencing the Table Bucket that contains this Namespace. - The following argument is optional: 
- maintenanceConfiguration Property Map
- A single table bucket maintenance configuration block.
See maintenance_configurationbelow.
- name String
- Name of the table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number. A full list of table naming rules can be found in the S3 Tables documentation.
Outputs
All input properties are implicitly available as output properties. Additionally, the Table resource produces the following output properties:
- Arn string
- ARN of the table.
- CreatedAt string
- Date and time when the namespace was created.
- CreatedBy string
- Account ID of the account that created the namespace.
- Id string
- The provider-assigned unique ID for this managed resource.
- MetadataLocation string
- Location of table metadata.
- ModifiedAt string
- Date and time when the namespace was last modified.
- ModifiedBy string
- Account ID of the account that last modified the namespace.
- OwnerAccount stringId 
- Account ID of the account that owns the namespace.
- Type string
- Type of the table.
One of customeroraws.
- VersionToken string
- Identifier for the current version of table data.
- WarehouseLocation string
- S3 URI pointing to the S3 Bucket that contains the table data.
- Arn string
- ARN of the table.
- CreatedAt string
- Date and time when the namespace was created.
- CreatedBy string
- Account ID of the account that created the namespace.
- Id string
- The provider-assigned unique ID for this managed resource.
- MetadataLocation string
- Location of table metadata.
- ModifiedAt string
- Date and time when the namespace was last modified.
- ModifiedBy string
- Account ID of the account that last modified the namespace.
- OwnerAccount stringId 
- Account ID of the account that owns the namespace.
- Type string
- Type of the table.
One of customeroraws.
- VersionToken string
- Identifier for the current version of table data.
- WarehouseLocation string
- S3 URI pointing to the S3 Bucket that contains the table data.
- arn String
- ARN of the table.
- createdAt String
- Date and time when the namespace was created.
- createdBy String
- Account ID of the account that created the namespace.
- id String
- The provider-assigned unique ID for this managed resource.
- metadataLocation String
- Location of table metadata.
- modifiedAt String
- Date and time when the namespace was last modified.
- modifiedBy String
- Account ID of the account that last modified the namespace.
- ownerAccount StringId 
- Account ID of the account that owns the namespace.
- type String
- Type of the table.
One of customeroraws.
- versionToken String
- Identifier for the current version of table data.
- warehouseLocation String
- S3 URI pointing to the S3 Bucket that contains the table data.
- arn string
- ARN of the table.
- createdAt string
- Date and time when the namespace was created.
- createdBy string
- Account ID of the account that created the namespace.
- id string
- The provider-assigned unique ID for this managed resource.
- metadataLocation string
- Location of table metadata.
- modifiedAt string
- Date and time when the namespace was last modified.
- modifiedBy string
- Account ID of the account that last modified the namespace.
- ownerAccount stringId 
- Account ID of the account that owns the namespace.
- type string
- Type of the table.
One of customeroraws.
- versionToken string
- Identifier for the current version of table data.
- warehouseLocation string
- S3 URI pointing to the S3 Bucket that contains the table data.
- arn str
- ARN of the table.
- created_at str
- Date and time when the namespace was created.
- created_by str
- Account ID of the account that created the namespace.
- id str
- The provider-assigned unique ID for this managed resource.
- metadata_location str
- Location of table metadata.
- modified_at str
- Date and time when the namespace was last modified.
- modified_by str
- Account ID of the account that last modified the namespace.
- owner_account_ strid 
- Account ID of the account that owns the namespace.
- type str
- Type of the table.
One of customeroraws.
- version_token str
- Identifier for the current version of table data.
- warehouse_location str
- S3 URI pointing to the S3 Bucket that contains the table data.
- arn String
- ARN of the table.
- createdAt String
- Date and time when the namespace was created.
- createdBy String
- Account ID of the account that created the namespace.
- id String
- The provider-assigned unique ID for this managed resource.
- metadataLocation String
- Location of table metadata.
- modifiedAt String
- Date and time when the namespace was last modified.
- modifiedBy String
- Account ID of the account that last modified the namespace.
- ownerAccount StringId 
- Account ID of the account that owns the namespace.
- type String
- Type of the table.
One of customeroraws.
- versionToken String
- Identifier for the current version of table data.
- warehouseLocation String
- S3 URI pointing to the S3 Bucket that contains the table data.
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,
        created_at: Optional[str] = None,
        created_by: Optional[str] = None,
        format: Optional[str] = None,
        maintenance_configuration: Optional[TableMaintenanceConfigurationArgs] = None,
        metadata_location: Optional[str] = None,
        modified_at: Optional[str] = None,
        modified_by: Optional[str] = None,
        name: Optional[str] = None,
        namespace: Optional[str] = None,
        owner_account_id: Optional[str] = None,
        table_bucket_arn: Optional[str] = None,
        type: Optional[str] = None,
        version_token: Optional[str] = None,
        warehouse_location: Optional[str] = None) -> Tablefunc 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)resources:  _:    type: aws:s3tables:Table    get:      id: ${id}- 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
- ARN of the table.
- CreatedAt string
- Date and time when the namespace was created.
- CreatedBy string
- Account ID of the account that created the namespace.
- Format string
- Format of the table.
Must be ICEBERG.
- MaintenanceConfiguration TableMaintenance Configuration 
- A single table bucket maintenance configuration block.
See maintenance_configurationbelow.
- MetadataLocation string
- Location of table metadata.
- ModifiedAt string
- Date and time when the namespace was last modified.
- ModifiedBy string
- Account ID of the account that last modified the namespace.
- Name string
- Name of the table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number. A full list of table naming rules can be found in the S3 Tables documentation.
- Namespace string
- Name of the namespace for this table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
- OwnerAccount stringId 
- Account ID of the account that owns the namespace.
- TableBucket stringArn 
- ARN referencing the Table Bucket that contains this Namespace. - The following argument is optional: 
- Type string
- Type of the table.
One of customeroraws.
- VersionToken string
- Identifier for the current version of table data.
- WarehouseLocation string
- S3 URI pointing to the S3 Bucket that contains the table data.
- Arn string
- ARN of the table.
- CreatedAt string
- Date and time when the namespace was created.
- CreatedBy string
- Account ID of the account that created the namespace.
- Format string
- Format of the table.
Must be ICEBERG.
- MaintenanceConfiguration TableMaintenance Configuration Args 
- A single table bucket maintenance configuration block.
See maintenance_configurationbelow.
- MetadataLocation string
- Location of table metadata.
- ModifiedAt string
- Date and time when the namespace was last modified.
- ModifiedBy string
- Account ID of the account that last modified the namespace.
- Name string
- Name of the table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number. A full list of table naming rules can be found in the S3 Tables documentation.
- Namespace string
- Name of the namespace for this table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
- OwnerAccount stringId 
- Account ID of the account that owns the namespace.
- TableBucket stringArn 
- ARN referencing the Table Bucket that contains this Namespace. - The following argument is optional: 
- Type string
- Type of the table.
One of customeroraws.
- VersionToken string
- Identifier for the current version of table data.
- WarehouseLocation string
- S3 URI pointing to the S3 Bucket that contains the table data.
- arn String
- ARN of the table.
- createdAt String
- Date and time when the namespace was created.
- createdBy String
- Account ID of the account that created the namespace.
- format String
- Format of the table.
Must be ICEBERG.
- maintenanceConfiguration TableMaintenance Configuration 
- A single table bucket maintenance configuration block.
See maintenance_configurationbelow.
- metadataLocation String
- Location of table metadata.
- modifiedAt String
- Date and time when the namespace was last modified.
- modifiedBy String
- Account ID of the account that last modified the namespace.
- name String
- Name of the table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number. A full list of table naming rules can be found in the S3 Tables documentation.
- namespace String
- Name of the namespace for this table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
- ownerAccount StringId 
- Account ID of the account that owns the namespace.
- tableBucket StringArn 
- ARN referencing the Table Bucket that contains this Namespace. - The following argument is optional: 
- type String
- Type of the table.
One of customeroraws.
- versionToken String
- Identifier for the current version of table data.
- warehouseLocation String
- S3 URI pointing to the S3 Bucket that contains the table data.
- arn string
- ARN of the table.
- createdAt string
- Date and time when the namespace was created.
- createdBy string
- Account ID of the account that created the namespace.
- format string
- Format of the table.
Must be ICEBERG.
- maintenanceConfiguration TableMaintenance Configuration 
- A single table bucket maintenance configuration block.
See maintenance_configurationbelow.
- metadataLocation string
- Location of table metadata.
- modifiedAt string
- Date and time when the namespace was last modified.
- modifiedBy string
- Account ID of the account that last modified the namespace.
- name string
- Name of the table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number. A full list of table naming rules can be found in the S3 Tables documentation.
- namespace string
- Name of the namespace for this table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
- ownerAccount stringId 
- Account ID of the account that owns the namespace.
- tableBucket stringArn 
- ARN referencing the Table Bucket that contains this Namespace. - The following argument is optional: 
- type string
- Type of the table.
One of customeroraws.
- versionToken string
- Identifier for the current version of table data.
- warehouseLocation string
- S3 URI pointing to the S3 Bucket that contains the table data.
- arn str
- ARN of the table.
- created_at str
- Date and time when the namespace was created.
- created_by str
- Account ID of the account that created the namespace.
- format str
- Format of the table.
Must be ICEBERG.
- maintenance_configuration TableMaintenance Configuration Args 
- A single table bucket maintenance configuration block.
See maintenance_configurationbelow.
- metadata_location str
- Location of table metadata.
- modified_at str
- Date and time when the namespace was last modified.
- modified_by str
- Account ID of the account that last modified the namespace.
- name str
- Name of the table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number. A full list of table naming rules can be found in the S3 Tables documentation.
- namespace str
- Name of the namespace for this table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
- owner_account_ strid 
- Account ID of the account that owns the namespace.
- table_bucket_ strarn 
- ARN referencing the Table Bucket that contains this Namespace. - The following argument is optional: 
- type str
- Type of the table.
One of customeroraws.
- version_token str
- Identifier for the current version of table data.
- warehouse_location str
- S3 URI pointing to the S3 Bucket that contains the table data.
- arn String
- ARN of the table.
- createdAt String
- Date and time when the namespace was created.
- createdBy String
- Account ID of the account that created the namespace.
- format String
- Format of the table.
Must be ICEBERG.
- maintenanceConfiguration Property Map
- A single table bucket maintenance configuration block.
See maintenance_configurationbelow.
- metadataLocation String
- Location of table metadata.
- modifiedAt String
- Date and time when the namespace was last modified.
- modifiedBy String
- Account ID of the account that last modified the namespace.
- name String
- Name of the table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number. A full list of table naming rules can be found in the S3 Tables documentation.
- namespace String
- Name of the namespace for this table. Must be between 1 and 255 characters in length. Can consist of lowercase letters, numbers, and underscores, and must begin and end with a lowercase letter or number.
- ownerAccount StringId 
- Account ID of the account that owns the namespace.
- tableBucket StringArn 
- ARN referencing the Table Bucket that contains this Namespace. - The following argument is optional: 
- type String
- Type of the table.
One of customeroraws.
- versionToken String
- Identifier for the current version of table data.
- warehouseLocation String
- S3 URI pointing to the S3 Bucket that contains the table data.
Supporting Types
TableMaintenanceConfiguration, TableMaintenanceConfigurationArgs      
- IcebergCompaction TableMaintenance Configuration Iceberg Compaction 
- A single Iceberg compaction settings block.
See iceberg_compactionbelow.
- IcebergSnapshot TableManagement Maintenance Configuration Iceberg Snapshot Management 
- A single Iceberg snapshot management settings block.
See iceberg_snapshot_managementbelow.
- IcebergCompaction TableMaintenance Configuration Iceberg Compaction 
- A single Iceberg compaction settings block.
See iceberg_compactionbelow.
- IcebergSnapshot TableManagement Maintenance Configuration Iceberg Snapshot Management 
- A single Iceberg snapshot management settings block.
See iceberg_snapshot_managementbelow.
- icebergCompaction TableMaintenance Configuration Iceberg Compaction 
- A single Iceberg compaction settings block.
See iceberg_compactionbelow.
- icebergSnapshot TableManagement Maintenance Configuration Iceberg Snapshot Management 
- A single Iceberg snapshot management settings block.
See iceberg_snapshot_managementbelow.
- icebergCompaction TableMaintenance Configuration Iceberg Compaction 
- A single Iceberg compaction settings block.
See iceberg_compactionbelow.
- icebergSnapshot TableManagement Maintenance Configuration Iceberg Snapshot Management 
- A single Iceberg snapshot management settings block.
See iceberg_snapshot_managementbelow.
- iceberg_compaction TableMaintenance Configuration Iceberg Compaction 
- A single Iceberg compaction settings block.
See iceberg_compactionbelow.
- iceberg_snapshot_ Tablemanagement Maintenance Configuration Iceberg Snapshot Management 
- A single Iceberg snapshot management settings block.
See iceberg_snapshot_managementbelow.
- icebergCompaction Property Map
- A single Iceberg compaction settings block.
See iceberg_compactionbelow.
- icebergSnapshot Property MapManagement 
- A single Iceberg snapshot management settings block.
See iceberg_snapshot_managementbelow.
TableMaintenanceConfigurationIcebergCompaction, TableMaintenanceConfigurationIcebergCompactionArgs          
- Settings
TableMaintenance Configuration Iceberg Compaction Settings 
- Settings for compaction.
See iceberg_compaction.settingsbelow.
- Status string
- Whether the configuration is enabled.
Valid values are enabledanddisabled.
- Settings
TableMaintenance Configuration Iceberg Compaction Settings 
- Settings for compaction.
See iceberg_compaction.settingsbelow.
- Status string
- Whether the configuration is enabled.
Valid values are enabledanddisabled.
- settings
TableMaintenance Configuration Iceberg Compaction Settings 
- Settings for compaction.
See iceberg_compaction.settingsbelow.
- status String
- Whether the configuration is enabled.
Valid values are enabledanddisabled.
- settings
TableMaintenance Configuration Iceberg Compaction Settings 
- Settings for compaction.
See iceberg_compaction.settingsbelow.
- status string
- Whether the configuration is enabled.
Valid values are enabledanddisabled.
- settings
TableMaintenance Configuration Iceberg Compaction Settings 
- Settings for compaction.
See iceberg_compaction.settingsbelow.
- status str
- Whether the configuration is enabled.
Valid values are enabledanddisabled.
- settings Property Map
- Settings for compaction.
See iceberg_compaction.settingsbelow.
- status String
- Whether the configuration is enabled.
Valid values are enabledanddisabled.
TableMaintenanceConfigurationIcebergCompactionSettings, TableMaintenanceConfigurationIcebergCompactionSettingsArgs            
- TargetFile intSize Mb 
- Data objects smaller than this size may be combined with others to improve query performance.
Must be between 64and512.
- TargetFile intSize Mb 
- Data objects smaller than this size may be combined with others to improve query performance.
Must be between 64and512.
- targetFile IntegerSize Mb 
- Data objects smaller than this size may be combined with others to improve query performance.
Must be between 64and512.
- targetFile numberSize Mb 
- Data objects smaller than this size may be combined with others to improve query performance.
Must be between 64and512.
- target_file_ intsize_ mb 
- Data objects smaller than this size may be combined with others to improve query performance.
Must be between 64and512.
- targetFile NumberSize Mb 
- Data objects smaller than this size may be combined with others to improve query performance.
Must be between 64and512.
TableMaintenanceConfigurationIcebergSnapshotManagement, TableMaintenanceConfigurationIcebergSnapshotManagementArgs            
- Settings
TableMaintenance Configuration Iceberg Snapshot Management Settings 
- Settings for snapshot management.
See iceberg_snapshot_management.settingsbelow.
- Status string
- Whether the configuration is enabled.
Valid values are enabledanddisabled.
- Settings
TableMaintenance Configuration Iceberg Snapshot Management Settings 
- Settings for snapshot management.
See iceberg_snapshot_management.settingsbelow.
- Status string
- Whether the configuration is enabled.
Valid values are enabledanddisabled.
- settings
TableMaintenance Configuration Iceberg Snapshot Management Settings 
- Settings for snapshot management.
See iceberg_snapshot_management.settingsbelow.
- status String
- Whether the configuration is enabled.
Valid values are enabledanddisabled.
- settings
TableMaintenance Configuration Iceberg Snapshot Management Settings 
- Settings for snapshot management.
See iceberg_snapshot_management.settingsbelow.
- status string
- Whether the configuration is enabled.
Valid values are enabledanddisabled.
- settings
TableMaintenance Configuration Iceberg Snapshot Management Settings 
- Settings for snapshot management.
See iceberg_snapshot_management.settingsbelow.
- status str
- Whether the configuration is enabled.
Valid values are enabledanddisabled.
- settings Property Map
- Settings for snapshot management.
See iceberg_snapshot_management.settingsbelow.
- status String
- Whether the configuration is enabled.
Valid values are enabledanddisabled.
TableMaintenanceConfigurationIcebergSnapshotManagementSettings, TableMaintenanceConfigurationIcebergSnapshotManagementSettingsArgs              
- MaxSnapshot intAge Hours 
- Snapshots older than this will be marked for deletiion.
Must be at least 1.
- MinSnapshots intTo Keep 
- Minimum number of snapshots to keep.
Must be at least 1.
- MaxSnapshot intAge Hours 
- Snapshots older than this will be marked for deletiion.
Must be at least 1.
- MinSnapshots intTo Keep 
- Minimum number of snapshots to keep.
Must be at least 1.
- maxSnapshot IntegerAge Hours 
- Snapshots older than this will be marked for deletiion.
Must be at least 1.
- minSnapshots IntegerTo Keep 
- Minimum number of snapshots to keep.
Must be at least 1.
- maxSnapshot numberAge Hours 
- Snapshots older than this will be marked for deletiion.
Must be at least 1.
- minSnapshots numberTo Keep 
- Minimum number of snapshots to keep.
Must be at least 1.
- max_snapshot_ intage_ hours 
- Snapshots older than this will be marked for deletiion.
Must be at least 1.
- min_snapshots_ intto_ keep 
- Minimum number of snapshots to keep.
Must be at least 1.
- maxSnapshot NumberAge Hours 
- Snapshots older than this will be marked for deletiion.
Must be at least 1.
- minSnapshots NumberTo Keep 
- Minimum number of snapshots to keep.
Must be at least 1.
Import
Using pulumi import, import S3 Tables Table using the table_bucket_arn, the value of namespace, and the value of name, separated by a semicolon (;). For example:
$ pulumi import aws:s3tables/table:Table example 'arn:aws:s3tables:us-west-2:123456789012:bucket/example-bucket;example-namespace;example-table'
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the awsTerraform Provider.