import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for AWS::MSK::Topic */ export declare function getTopic(args: GetTopicArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetTopicArgs { /** * The Amazon Resource Name (ARN) of the topic */ topicArn: string; } export interface GetTopicResult { /** * The number of partitions for the topic */ readonly partitionCount?: number; /** * The Amazon Resource Name (ARN) of the topic */ readonly topicArn?: string; } /** * Resource Type definition for AWS::MSK::Topic */ export declare function getTopicOutput(args: GetTopicOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetTopicOutputArgs { /** * The Amazon Resource Name (ARN) of the topic */ topicArn: pulumi.Input; }