@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)
41 lines (40 loc) • 1.39 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::SageMaker::Endpoint
*/
export declare function getEndpoint(args: GetEndpointArgs, opts?: pulumi.InvokeOptions): Promise<GetEndpointResult>;
export interface GetEndpointArgs {
/**
* The Amazon Resource Name (ARN) of the endpoint.
*/
endpointArn: string;
}
export interface GetEndpointResult {
/**
* Specifies deployment configuration for updating the SageMaker endpoint. Includes rollback and update policies.
*/
readonly deploymentConfig?: outputs.sagemaker.EndpointDeploymentConfig;
/**
* The Amazon Resource Name (ARN) of the endpoint.
*/
readonly endpointArn?: string;
/**
* The name of the endpoint configuration for the SageMaker endpoint. This is a required property.
*/
readonly endpointConfigName?: string;
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Type definition for AWS::SageMaker::Endpoint
*/
export declare function getEndpointOutput(args: GetEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEndpointResult>;
export interface GetEndpointOutputArgs {
/**
* The Amazon Resource Name (ARN) of the endpoint.
*/
endpointArn: pulumi.Input<string>;
}