import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::SageMaker::ImageVersion */ export declare class ImageVersion extends pulumi.CustomResource { /** * Get an existing ImageVersion 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): ImageVersion; /** * Returns true if the given object is an instance of ImageVersion. 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 ImageVersion; readonly alias: pulumi.Output; readonly aliases: pulumi.Output; /** * The container image that the SageMaker image version is based on. */ readonly baseImage: pulumi.Output; /** * The URI of the container image version referenced by ImageVersion. */ readonly containerImage: pulumi.Output; readonly horovod: pulumi.Output; /** * The Amazon Resource Name (ARN) of the parent Image. */ readonly imageArn: pulumi.Output; /** * The name of the parent image. * * *Length Constraints* : Minimum length of 1. Maximum length of 63. * * *Pattern* : `^[a-zA-Z0-9]([-.]?[a-zA-Z0-9]){0,62}$` */ readonly imageName: pulumi.Output; /** * The Amazon Resource Name (ARN) of the image version. * * *Type* : String * * *Length Constraints* : Maximum length of 256. * * *Pattern* : `^arn:aws(-[\w]+)*:sagemaker:.+:[0-9]{12}:image-version/[a-z0-9]([-.]?[a-z0-9])*/[0-9]+$` */ readonly imageVersionArn: pulumi.Output; readonly jobType: pulumi.Output; readonly mlFramework: pulumi.Output; readonly processor: pulumi.Output; readonly programmingLang: pulumi.Output; readonly releaseNotes: pulumi.Output; readonly vendorGuidance: pulumi.Output; /** * The version of the image. */ readonly version: pulumi.Output; /** * Create a ImageVersion 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: ImageVersionArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ImageVersion resource. */ export interface ImageVersionArgs { alias?: pulumi.Input; aliases?: pulumi.Input[]>; /** * The container image that the SageMaker image version is based on. */ baseImage: pulumi.Input; horovod?: pulumi.Input; /** * The name of the parent image. * * *Length Constraints* : Minimum length of 1. Maximum length of 63. * * *Pattern* : `^[a-zA-Z0-9]([-.]?[a-zA-Z0-9]){0,62}$` */ imageName: pulumi.Input; jobType?: pulumi.Input; mlFramework?: pulumi.Input; processor?: pulumi.Input; programmingLang?: pulumi.Input; releaseNotes?: pulumi.Input; vendorGuidance?: pulumi.Input; }