@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)
66 lines (65 loc) • 2.26 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as enums from "../types/enums";
/**
* Resource Type definition for AWS::SageMaker::ImageVersion
*/
export declare function getImageVersion(args: GetImageVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetImageVersionResult>;
export interface GetImageVersionArgs {
/**
* 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]+$`
*/
imageVersionArn: string;
}
export interface GetImageVersionResult {
/**
* The URI of the container image version referenced by ImageVersion.
*/
readonly containerImage?: string;
readonly horovod?: boolean;
/**
* The Amazon Resource Name (ARN) of the parent Image.
*/
readonly imageArn?: string;
/**
* 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?: string;
readonly jobType?: enums.sagemaker.ImageVersionJobType;
readonly mlFramework?: string;
readonly processor?: enums.sagemaker.ImageVersionProcessor;
readonly programmingLang?: string;
readonly releaseNotes?: string;
readonly vendorGuidance?: enums.sagemaker.ImageVersionVendorGuidance;
/**
* The version of the image.
*/
readonly version?: number;
}
/**
* Resource Type definition for AWS::SageMaker::ImageVersion
*/
export declare function getImageVersionOutput(args: GetImageVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetImageVersionResult>;
export interface GetImageVersionOutputArgs {
/**
* 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]+$`
*/
imageVersionArn: pulumi.Input<string>;
}