UNPKG

@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)

63 lines (62 loc) 2.63 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::SageMaker::InferenceExperiment */ export declare function getInferenceExperiment(args: GetInferenceExperimentArgs, opts?: pulumi.InvokeOptions): Promise<GetInferenceExperimentResult>; export interface GetInferenceExperimentArgs { /** * The name for the inference experiment. */ name: string; } export interface GetInferenceExperimentResult { /** * The Amazon Resource Name (ARN) of the inference experiment. */ readonly arn?: string; /** * The timestamp at which you created the inference experiment. */ readonly creationTime?: string; /** * The Amazon S3 location and configuration for storing inference request and response data. */ readonly dataStorageConfig?: outputs.sagemaker.InferenceExperimentDataStorageConfig; /** * The description of the inference experiment. */ readonly description?: string; readonly endpointMetadata?: outputs.sagemaker.InferenceExperimentEndpointMetadata; /** * The timestamp at which you last modified the inference experiment. */ readonly lastModifiedTime?: string; /** * An array of ModelVariantConfig objects. Each ModelVariantConfig object in the array describes the infrastructure configuration for the corresponding variant. */ readonly modelVariants?: outputs.sagemaker.InferenceExperimentModelVariantConfig[]; /** * The configuration of `ShadowMode` inference experiment type, which shows the production variant that takes all the inference requests, and the shadow variant to which Amazon SageMaker replicates a percentage of the inference requests. For the shadow variant it also shows the percentage of requests that Amazon SageMaker replicates. */ readonly shadowModeConfig?: outputs.sagemaker.InferenceExperimentShadowModeConfig; /** * The status of the inference experiment. */ readonly status?: enums.sagemaker.InferenceExperimentStatus; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::SageMaker::InferenceExperiment */ export declare function getInferenceExperimentOutput(args: GetInferenceExperimentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetInferenceExperimentResult>; export interface GetInferenceExperimentOutputArgs { /** * The name for the inference experiment. */ name: pulumi.Input<string>; }