import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS::Glue::Integration
 */
export declare function getIntegration(args: GetIntegrationArgs, opts?: pulumi.InvokeOptions): Promise<GetIntegrationResult>;
export interface GetIntegrationArgs {
    /**
     * The Amazon Resource Name (ARN) of the integration.
     */
    integrationArn: string;
    /**
     * The name of the integration.
     */
    integrationName: string;
}
export interface GetIntegrationResult {
    /**
     * The time (UTC) when the integration was created.
     */
    readonly createTime?: string;
    /**
     * Selects source tables for the integration using Maxwell filter syntax.
     */
    readonly dataFilter?: string;
    /**
     * A description for the integration.
     */
    readonly description?: string;
    /**
     * The Amazon Resource Name (ARN) of the integration.
     */
    readonly integrationArn?: string;
    /**
     * The status of the integration.
     */
    readonly status?: string;
    /**
     * An array of key-value pairs to apply to this resource.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * Resource Type definition for AWS::Glue::Integration
 */
export declare function getIntegrationOutput(args: GetIntegrationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIntegrationResult>;
export interface GetIntegrationOutputArgs {
    /**
     * The Amazon Resource Name (ARN) of the integration.
     */
    integrationArn: pulumi.Input<string>;
    /**
     * The name of the integration.
     */
    integrationName: pulumi.Input<string>;
}
