import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS::Glue::IntegrationResourceProperty
 */
export declare class IntegrationResourceProperty extends pulumi.CustomResource {
    /**
     * Get an existing IntegrationResourceProperty resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): IntegrationResourceProperty;
    /**
     * Returns true if the given object is an instance of IntegrationResourceProperty.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is IntegrationResourceProperty;
    /**
     * The connection ARN of the source, or the database ARN of the target.
     */
    readonly resourceArn: pulumi.Output<string>;
    /**
     * The integration resource property ARN.
     */
    readonly resourcePropertyArn: pulumi.Output<string>;
    /**
     * The resource properties associated with the integration source.
     */
    readonly sourceProcessingProperties: pulumi.Output<outputs.glue.SourceProcessingPropertiesProperties | undefined>;
    /**
     * An array of key-value pairs to apply to this resource.
     */
    readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
    /**
     * The resource properties associated with the integration target.
     */
    readonly targetProcessingProperties: pulumi.Output<outputs.glue.TargetProcessingPropertiesProperties | undefined>;
    /**
     * Create a IntegrationResourceProperty resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: IntegrationResourcePropertyArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a IntegrationResourceProperty resource.
 */
export interface IntegrationResourcePropertyArgs {
    /**
     * The connection ARN of the source, or the database ARN of the target.
     */
    resourceArn: pulumi.Input<string>;
    /**
     * The resource properties associated with the integration source.
     */
    sourceProcessingProperties?: pulumi.Input<inputs.glue.SourceProcessingPropertiesPropertiesArgs>;
    /**
     * An array of key-value pairs to apply to this resource.
     */
    tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
    /**
     * The resource properties associated with the integration target.
     */
    targetProcessingProperties?: pulumi.Input<inputs.glue.TargetProcessingPropertiesPropertiesArgs>;
}
