@Stability(value=Stable)
public static interface CfnModelPackage.ModelPackageStatusItemProperty
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.*;
ModelPackageStatusItemProperty modelPackageStatusItemProperty = ModelPackageStatusItemProperty.builder()
.name("name")
.status("status")
// the properties below are optional
.failureReason("failureReason")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnModelPackage.ModelPackageStatusItemProperty.Builder
A builder for
CfnModelPackage.ModelPackageStatusItemProperty |
static class |
CfnModelPackage.ModelPackageStatusItemProperty.Jsii$Proxy
An implementation for
CfnModelPackage.ModelPackageStatusItemProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnModelPackage.ModelPackageStatusItemProperty.Builder |
builder() |
default String |
getFailureReason()
if the overall status is `Failed` , the reason for the failure.
|
String |
getName()
The name of the model package for which the overall status is being reported.
|
String |
getStatus()
The current status.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getStatus()
@Stability(value=Stable) @Nullable default String getFailureReason()
@Stability(value=Stable) static CfnModelPackage.ModelPackageStatusItemProperty.Builder builder()
Copyright © 2022. All rights reserved.