import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::SageMaker::Algorithm */ export declare function getAlgorithm(args: GetAlgorithmArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetAlgorithmArgs { /** * The Amazon Resource Name (ARN) of the algorithm. */ algorithmArn: string; } export interface GetAlgorithmResult { /** * The Amazon Resource Name (ARN) of the algorithm. */ readonly algorithmArn?: string; /** * A timestamp specifying when the algorithm was created. */ readonly creationTime?: string; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::SageMaker::Algorithm */ export declare function getAlgorithmOutput(args: GetAlgorithmOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetAlgorithmOutputArgs { /** * The Amazon Resource Name (ARN) of the algorithm. */ algorithmArn: pulumi.Input; }