Interface CfnModelPackage.SourceAlgorithmSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackage.SourceAlgorithmSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnModelPackage
@Stability(Stable)
public static interface CfnModelPackage.SourceAlgorithmSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
A list of algorithms that were used to create a model package.
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.*; SourceAlgorithmSpecificationProperty sourceAlgorithmSpecificationProperty = SourceAlgorithmSpecificationProperty.builder() .sourceAlgorithms(List.of(SourceAlgorithmProperty.builder() .algorithmName("algorithmName") // the properties below are optional .modelDataUrl("modelDataUrl") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnModelPackage.SourceAlgorithmSpecificationProperty
static final class
An implementation forCfnModelPackage.SourceAlgorithmSpecificationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A list of the algorithms that were used to create a model package.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceAlgorithms
A list of the algorithms that were used to create a model package.- See Also:
-
builder
-