Endpoint
Provides a SageMaker Endpoint resource.
Example Usage
Basic usage:
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.sagemaker.Endpoint;
import com.pulumi.aws.sagemaker.EndpointArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var endpoint = new Endpoint("endpoint", EndpointArgs.builder()
.endpointConfigName(aws_sagemaker_endpoint_configuration.ec().name())
.tags(Map.of("Name", "foo"))
.build());
}
}
Content copied to clipboard
Import
Endpoints can be imported using the name
, e.g.,
$ pulumi import aws:sagemaker/endpoint:Endpoint test_endpoint my-endpoint
Content copied to clipboard
Properties
Link copied to clipboard
The deployment configuration for an endpoint, which contains the desired deployment strategy and rollback configurations. See Deployment Config.
Link copied to clipboard
The name of the endpoint configuration to use.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard