@Stability(value=Stable)
public static interface CfnModelPackage.ModelPackageStatusDetailsProperty
extends software.amazon.jsii.JsiiSerializable
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 Object |
getImageScanStatuses()
The status of the scan of the Docker image container for the model package.
|
Object |
getValidationStatuses()
The validation status of the model package.
|
@Stability(value=Stable) @NotNull Object getValidationStatuses()
@Stability(value=Stable) @Nullable default Object getImageScanStatuses()
@Stability(value=Stable) static CfnModelPackage.ModelPackageStatusDetailsProperty.Builder builder()
Copyright © 2022. All rights reserved.