@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)
28 lines (27 loc) • 849 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource schema for AWS::Personalize::Solution.
*/
export declare function getSolution(args: GetSolutionArgs, opts?: pulumi.InvokeOptions): Promise<GetSolutionResult>;
export interface GetSolutionArgs {
/**
* The Amazon Resource Name (ARN) of the solution.
*/
solutionArn: string;
}
export interface GetSolutionResult {
/**
* The Amazon Resource Name (ARN) of the solution.
*/
readonly solutionArn?: string;
}
/**
* Resource schema for AWS::Personalize::Solution.
*/
export declare function getSolutionOutput(args: GetSolutionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSolutionResult>;
export interface GetSolutionOutputArgs {
/**
* The Amazon Resource Name (ARN) of the solution.
*/
solutionArn: pulumi.Input<string>;
}