Interface ModelDataConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ModelDataConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:08.207Z")
@Stability(Experimental)
public interface ModelDataConfig
extends software.amazon.jsii.JsiiSerializable
(experimental) The configuration needed to reference model artifacts.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.sagemaker.alpha.*; ModelDataConfig modelDataConfig = ModelDataConfig.builder() .uri("uri") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forModelDataConfig
static final class
An implementation forModelDataConfig
-
Method Summary
Modifier and TypeMethodDescriptionstatic ModelDataConfig.Builder
builder()
getUri()
(experimental) The S3 path where the model artifacts, which result from model training, are stored.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUri
(experimental) The S3 path where the model artifacts, which result from model training, are stored.This path must point to a single gzip compressed tar archive (.tar.gz suffix).
-
builder
- Returns:
- a
ModelDataConfig.Builder
ofModelDataConfig
-