Interface ModelPackageStatusDetails.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ModelPackageStatusDetails.Builder,ModelPackageStatusDetails>
,SdkBuilder<ModelPackageStatusDetails.Builder,ModelPackageStatusDetails>
,SdkPojo
- Enclosing class:
- ModelPackageStatusDetails
public static interface ModelPackageStatusDetails.Builder extends SdkPojo, CopyableBuilder<ModelPackageStatusDetails.Builder,ModelPackageStatusDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModelPackageStatusDetails.Builder
imageScanStatuses(Collection<ModelPackageStatusItem> imageScanStatuses)
The status of the scan of the Docker image container for the model package.ModelPackageStatusDetails.Builder
imageScanStatuses(Consumer<ModelPackageStatusItem.Builder>... imageScanStatuses)
The status of the scan of the Docker image container for the model package.ModelPackageStatusDetails.Builder
imageScanStatuses(ModelPackageStatusItem... imageScanStatuses)
The status of the scan of the Docker image container for the model package.ModelPackageStatusDetails.Builder
validationStatuses(Collection<ModelPackageStatusItem> validationStatuses)
The validation status of the model package.ModelPackageStatusDetails.Builder
validationStatuses(Consumer<ModelPackageStatusItem.Builder>... validationStatuses)
The validation status of the model package.ModelPackageStatusDetails.Builder
validationStatuses(ModelPackageStatusItem... validationStatuses)
The validation status of the model package.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
validationStatuses
ModelPackageStatusDetails.Builder validationStatuses(Collection<ModelPackageStatusItem> validationStatuses)
The validation status of the model package.
- Parameters:
validationStatuses
- The validation status of the model package.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validationStatuses
ModelPackageStatusDetails.Builder validationStatuses(ModelPackageStatusItem... validationStatuses)
The validation status of the model package.
- Parameters:
validationStatuses
- The validation status of the model package.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validationStatuses
ModelPackageStatusDetails.Builder validationStatuses(Consumer<ModelPackageStatusItem.Builder>... validationStatuses)
The validation status of the model package.
This is a convenience method that creates an instance of theModelPackageStatusItem.Builder
avoiding the need to create one manually viaModelPackageStatusItem.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#validationStatuses(List
.) - Parameters:
validationStatuses
- a consumer that will call methods onModelPackageStatusItem.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#validationStatuses(java.util.Collection
)
-
imageScanStatuses
ModelPackageStatusDetails.Builder imageScanStatuses(Collection<ModelPackageStatusItem> imageScanStatuses)
The status of the scan of the Docker image container for the model package.
- Parameters:
imageScanStatuses
- The status of the scan of the Docker image container for the model package.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageScanStatuses
ModelPackageStatusDetails.Builder imageScanStatuses(ModelPackageStatusItem... imageScanStatuses)
The status of the scan of the Docker image container for the model package.
- Parameters:
imageScanStatuses
- The status of the scan of the Docker image container for the model package.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imageScanStatuses
ModelPackageStatusDetails.Builder imageScanStatuses(Consumer<ModelPackageStatusItem.Builder>... imageScanStatuses)
The status of the scan of the Docker image container for the model package.
This is a convenience method that creates an instance of theModelPackageStatusItem.Builder
avoiding the need to create one manually viaModelPackageStatusItem.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#imageScanStatuses(List
.) - Parameters:
imageScanStatuses
- a consumer that will call methods onModelPackageStatusItem.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#imageScanStatuses(java.util.Collection
)
-
-