aws.s3tables.Table
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/v7/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
With Metadata Schema
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",
metadata: {
iceberg: {
schema: {
fields: [
{
name: "id",
type: "long",
required: true,
},
{
name: "name",
type: "string",
required: true,
},
{
name: "created_at",
type: "timestamp",
required: false,
},
{
name: "price",
type: "decimal(10,2)",
required: false,
},
],
},
},
},
});
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",
metadata={
"iceberg": {
"schema": {
"fields": [
{
"name": "id",
"type": "long",
"required": True,
},
{
"name": "name",
"type": "string",
"required": True,
},
{
"name": "created_at",
"type": "timestamp",
"required": False,
},
{
"name": "price",
"type": "decimal(10,2)",
"required": False,
},
],
},
},
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/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"),
Metadata: &s3tables.TableMetadataArgs{
Iceberg: &s3tables.TableMetadataIcebergArgs{
Schema: &s3tables.TableMetadataIcebergSchemaArgs{
Fields: s3tables.TableMetadataIcebergSchemaFieldArray{
&s3tables.TableMetadataIcebergSchemaFieldArgs{
Name: pulumi.String("id"),
Type: pulumi.String("long"),
Required: pulumi.Bool(true),
},
&s3tables.TableMetadataIcebergSchemaFieldArgs{
Name: pulumi.String("name"),
Type: pulumi.String("string"),
Required: pulumi.Bool(true),
},
&s3tables.TableMetadataIcebergSchemaFieldArgs{
Name: pulumi.String("created_at"),
Type: pulumi.String("timestamp"),
Required: pulumi.Bool(false),
},
&s3tables.TableMetadataIcebergSchemaFieldArgs{
Name: pulumi.String("price"),
Type: pulumi.String("decimal(10,2)"),
Required: pulumi.Bool(false),
},
},
},
},
},
})
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",
Metadata = new Aws.S3Tables.Inputs.TableMetadataArgs
{
Iceberg = new Aws.S3Tables.Inputs.TableMetadataIcebergArgs
{
Schema = new Aws.S3Tables.Inputs.TableMetadataIcebergSchemaArgs
{
Fields = new[]
{
new Aws.S3Tables.Inputs.TableMetadataIcebergSchemaFieldArgs
{
Name = "id",
Type = "long",
Required = true,
},
new Aws.S3Tables.Inputs.TableMetadataIcebergSchemaFieldArgs
{
Name = "name",
Type = "string",
Required = true,
},
new Aws.S3Tables.Inputs.TableMetadataIcebergSchemaFieldArgs
{
Name = "created_at",
Type = "timestamp",
Required = false,
},
new Aws.S3Tables.Inputs.TableMetadataIcebergSchemaFieldArgs
{
Name = "price",
Type = "decimal(10,2)",
Required = false,
},
},
},
},
},
});
});
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 com.pulumi.aws.s3tables.inputs.TableMetadataArgs;
import com.pulumi.aws.s3tables.inputs.TableMetadataIcebergArgs;
import com.pulumi.aws.s3tables.inputs.TableMetadataIcebergSchemaArgs;
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")
.metadata(TableMetadataArgs.builder()
.iceberg(TableMetadataIcebergArgs.builder()
.schema(TableMetadataIcebergSchemaArgs.builder()
.fields(
TableMetadataIcebergSchemaFieldArgs.builder()
.name("id")
.type("long")
.required(true)
.build(),
TableMetadataIcebergSchemaFieldArgs.builder()
.name("name")
.type("string")
.required(true)
.build(),
TableMetadataIcebergSchemaFieldArgs.builder()
.name("created_at")
.type("timestamp")
.required(false)
.build(),
TableMetadataIcebergSchemaFieldArgs.builder()
.name("price")
.type("decimal(10,2)")
.required(false)
.build())
.build())
.build())
.build())
.build());
}
}
resources:
example:
type: aws:s3tables:Table
properties:
name: example_table
namespace: ${exampleNamespace.namespace}
tableBucketArn: ${exampleNamespace.tableBucketArn}
format: ICEBERG
metadata:
iceberg:
schema:
fields:
- name: id
type: long
required: true
- name: name
type: string
required: true
- name: created_at
type: timestamp
required: false
- name: price
type: decimal(10,2)
required: false
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,
encryption_configuration: Optional[TableEncryptionConfigurationArgs] = None,
maintenance_configuration: Optional[TableMaintenanceConfigurationArgs] = None,
metadata: Optional[TableMetadataArgs] = None,
name: Optional[str] = None,
region: 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",
EncryptionConfiguration = new Aws.S3Tables.Inputs.TableEncryptionConfigurationArgs
{
KmsKeyArn = "string",
SseAlgorithm = "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",
},
},
Metadata = new Aws.S3Tables.Inputs.TableMetadataArgs
{
Iceberg = new Aws.S3Tables.Inputs.TableMetadataIcebergArgs
{
Schema = new Aws.S3Tables.Inputs.TableMetadataIcebergSchemaArgs
{
Fields = new[]
{
new Aws.S3Tables.Inputs.TableMetadataIcebergSchemaFieldArgs
{
Name = "string",
Type = "string",
Required = false,
},
},
},
},
},
Name = "string",
Region = "string",
});
example, err := s3tables.NewTable(ctx, "exampletableResourceResourceFromS3tablestable", &s3tables.TableArgs{
Format: pulumi.String("string"),
Namespace: pulumi.String("string"),
TableBucketArn: pulumi.String("string"),
EncryptionConfiguration: &s3tables.TableEncryptionConfigurationArgs{
KmsKeyArn: pulumi.String("string"),
SseAlgorithm: 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"),
},
},
Metadata: &s3tables.TableMetadataArgs{
Iceberg: &s3tables.TableMetadataIcebergArgs{
Schema: &s3tables.TableMetadataIcebergSchemaArgs{
Fields: s3tables.TableMetadataIcebergSchemaFieldArray{
&s3tables.TableMetadataIcebergSchemaFieldArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
Required: pulumi.Bool(false),
},
},
},
},
},
Name: pulumi.String("string"),
Region: pulumi.String("string"),
})
var exampletableResourceResourceFromS3tablestable = new com.pulumi.aws.s3tables.Table("exampletableResourceResourceFromS3tablestable", com.pulumi.aws.s3tables.TableArgs.builder()
.format("string")
.namespace("string")
.tableBucketArn("string")
.encryptionConfiguration(TableEncryptionConfigurationArgs.builder()
.kmsKeyArn("string")
.sseAlgorithm("string")
.build())
.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())
.metadata(TableMetadataArgs.builder()
.iceberg(TableMetadataIcebergArgs.builder()
.schema(TableMetadataIcebergSchemaArgs.builder()
.fields(TableMetadataIcebergSchemaFieldArgs.builder()
.name("string")
.type("string")
.required(false)
.build())
.build())
.build())
.build())
.name("string")
.region("string")
.build());
exampletable_resource_resource_from_s3tablestable = aws.s3tables.Table("exampletableResourceResourceFromS3tablestable",
format="string",
namespace="string",
table_bucket_arn="string",
encryption_configuration={
"kms_key_arn": "string",
"sse_algorithm": "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",
},
},
metadata={
"iceberg": {
"schema": {
"fields": [{
"name": "string",
"type": "string",
"required": False,
}],
},
},
},
name="string",
region="string")
const exampletableResourceResourceFromS3tablestable = new aws.s3tables.Table("exampletableResourceResourceFromS3tablestable", {
format: "string",
namespace: "string",
tableBucketArn: "string",
encryptionConfiguration: {
kmsKeyArn: "string",
sseAlgorithm: "string",
},
maintenanceConfiguration: {
icebergCompaction: {
settings: {
targetFileSizeMb: 0,
},
status: "string",
},
icebergSnapshotManagement: {
settings: {
maxSnapshotAgeHours: 0,
minSnapshotsToKeep: 0,
},
status: "string",
},
},
metadata: {
iceberg: {
schema: {
fields: [{
name: "string",
type: "string",
required: false,
}],
},
},
},
name: "string",
region: "string",
});
type: aws:s3tables:Table
properties:
encryptionConfiguration:
kmsKeyArn: string
sseAlgorithm: string
format: string
maintenanceConfiguration:
icebergCompaction:
settings:
targetFileSizeMb: 0
status: string
icebergSnapshotManagement:
settings:
maxSnapshotAgeHours: 0
minSnapshotsToKeep: 0
status: string
metadata:
iceberg:
schema:
fields:
- name: string
required: false
type: string
name: string
namespace: string
region: 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.
- Table
Bucket stringArn ARN referencing the Table Bucket that contains this Namespace.
The following arguments are optional:
- Encryption
Configuration TableEncryption Configuration - A single table bucket encryption configuration object.
See
encryption_configurationbelow. - Maintenance
Configuration TableMaintenance Configuration - A single table bucket maintenance configuration object.
See
maintenance_configurationbelow. - Metadata
Table
Metadata - Contains details about the table metadata. This configuration specifies the metadata format and schema for the table. Currently only supports Iceberg format.
See
metadatabelow. - 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.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- 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.
- Table
Bucket stringArn ARN referencing the Table Bucket that contains this Namespace.
The following arguments are optional:
- Encryption
Configuration TableEncryption Configuration Args - A single table bucket encryption configuration object.
See
encryption_configurationbelow. - Maintenance
Configuration TableMaintenance Configuration Args - A single table bucket maintenance configuration object.
See
maintenance_configurationbelow. - Metadata
Table
Metadata Args - Contains details about the table metadata. This configuration specifies the metadata format and schema for the table. Currently only supports Iceberg format.
See
metadatabelow. - 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.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- 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.
- table
Bucket StringArn ARN referencing the Table Bucket that contains this Namespace.
The following arguments are optional:
- encryption
Configuration TableEncryption Configuration - A single table bucket encryption configuration object.
See
encryption_configurationbelow. - maintenance
Configuration TableMaintenance Configuration - A single table bucket maintenance configuration object.
See
maintenance_configurationbelow. - metadata
Table
Metadata - Contains details about the table metadata. This configuration specifies the metadata format and schema for the table. Currently only supports Iceberg format.
See
metadatabelow. - 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.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- 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.
- table
Bucket stringArn ARN referencing the Table Bucket that contains this Namespace.
The following arguments are optional:
- encryption
Configuration TableEncryption Configuration - A single table bucket encryption configuration object.
See
encryption_configurationbelow. - maintenance
Configuration TableMaintenance Configuration - A single table bucket maintenance configuration object.
See
maintenance_configurationbelow. - metadata
Table
Metadata - Contains details about the table metadata. This configuration specifies the metadata format and schema for the table. Currently only supports Iceberg format.
See
metadatabelow. - 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.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- 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 arguments are optional:
- encryption_
configuration TableEncryption Configuration Args - A single table bucket encryption configuration object.
See
encryption_configurationbelow. - maintenance_
configuration TableMaintenance Configuration Args - A single table bucket maintenance configuration object.
See
maintenance_configurationbelow. - metadata
Table
Metadata Args - Contains details about the table metadata. This configuration specifies the metadata format and schema for the table. Currently only supports Iceberg format.
See
metadatabelow. - 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.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- 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.
- table
Bucket StringArn ARN referencing the Table Bucket that contains this Namespace.
The following arguments are optional:
- encryption
Configuration Property Map - A single table bucket encryption configuration object.
See
encryption_configurationbelow. - maintenance
Configuration Property Map - A single table bucket maintenance configuration object.
See
maintenance_configurationbelow. - metadata Property Map
- Contains details about the table metadata. This configuration specifies the metadata format and schema for the table. Currently only supports Iceberg format.
See
metadatabelow. - 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.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
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.
- Created
At string - Date and time when the namespace was created.
- Created
By string - Account ID of the account that created the namespace.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metadata
Location string - Location of table metadata.
- Modified
At string - Date and time when the namespace was last modified.
- Modified
By string - Account ID of the account that last modified the namespace.
- Owner
Account stringId - Account ID of the account that owns the namespace.
- Type string
- Type of the table.
One of
customeroraws. - Version
Token string - Identifier for the current version of table data.
- Warehouse
Location string - S3 URI pointing to the S3 Bucket that contains the table data.
- Arn string
- ARN of the table.
- Created
At string - Date and time when the namespace was created.
- Created
By string - Account ID of the account that created the namespace.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metadata
Location string - Location of table metadata.
- Modified
At string - Date and time when the namespace was last modified.
- Modified
By string - Account ID of the account that last modified the namespace.
- Owner
Account stringId - Account ID of the account that owns the namespace.
- Type string
- Type of the table.
One of
customeroraws. - Version
Token string - Identifier for the current version of table data.
- Warehouse
Location string - S3 URI pointing to the S3 Bucket that contains the table data.
- arn String
- ARN of the table.
- created
At String - Date and time when the namespace was created.
- created
By String - Account ID of the account that created the namespace.
- id String
- The provider-assigned unique ID for this managed resource.
- metadata
Location String - Location of table metadata.
- modified
At String - Date and time when the namespace was last modified.
- modified
By String - Account ID of the account that last modified the namespace.
- owner
Account StringId - Account ID of the account that owns the namespace.
- type String
- Type of the table.
One of
customeroraws. - version
Token String - Identifier for the current version of table data.
- warehouse
Location String - S3 URI pointing to the S3 Bucket that contains the table data.
- arn string
- ARN of the table.
- created
At string - Date and time when the namespace was created.
- created
By string - Account ID of the account that created the namespace.
- id string
- The provider-assigned unique ID for this managed resource.
- metadata
Location string - Location of table metadata.
- modified
At string - Date and time when the namespace was last modified.
- modified
By string - Account ID of the account that last modified the namespace.
- owner
Account stringId - Account ID of the account that owns the namespace.
- type string
- Type of the table.
One of
customeroraws. - version
Token string - Identifier for the current version of table data.
- warehouse
Location 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.
- created
At String - Date and time when the namespace was created.
- created
By String - Account ID of the account that created the namespace.
- id String
- The provider-assigned unique ID for this managed resource.
- metadata
Location String - Location of table metadata.
- modified
At String - Date and time when the namespace was last modified.
- modified
By String - Account ID of the account that last modified the namespace.
- owner
Account StringId - Account ID of the account that owns the namespace.
- type String
- Type of the table.
One of
customeroraws. - version
Token String - Identifier for the current version of table data.
- warehouse
Location 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,
encryption_configuration: Optional[TableEncryptionConfigurationArgs] = None,
format: Optional[str] = None,
maintenance_configuration: Optional[TableMaintenanceConfigurationArgs] = None,
metadata: Optional[TableMetadataArgs] = 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,
region: 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.
- Created
At string - Date and time when the namespace was created.
- Created
By string - Account ID of the account that created the namespace.
- Encryption
Configuration TableEncryption Configuration - A single table bucket encryption configuration object.
See
encryption_configurationbelow. - Format string
- Format of the table.
Must be
ICEBERG. - Maintenance
Configuration TableMaintenance Configuration - A single table bucket maintenance configuration object.
See
maintenance_configurationbelow. - Metadata
Table
Metadata - Contains details about the table metadata. This configuration specifies the metadata format and schema for the table. Currently only supports Iceberg format.
See
metadatabelow. - Metadata
Location string - Location of table metadata.
- Modified
At string - Date and time when the namespace was last modified.
- Modified
By 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.
- Owner
Account stringId - Account ID of the account that owns the namespace.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Table
Bucket stringArn ARN referencing the Table Bucket that contains this Namespace.
The following arguments are optional:
- Type string
- Type of the table.
One of
customeroraws. - Version
Token string - Identifier for the current version of table data.
- Warehouse
Location string - S3 URI pointing to the S3 Bucket that contains the table data.
- Arn string
- ARN of the table.
- Created
At string - Date and time when the namespace was created.
- Created
By string - Account ID of the account that created the namespace.
- Encryption
Configuration TableEncryption Configuration Args - A single table bucket encryption configuration object.
See
encryption_configurationbelow. - Format string
- Format of the table.
Must be
ICEBERG. - Maintenance
Configuration TableMaintenance Configuration Args - A single table bucket maintenance configuration object.
See
maintenance_configurationbelow. - Metadata
Table
Metadata Args - Contains details about the table metadata. This configuration specifies the metadata format and schema for the table. Currently only supports Iceberg format.
See
metadatabelow. - Metadata
Location string - Location of table metadata.
- Modified
At string - Date and time when the namespace was last modified.
- Modified
By 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.
- Owner
Account stringId - Account ID of the account that owns the namespace.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Table
Bucket stringArn ARN referencing the Table Bucket that contains this Namespace.
The following arguments are optional:
- Type string
- Type of the table.
One of
customeroraws. - Version
Token string - Identifier for the current version of table data.
- Warehouse
Location string - S3 URI pointing to the S3 Bucket that contains the table data.
- arn String
- ARN of the table.
- created
At String - Date and time when the namespace was created.
- created
By String - Account ID of the account that created the namespace.
- encryption
Configuration TableEncryption Configuration - A single table bucket encryption configuration object.
See
encryption_configurationbelow. - format String
- Format of the table.
Must be
ICEBERG. - maintenance
Configuration TableMaintenance Configuration - A single table bucket maintenance configuration object.
See
maintenance_configurationbelow. - metadata
Table
Metadata - Contains details about the table metadata. This configuration specifies the metadata format and schema for the table. Currently only supports Iceberg format.
See
metadatabelow. - metadata
Location String - Location of table metadata.
- modified
At String - Date and time when the namespace was last modified.
- modified
By 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.
- owner
Account StringId - Account ID of the account that owns the namespace.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- table
Bucket StringArn ARN referencing the Table Bucket that contains this Namespace.
The following arguments are optional:
- type String
- Type of the table.
One of
customeroraws. - version
Token String - Identifier for the current version of table data.
- warehouse
Location String - S3 URI pointing to the S3 Bucket that contains the table data.
- arn string
- ARN of the table.
- created
At string - Date and time when the namespace was created.
- created
By string - Account ID of the account that created the namespace.
- encryption
Configuration TableEncryption Configuration - A single table bucket encryption configuration object.
See
encryption_configurationbelow. - format string
- Format of the table.
Must be
ICEBERG. - maintenance
Configuration TableMaintenance Configuration - A single table bucket maintenance configuration object.
See
maintenance_configurationbelow. - metadata
Table
Metadata - Contains details about the table metadata. This configuration specifies the metadata format and schema for the table. Currently only supports Iceberg format.
See
metadatabelow. - metadata
Location string - Location of table metadata.
- modified
At string - Date and time when the namespace was last modified.
- modified
By 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.
- owner
Account stringId - Account ID of the account that owns the namespace.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- table
Bucket stringArn ARN referencing the Table Bucket that contains this Namespace.
The following arguments are optional:
- type string
- Type of the table.
One of
customeroraws. - version
Token string - Identifier for the current version of table data.
- warehouse
Location 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.
- encryption_
configuration TableEncryption Configuration Args - A single table bucket encryption configuration object.
See
encryption_configurationbelow. - format str
- Format of the table.
Must be
ICEBERG. - maintenance_
configuration TableMaintenance Configuration Args - A single table bucket maintenance configuration object.
See
maintenance_configurationbelow. - metadata
Table
Metadata Args - Contains details about the table metadata. This configuration specifies the metadata format and schema for the table. Currently only supports Iceberg format.
See
metadatabelow. - 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.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- table_
bucket_ strarn ARN referencing the Table Bucket that contains this Namespace.
The following arguments are 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.
- created
At String - Date and time when the namespace was created.
- created
By String - Account ID of the account that created the namespace.
- encryption
Configuration Property Map - A single table bucket encryption configuration object.
See
encryption_configurationbelow. - format String
- Format of the table.
Must be
ICEBERG. - maintenance
Configuration Property Map - A single table bucket maintenance configuration object.
See
maintenance_configurationbelow. - metadata Property Map
- Contains details about the table metadata. This configuration specifies the metadata format and schema for the table. Currently only supports Iceberg format.
See
metadatabelow. - metadata
Location String - Location of table metadata.
- modified
At String - Date and time when the namespace was last modified.
- modified
By 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.
- owner
Account StringId - Account ID of the account that owns the namespace.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- table
Bucket StringArn ARN referencing the Table Bucket that contains this Namespace.
The following arguments are optional:
- type String
- Type of the table.
One of
customeroraws. - version
Token String - Identifier for the current version of table data.
- warehouse
Location String - S3 URI pointing to the S3 Bucket that contains the table data.
Supporting Types
TableEncryptionConfiguration, TableEncryptionConfigurationArgs
- Kms
Key stringArn - The ARN of a KMS Key to be used with
aws:kmssse_algorithm - Sse
Algorithm string - One of
aws:kmsorAES256
- Kms
Key stringArn - The ARN of a KMS Key to be used with
aws:kmssse_algorithm - Sse
Algorithm string - One of
aws:kmsorAES256
- kms
Key StringArn - The ARN of a KMS Key to be used with
aws:kmssse_algorithm - sse
Algorithm String - One of
aws:kmsorAES256
- kms
Key stringArn - The ARN of a KMS Key to be used with
aws:kmssse_algorithm - sse
Algorithm string - One of
aws:kmsorAES256
- kms_
key_ strarn - The ARN of a KMS Key to be used with
aws:kmssse_algorithm - sse_
algorithm str - One of
aws:kmsorAES256
- kms
Key StringArn - The ARN of a KMS Key to be used with
aws:kmssse_algorithm - sse
Algorithm String - One of
aws:kmsorAES256
TableMaintenanceConfiguration, TableMaintenanceConfigurationArgs
- Iceberg
Compaction TableMaintenance Configuration Iceberg Compaction - A single Iceberg compaction settings object.
See
iceberg_compactionbelow. - Iceberg
Snapshot TableManagement Maintenance Configuration Iceberg Snapshot Management - A single Iceberg snapshot management settings object.
See
iceberg_snapshot_managementbelow.
- Iceberg
Compaction TableMaintenance Configuration Iceberg Compaction - A single Iceberg compaction settings object.
See
iceberg_compactionbelow. - Iceberg
Snapshot TableManagement Maintenance Configuration Iceberg Snapshot Management - A single Iceberg snapshot management settings object.
See
iceberg_snapshot_managementbelow.
- iceberg
Compaction TableMaintenance Configuration Iceberg Compaction - A single Iceberg compaction settings object.
See
iceberg_compactionbelow. - iceberg
Snapshot TableManagement Maintenance Configuration Iceberg Snapshot Management - A single Iceberg snapshot management settings object.
See
iceberg_snapshot_managementbelow.
- iceberg
Compaction TableMaintenance Configuration Iceberg Compaction - A single Iceberg compaction settings object.
See
iceberg_compactionbelow. - iceberg
Snapshot TableManagement Maintenance Configuration Iceberg Snapshot Management - A single Iceberg snapshot management settings object.
See
iceberg_snapshot_managementbelow.
- iceberg_
compaction TableMaintenance Configuration Iceberg Compaction - A single Iceberg compaction settings object.
See
iceberg_compactionbelow. - iceberg_
snapshot_ Tablemanagement Maintenance Configuration Iceberg Snapshot Management - A single Iceberg snapshot management settings object.
See
iceberg_snapshot_managementbelow.
- iceberg
Compaction Property Map - A single Iceberg compaction settings object.
See
iceberg_compactionbelow. - iceberg
Snapshot Property MapManagement - A single Iceberg snapshot management settings object.
See
iceberg_snapshot_managementbelow.
TableMaintenanceConfigurationIcebergCompaction, TableMaintenanceConfigurationIcebergCompactionArgs
- Settings
Table
Maintenance Configuration Iceberg Compaction Settings - Settings object for compaction.
See
iceberg_compaction.settingsbelow. - Status string
- Whether the configuration is enabled.
Valid values are
enabledanddisabled.
- Settings
Table
Maintenance Configuration Iceberg Compaction Settings - Settings object for compaction.
See
iceberg_compaction.settingsbelow. - Status string
- Whether the configuration is enabled.
Valid values are
enabledanddisabled.
- settings
Table
Maintenance Configuration Iceberg Compaction Settings - Settings object for compaction.
See
iceberg_compaction.settingsbelow. - status String
- Whether the configuration is enabled.
Valid values are
enabledanddisabled.
- settings
Table
Maintenance Configuration Iceberg Compaction Settings - Settings object for compaction.
See
iceberg_compaction.settingsbelow. - status string
- Whether the configuration is enabled.
Valid values are
enabledanddisabled.
- settings
Table
Maintenance Configuration Iceberg Compaction Settings - Settings object for compaction.
See
iceberg_compaction.settingsbelow. - status str
- Whether the configuration is enabled.
Valid values are
enabledanddisabled.
- settings Property Map
- Settings object for compaction.
See
iceberg_compaction.settingsbelow. - status String
- Whether the configuration is enabled.
Valid values are
enabledanddisabled.
TableMaintenanceConfigurationIcebergCompactionSettings, TableMaintenanceConfigurationIcebergCompactionSettingsArgs
- Target
File intSize 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.
- target
File IntegerSize Mb - Data objects smaller than this size may be combined with others to improve query performance.
Must be between
64and512.
- target
File 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.
- target
File NumberSize Mb - Data objects smaller than this size may be combined with others to improve query performance.
Must be between
64and512.
TableMaintenanceConfigurationIcebergSnapshotManagement, TableMaintenanceConfigurationIcebergSnapshotManagementArgs
- Settings
Table
Maintenance Configuration Iceberg Snapshot Management Settings - Settings object for snapshot management.
See
iceberg_snapshot_management.settingsbelow. - Status string
- Whether the configuration is enabled.
Valid values are
enabledanddisabled.
- Settings
Table
Maintenance Configuration Iceberg Snapshot Management Settings - Settings object for snapshot management.
See
iceberg_snapshot_management.settingsbelow. - Status string
- Whether the configuration is enabled.
Valid values are
enabledanddisabled.
- settings
Table
Maintenance Configuration Iceberg Snapshot Management Settings - Settings object for snapshot management.
See
iceberg_snapshot_management.settingsbelow. - status String
- Whether the configuration is enabled.
Valid values are
enabledanddisabled.
- settings
Table
Maintenance Configuration Iceberg Snapshot Management Settings - Settings object for snapshot management.
See
iceberg_snapshot_management.settingsbelow. - status string
- Whether the configuration is enabled.
Valid values are
enabledanddisabled.
- settings
Table
Maintenance Configuration Iceberg Snapshot Management Settings - Settings object for snapshot management.
See
iceberg_snapshot_management.settingsbelow. - status str
- Whether the configuration is enabled.
Valid values are
enabledanddisabled.
- settings Property Map
- Settings object for snapshot management.
See
iceberg_snapshot_management.settingsbelow. - status String
- Whether the configuration is enabled.
Valid values are
enabledanddisabled.
TableMaintenanceConfigurationIcebergSnapshotManagementSettings, TableMaintenanceConfigurationIcebergSnapshotManagementSettingsArgs
- 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.
- 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.
- max
Snapshot IntegerAge Hours - Snapshots older than this will be marked for deletiion.
Must be at least
1. - min
Snapshots IntegerTo Keep - Minimum number of snapshots to keep.
Must be at least
1.
- max
Snapshot numberAge Hours - Snapshots older than this will be marked for deletiion.
Must be at least
1. - min
Snapshots 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.
- max
Snapshot NumberAge Hours - Snapshots older than this will be marked for deletiion.
Must be at least
1. - min
Snapshots NumberTo Keep - Minimum number of snapshots to keep.
Must be at least
1.
TableMetadata, TableMetadataArgs
- Iceberg
Table
Metadata Iceberg - Contains details about the metadata for an Iceberg table. This block defines the schema structure for the Apache Iceberg table format.
See
icebergbelow.
- Iceberg
Table
Metadata Iceberg - Contains details about the metadata for an Iceberg table. This block defines the schema structure for the Apache Iceberg table format.
See
icebergbelow.
- iceberg
Table
Metadata Iceberg - Contains details about the metadata for an Iceberg table. This block defines the schema structure for the Apache Iceberg table format.
See
icebergbelow.
- iceberg
Table
Metadata Iceberg - Contains details about the metadata for an Iceberg table. This block defines the schema structure for the Apache Iceberg table format.
See
icebergbelow.
- iceberg
Table
Metadata Iceberg - Contains details about the metadata for an Iceberg table. This block defines the schema structure for the Apache Iceberg table format.
See
icebergbelow.
- iceberg Property Map
- Contains details about the metadata for an Iceberg table. This block defines the schema structure for the Apache Iceberg table format.
See
icebergbelow.
TableMetadataIceberg, TableMetadataIcebergArgs
- Schema
Table
Metadata Iceberg Schema - Schema configuration for the Iceberg table.
See
schemabelow.
- Schema
Table
Metadata Iceberg Schema - Schema configuration for the Iceberg table.
See
schemabelow.
- schema
Table
Metadata Iceberg Schema - Schema configuration for the Iceberg table.
See
schemabelow.
- schema
Table
Metadata Iceberg Schema - Schema configuration for the Iceberg table.
See
schemabelow.
- schema
Table
Metadata Iceberg Schema - Schema configuration for the Iceberg table.
See
schemabelow.
- schema Property Map
- Schema configuration for the Iceberg table.
See
schemabelow.
TableMetadataIcebergSchema, TableMetadataIcebergSchemaArgs
- Fields
List<Table
Metadata Iceberg Schema Field> - List of schema fields for the Iceberg table. Each field defines a column in the table schema.
See
fieldbelow.
- Fields
[]Table
Metadata Iceberg Schema Field - List of schema fields for the Iceberg table. Each field defines a column in the table schema.
See
fieldbelow.
- fields
List<Table
Metadata Iceberg Schema Field> - List of schema fields for the Iceberg table. Each field defines a column in the table schema.
See
fieldbelow.
- fields
Table
Metadata Iceberg Schema Field[] - List of schema fields for the Iceberg table. Each field defines a column in the table schema.
See
fieldbelow.
- fields
Sequence[Table
Metadata Iceberg Schema Field] - List of schema fields for the Iceberg table. Each field defines a column in the table schema.
See
fieldbelow.
- fields List<Property Map>
- List of schema fields for the Iceberg table. Each field defines a column in the table schema.
See
fieldbelow.
TableMetadataIcebergSchemaField, TableMetadataIcebergSchemaFieldArgs
- Name string
- The name of the field.
- Type string
- The field type. S3 Tables supports all Apache Iceberg primitive types including:
boolean,int,long,float,double,decimal(precision,scale),date,time,timestamp,timestamptz,string,uuid,fixed(length),binary. - Required bool
- A Boolean value that specifies whether values are required for each row in this field. Defaults to
false.
- Name string
- The name of the field.
- Type string
- The field type. S3 Tables supports all Apache Iceberg primitive types including:
boolean,int,long,float,double,decimal(precision,scale),date,time,timestamp,timestamptz,string,uuid,fixed(length),binary. - Required bool
- A Boolean value that specifies whether values are required for each row in this field. Defaults to
false.
- name String
- The name of the field.
- type String
- The field type. S3 Tables supports all Apache Iceberg primitive types including:
boolean,int,long,float,double,decimal(precision,scale),date,time,timestamp,timestamptz,string,uuid,fixed(length),binary. - required Boolean
- A Boolean value that specifies whether values are required for each row in this field. Defaults to
false.
- name string
- The name of the field.
- type string
- The field type. S3 Tables supports all Apache Iceberg primitive types including:
boolean,int,long,float,double,decimal(precision,scale),date,time,timestamp,timestamptz,string,uuid,fixed(length),binary. - required boolean
- A Boolean value that specifies whether values are required for each row in this field. Defaults to
false.
- name str
- The name of the field.
- type str
- The field type. S3 Tables supports all Apache Iceberg primitive types including:
boolean,int,long,float,double,decimal(precision,scale),date,time,timestamp,timestamptz,string,uuid,fixed(length),binary. - required bool
- A Boolean value that specifies whether values are required for each row in this field. Defaults to
false.
- name String
- The name of the field.
- type String
- The field type. S3 Tables supports all Apache Iceberg primitive types including:
boolean,int,long,float,double,decimal(precision,scale),date,time,timestamp,timestamptz,string,uuid,fixed(length),binary. - required Boolean
- A Boolean value that specifies whether values are required for each row in this field. Defaults to
false.
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.
