Interface CfnAlgorithmPropsMixin.ModelPackageContainerDefinitionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAlgorithmPropsMixin.ModelPackageContainerDefinitionProperty.Jsii$Proxy
- Enclosing class:
CfnAlgorithmPropsMixin
@Stability(Stable)
public static interface CfnAlgorithmPropsMixin.ModelPackageContainerDefinitionProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
ModelPackageContainerDefinitionProperty modelPackageContainerDefinitionProperty = ModelPackageContainerDefinitionProperty.builder()
.containerHostname("containerHostname")
.environment(Map.of(
"environmentKey", "environment"))
.framework("framework")
.frameworkVersion("frameworkVersion")
.image("image")
.imageDigest("imageDigest")
.isCheckpoint(false)
.modelInput(ModelInputProperty.builder()
.dataInputConfig("dataInputConfig")
.build())
.nearestModelName("nearestModelName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAlgorithmPropsMixin.ModelPackageContainerDefinitionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Stringdefault Objectdefault Stringdefault Stringdefault StringgetImage()default Stringdefault ObjectReturns union: eitherBooleanorIResolvabledefault ObjectReturns union: eitherIResolvableorCfnAlgorithmPropsMixin.ModelInputPropertydefault StringMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerHostname
- See Also:
-
getEnvironment
- See Also:
-
getFramework
- See Also:
-
getFrameworkVersion
- See Also:
-
getImage
- See Also:
-
getImageDigest
- See Also:
-
getIsCheckpoint
Returns union: eitherBooleanorIResolvable- See Also:
-
getModelInput
Returns union: eitherIResolvableorCfnAlgorithmPropsMixin.ModelInputProperty- See Also:
-
getNearestModelName
- See Also:
-
builder
@Stability(Stable) static CfnAlgorithmPropsMixin.ModelPackageContainerDefinitionProperty.Builder builder()
-