UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

57 lines (56 loc) 1.65 kB
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<GetTableResult>; 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<GetTableResult>; export interface GetTableOutputArgs { /** * The Amazon Resource Name (ARN) of the table. */ tableArn: pulumi.Input<string>; }