import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::S3Tables::Table */ export declare function getTable(args: GetTableArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetTableArgs { /** * The Amazon Resource Name (ARN) of the table. */ tableArn: string; } export interface GetTableResult { /** * Contains details about the compaction settings for an Iceberg table. */ readonly compaction?: outputs.s3tables.TableCompaction; /** * The name of the namespace. */ readonly namespace?: string; /** * Contains details about the Iceberg snapshot management settings for the table. */ readonly snapshotManagement?: outputs.s3tables.TableSnapshotManagement; /** * The Amazon Resource Name (ARN) of the table. */ readonly tableArn?: string; /** * The name for the table. */ readonly tableName?: string; /** * User tags (key-value pairs) to associate with the table. */ readonly tags?: outputs.Tag[]; /** * The version token of the table. */ readonly versionToken?: string; /** * The warehouse location of the table. */ readonly warehouseLocation?: string; } /** * Resource Type definition for AWS::S3Tables::Table */ export declare function getTableOutput(args: GetTableOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetTableOutputArgs { /** * The Amazon Resource Name (ARN) of the table. */ tableArn: pulumi.Input; }