import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource type definition for AWS::SageMaker::Hub */ export declare class Hub extends pulumi.CustomResource { /** * Get an existing Hub resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Hub; /** * Returns true if the given object is an instance of Hub. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Hub; /** * The date and time that the hub was created. */ readonly creationTime: pulumi.Output; /** * The Amazon Resource Name (ARN) of the hub. */ readonly hubArn: pulumi.Output; /** * A description of the hub. */ readonly hubDescription: pulumi.Output; /** * The display name of the hub. */ readonly hubDisplayName: pulumi.Output; /** * The name of the hub. */ readonly hubName: pulumi.Output; /** * The searchable keywords for the hub. */ readonly hubSearchKeywords: pulumi.Output; /** * The status of the hub. */ readonly hubStatus: pulumi.Output; /** * The date and time that the hub was last modified. */ readonly lastModifiedTime: pulumi.Output; /** * The Amazon S3 storage configuration for the hub. */ readonly s3StorageConfig: pulumi.Output; /** * Tags to associate with the hub. */ readonly tags: pulumi.Output; /** * Create a Hub resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: HubArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Hub resource. */ export interface HubArgs { /** * A description of the hub. */ hubDescription: pulumi.Input; /** * The display name of the hub. */ hubDisplayName?: pulumi.Input; /** * The name of the hub. */ hubName?: pulumi.Input; /** * The searchable keywords for the hub. */ hubSearchKeywords?: pulumi.Input[]>; /** * The Amazon S3 storage configuration for the hub. */ s3StorageConfig?: pulumi.Input; /** * Tags to associate with the hub. */ tags?: pulumi.Input[]>; }