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: