import * as pulumi from "@pulumi/pulumi";
import * as enums from "../types/enums";
/**
 * Resource Type definition for AWS::S3Files::MountTarget
 */
export declare class MountTarget extends pulumi.CustomResource {
    /**
     * Get an existing MountTarget 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): MountTarget;
    /**
     * Returns true if the given object is an instance of MountTarget.  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 MountTarget;
    readonly availabilityZoneId: pulumi.Output<string>;
    readonly fileSystemId: pulumi.Output<string>;
    readonly ipAddressType: pulumi.Output<enums.s3files.MountTargetIpAddressType | undefined>;
    readonly ipv4Address: pulumi.Output<string | undefined>;
    readonly ipv6Address: pulumi.Output<string | undefined>;
    readonly mountTargetId: pulumi.Output<string>;
    readonly networkInterfaceId: pulumi.Output<string>;
    readonly ownerId: pulumi.Output<string>;
    readonly securityGroups: pulumi.Output<string[] | undefined>;
    readonly status: pulumi.Output<enums.s3files.MountTargetStatus>;
    readonly statusMessage: pulumi.Output<string>;
    readonly subnetId: pulumi.Output<string>;
    readonly vpcId: pulumi.Output<string>;
    /**
     * Create a MountTarget 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: MountTargetArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a MountTarget resource.
 */
export interface MountTargetArgs {
    fileSystemId: pulumi.Input<string>;
    ipAddressType?: pulumi.Input<enums.s3files.MountTargetIpAddressType>;
    ipv4Address?: pulumi.Input<string>;
    ipv6Address?: pulumi.Input<string>;
    securityGroups?: pulumi.Input<pulumi.Input<string>[]>;
    subnetId: pulumi.Input<string>;
}
