public static interface CfnModelPackage.ModelPackageStatusDetailsProperty
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.*; ModelPackageStatusDetailsProperty modelPackageStatusDetailsProperty = ModelPackageStatusDetailsProperty.builder() .validationStatuses(List.of(ModelPackageStatusItemProperty.builder() .name("name") .status("status") // the properties below are optional .failureReason("failureReason") .build())) // the properties below are optional .imageScanStatuses(List.of(ModelPackageStatusItemProperty.builder() .name("name") .status("status") // the properties below are optional .failureReason("failureReason") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnModelPackage.ModelPackageStatusDetailsProperty.Builder
A builder for
CfnModelPackage.ModelPackageStatusDetailsProperty |
static class |
CfnModelPackage.ModelPackageStatusDetailsProperty.Jsii$Proxy
An implementation for
CfnModelPackage.ModelPackageStatusDetailsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnModelPackage.ModelPackageStatusDetailsProperty.Builder |
builder() |
default java.lang.Object |
getImageScanStatuses()
The status of the scan of the Docker image container for the model package.
|
java.lang.Object |
getValidationStatuses()
The validation status of the model package.
|
java.lang.Object getValidationStatuses()
default java.lang.Object getImageScanStatuses()
static CfnModelPackage.ModelPackageStatusDetailsProperty.Builder builder()