import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Resource Type definition for AWS::CustomerProfiles::Recommender
 */
export declare class Recommender extends pulumi.CustomResource {
    /**
     * Get an existing Recommender 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): Recommender;
    /**
     * Returns true if the given object is an instance of Recommender.  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 Recommender;
    /**
     * The timestamp of when the recommender was created.
     */
    readonly createdAt: pulumi.Output<string>;
    readonly description: pulumi.Output<string | undefined>;
    readonly domainName: pulumi.Output<string>;
    /**
     * The reason for recommender failure.
     */
    readonly failureReason: pulumi.Output<string>;
    /**
     * The timestamp of when the recommender was last updated.
     */
    readonly lastUpdatedAt: pulumi.Output<string>;
    readonly latestRecommenderUpdate: pulumi.Output<outputs.customerprofiles.RecommenderUpdate>;
    /**
     * The Amazon Resource Name (ARN) of the recommender.
     */
    readonly recommenderArn: pulumi.Output<string>;
    readonly recommenderConfig: pulumi.Output<outputs.customerprofiles.RecommenderConfig | undefined>;
    readonly recommenderName: pulumi.Output<string>;
    readonly recommenderRecipeName: pulumi.Output<string>;
    readonly status: pulumi.Output<enums.customerprofiles.RecommenderStatus>;
    /**
     * The tags used to organize, track, or control access for this resource.
     */
    readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
    readonly trainingMetrics: pulumi.Output<outputs.customerprofiles.RecommenderTrainingMetrics[]>;
    /**
     * Create a Recommender 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: RecommenderArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a Recommender resource.
 */
export interface RecommenderArgs {
    description?: pulumi.Input<string>;
    domainName: pulumi.Input<string>;
    recommenderConfig?: pulumi.Input<inputs.customerprofiles.RecommenderConfigArgs>;
    recommenderName?: pulumi.Input<string>;
    recommenderRecipeName: pulumi.Input<string>;
    /**
     * The tags used to organize, track, or control access for this resource.
     */
    tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
}
