import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for a CloudWatch Observability Admin S3 Table Integration. */ export declare function getS3TableIntegration(args: GetS3TableIntegrationArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetS3TableIntegrationArgs { /** * The ARN of the S3 Table Integration */ arn: string; } export interface GetS3TableIntegrationResult { /** * The ARN of the S3 Table Integration */ readonly arn?: string; /** * The CloudWatch Logs data sources to associate with the S3 Table Integration */ readonly logSources?: outputs.observabilityadmin.S3TableIntegrationLogSource[]; /** * An array of key-value pairs to apply to this resource */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for a CloudWatch Observability Admin S3 Table Integration. */ export declare function getS3TableIntegrationOutput(args: GetS3TableIntegrationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetS3TableIntegrationOutputArgs { /** * The ARN of the S3 Table Integration */ arn: pulumi.Input; }