@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)
24 lines (23 loc) • 1.07 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Definition of AWS::CleanRoomsML::ConfiguredModelAlgorithm Resource Type
*/
export declare function getConfiguredModelAlgorithm(args: GetConfiguredModelAlgorithmArgs, opts?: pulumi.InvokeOptions): Promise<GetConfiguredModelAlgorithmResult>;
export interface GetConfiguredModelAlgorithmArgs {
configuredModelAlgorithmArn: string;
}
export interface GetConfiguredModelAlgorithmResult {
readonly configuredModelAlgorithmArn?: string;
/**
* An arbitrary set of tags (key-value pairs) for this cleanrooms-ml configured model algorithm.
*/
readonly tags?: outputs.Tag[];
}
/**
* Definition of AWS::CleanRoomsML::ConfiguredModelAlgorithm Resource Type
*/
export declare function getConfiguredModelAlgorithmOutput(args: GetConfiguredModelAlgorithmOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConfiguredModelAlgorithmResult>;
export interface GetConfiguredModelAlgorithmOutputArgs {
configuredModelAlgorithmArn: pulumi.Input<string>;
}