@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)
25 lines (24 loc) • 1.28 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Definition of AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation Resource Type
*/
export declare function getConfiguredModelAlgorithmAssociation(args: GetConfiguredModelAlgorithmAssociationArgs, opts?: pulumi.InvokeOptions): Promise<GetConfiguredModelAlgorithmAssociationResult>;
export interface GetConfiguredModelAlgorithmAssociationArgs {
configuredModelAlgorithmAssociationArn: string;
}
export interface GetConfiguredModelAlgorithmAssociationResult {
readonly collaborationIdentifier?: string;
readonly configuredModelAlgorithmAssociationArn?: string;
/**
* An arbitrary set of tags (key-value pairs) for this cleanrooms-ml configured model algorithm association.
*/
readonly tags?: outputs.Tag[];
}
/**
* Definition of AWS::CleanRoomsML::ConfiguredModelAlgorithmAssociation Resource Type
*/
export declare function getConfiguredModelAlgorithmAssociationOutput(args: GetConfiguredModelAlgorithmAssociationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConfiguredModelAlgorithmAssociationResult>;
export interface GetConfiguredModelAlgorithmAssociationOutputArgs {
configuredModelAlgorithmAssociationArn: pulumi.Input<string>;
}