Interface CfnModelPackagePropsMixin.SourceAlgorithmSpecificationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelPackagePropsMixin.SourceAlgorithmSpecificationProperty.Jsii$Proxy
Enclosing class:
CfnModelPackagePropsMixin

@Stability(Stable) public static interface CfnModelPackagePropsMixin.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.cfnpropertymixins.services.sagemaker.*;
 SourceAlgorithmSpecificationProperty sourceAlgorithmSpecificationProperty = SourceAlgorithmSpecificationProperty.builder()
         .sourceAlgorithms(List.of(SourceAlgorithmProperty.builder()
                 .algorithmName("algorithmName")
                 .modelDataUrl("modelDataUrl")
                 .build()))
         .build();
 

See Also: