@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
47 lines (46 loc) • 1.72 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Resource Type definition for AWS::CustomerProfiles::Recommender
*/
export declare function getRecommender(args: GetRecommenderArgs, opts?: pulumi.InvokeOptions): Promise<GetRecommenderResult>;
export interface GetRecommenderArgs {
domainName: string;
recommenderName: string;
}
export interface GetRecommenderResult {
/**
* The timestamp of when the recommender was created.
*/
readonly createdAt?: string;
readonly description?: string;
/**
* The reason for recommender failure.
*/
readonly failureReason?: string;
/**
* The timestamp of when the recommender was last updated.
*/
readonly lastUpdatedAt?: string;
readonly latestRecommenderUpdate?: outputs.customerprofiles.RecommenderUpdate;
/**
* The Amazon Resource Name (ARN) of the recommender.
*/
readonly recommenderArn?: string;
readonly recommenderConfig?: outputs.customerprofiles.RecommenderConfig;
readonly status?: enums.customerprofiles.RecommenderStatus;
/**
* The tags used to organize, track, or control access for this resource.
*/
readonly tags?: outputs.Tag[];
readonly trainingMetrics?: outputs.customerprofiles.RecommenderTrainingMetrics[];
}
/**
* Resource Type definition for AWS::CustomerProfiles::Recommender
*/
export declare function getRecommenderOutput(args: GetRecommenderOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRecommenderResult>;
export interface GetRecommenderOutputArgs {
domainName: pulumi.Input<string>;
recommenderName: pulumi.Input<string>;
}