import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::S3Tables::TablePolicy */ export declare function getTablePolicy(args: GetTablePolicyArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetTablePolicyArgs { /** * The Amazon Resource Name (ARN) of the table. */ tableArn: string; } export interface GetTablePolicyResult { /** * The namespace to associated with the table. */ readonly namespace?: string; /** * The `JSON` that defines the policy. */ readonly resourcePolicy?: outputs.s3tables.TablePolicyResourcePolicy; /** * The Amazon Resource Name (ARN) of the table bucket that contains the table. */ readonly tableBucketArn?: string; /** * The name of the table. */ readonly tableName?: string; } /** * Resource Type definition for AWS::S3Tables::TablePolicy */ export declare function getTablePolicyOutput(args: GetTablePolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetTablePolicyOutputArgs { /** * The Amazon Resource Name (ARN) of the table. */ tableArn: pulumi.Input; }