import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource type definition for AWS::SageMaker::Hub */ export declare function getHub(args: GetHubArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetHubArgs { /** * The Amazon Resource Name (ARN) of the hub. */ hubArn: string; } export interface GetHubResult { /** * The date and time that the hub was created. */ readonly creationTime?: string; /** * The Amazon Resource Name (ARN) of the hub. */ readonly hubArn?: string; /** * A description of the hub. */ readonly hubDescription?: string; /** * The display name of the hub. */ readonly hubDisplayName?: string; /** * The searchable keywords for the hub. */ readonly hubSearchKeywords?: string[]; /** * The status of the hub. */ readonly hubStatus?: enums.sagemaker.HubStatus; /** * The date and time that the hub was last modified. */ readonly lastModifiedTime?: string; /** * Tags to associate with the hub. */ readonly tags?: outputs.Tag[]; } /** * Resource type definition for AWS::SageMaker::Hub */ export declare function getHubOutput(args: GetHubOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetHubOutputArgs { /** * The Amazon Resource Name (ARN) of the hub. */ hubArn: pulumi.Input; }