public static interface CfnModelPackage.SourceAlgorithmSpecificationProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnModelPackage.SourceAlgorithmSpecificationProperty.Builder
A builder for
CfnModelPackage.SourceAlgorithmSpecificationProperty |
static class |
CfnModelPackage.SourceAlgorithmSpecificationProperty.Jsii$Proxy
An implementation for
CfnModelPackage.SourceAlgorithmSpecificationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnModelPackage.SourceAlgorithmSpecificationProperty.Builder |
builder() |
java.lang.Object |
getSourceAlgorithms()
A list of the algorithms that were used to create a model package.
|