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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnModelPackagePropsMixin.SourceAlgorithmSpecificationProperty -
Method Summary
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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnModelPackagePropsMixin.SourceAlgorithmProperty>- See Also:
-
builder
@Stability(Stable) static CfnModelPackagePropsMixin.SourceAlgorithmSpecificationProperty.Builder builder()
-